Suggestion: A [QUIZ] in the subject of emails about the problem helps
everyone
on Ruby T. follow the discussion. Please reply to the original quiz
message,
if you can.
Write a program that tells whether a given integer is happy. A happy
number is
found using the following process: Take the sum of the squares of its
digits,
and continue iterating this process until it yields 1, or produces an
infinite
loop.
If a number is not happy than it is obviously unhappy. Now that you have
this
program, what is the largest happy number you can find? What is the
happiest
number between 1 and 1,000,000. I define the happiest number as the
smallest
number that finds the most other happy numbers with it, i.e. 7 found
four other
numbers (49, 97, 130, and 10) making it a rank 4 in happiness.
If you find all these examples trivial, write you program so that it
will find
happy numbers in other bases such as base 2 or 16. From there you can
extend the
program so that it finds happy bases (other than 2 and 4). A happy bases
is a
base where all numbers are happy. Good luck.
Write a program that tells whether a given integer is happy. A happy
number is
found using the following process: Take the sum of the squares of its
digits,
and continue iterating this process until it yields 1, or produces an
infinite
loop.
If a number is not happy than it is obviously unhappy. Now that you have
this
program, what is the largest happy number you can find? What is the
happiest
number between 1 and 1,000,000. I define the happiest number as the
smallest
number that finds the most other happy numbers with it, i.e. 7 found
four other
numbers (49, 97, 130, and 10) making it a rank 4 in happiness.
-Boggles-
Okay, I’m feeling stupid here. What MAKES that number be happy? The
nearest I can find is that if it’s an infinite loop, it isn’t happy. If
it’s not a loop, and resolves to 1 eventually. (It has to resolve to 1,
or it’s be a loop.) It’s happy.
Okay, I’m feeling stupid here. What MAKES that number be happy? The
nearest I can find is that if it’s an infinite loop, it isn’t
happy. If
it’s not a loop, and resolves to 1 eventually. (It has to resolve
to 1,
or it’s be a loop.) It’s happy.
3^2=9
9^2=81
8^2+1^2=65
6^2+5^2=61
6^2+1^2=37
3^2+7^2=58
5^2+8^2=89
8^2+9^2=145
1^2+4^2+5^2=42
4^2+2^2=20
2^2+0^2=4
4^2=16
1^2+6^2=37
We just started a loop here since 37 has already been found.
Problem is that from the quiz it states that you either get a 1 or an
infinite loop and that an unhappy number is “obvious”. Which is a sign
that something has not been explained clearly. Given that the Wolfram
page was clearer than the quiz at to what constitutes happy don’t be
surprised if some people go off down the wrong path.
One note of advice - the operator to use is actually ** not ^ as might
be expected:
irb> 7 ^ 2 # Gives 5
irb> 7 ** 49 # Gives 49
I think you meant 7 ** 2 = 49, whereas
7 ** 49 = 256923577521058878088611477224235621321607
But, since these are integers, we are better off computing n * n,
not n ** 2. There’s really no point (in time efficiency) to explicitly
raising n to a power p unless n is not an integer or p is relatively
large.
Sorry, I should have clarified that a Happy number results in 1,
and an
Unhappy number results in an infinite loop.
That’s not quite what the cited article says. it says that happy
numbers result in an infinite loop on 1 and unhappy numbers result in
an infinite loop on the series: 4, 16, 37, 58, 89, 145, 42, 20,
4, … and that there are no other possibilities.
Problem is that from the quiz it states that you either get a 1 or an
infinite loop and that an unhappy number is “obvious”. Which is a sign
that something has not been explained clearly. Given that the Wolfram
page was clearer than the quiz at to what constitutes happy don’t be
surprised if some people go off down the wrong path.
As I understand the Wolfram article, an unhappy number never hits 1 as a
result, whereas a happy number eventually hits 1:
“Unhappy numbers have eventually periodic sequences of s(sub)i which
never
reach 1.”
The quiz item emphasizes a criterion that is only mentioned in passing
on
the Wolfram page, that is, there are degrees of happiness, and a number
that has many happy predecessors is, umm, more happy. So a relatively
large
number that eventually results in 1, but with a lot of steps along the
way
(therefore more happy ancestors), is happier.
If a number is not happy than it is obviously unhappy. Now that you
have this
program, what is the largest happy number you can find?
Clearly, there is no largest happy number. Any number of the form
10**n in base b is b-relative happy (with rank 1). I feel this makes
the stated question an ill-conditioned one.
What is the happiest number between 1 and 1,000,000. I define the
happiest number
as the smallest number that finds the most other happy numbers with
it, i.e. 7
found four other numbers (49, 97, 130, and 10) making it a rank 4
in happiness.
This seems a better question to pursue than the first. Other
questions one might explore: how does rank vary as the numbers
increase? Does maximum rank grow as happy numbers get bigger? Is
there a pattern? Are there interesting statistics?
If a number is not happy than it is obviously unhappy. Now that you
have this
program, what is the largest happy number you can find?
Clearly, there is no largest happy number. Any number of the form
10**n in base b is b-relative happy (with rank 1). I feel this makes
the stated question an ill-conditioned one.
What is the happiest number between 1 and 1,000,000. I define the
happiest number
as the smallest number that finds the most other happy numbers with
it, i.e. 7
found four other numbers (49, 97, 130, and 10) making it a rank 4
in happiness.
This seems a better question to pursue than the first. Other
questions one might explore: how does rank vary as the numbers
increase? Does maximum rank grow as happy numbers get bigger? Is
there a pattern? Are there interesting statistics?
But, since these are integers, we are better off computing n * n,
not n ** 2. There’s really no point (in time efficiency) to explicitly
raising n to a power p unless n is not an integer or p is
relatively large.
#!/usr/bin/env ruby -w
require “benchmark”
TESTS = 1_000_000
Benchmark.bmbm(10) do |results|
results.report(“Exponent:”) { TESTS.times { |n| n ** 2 } }
results.report(“Multiply:”) { TESTS.times { |n| n * n } }
end