4 + 2 + 1 + 3 + 1 + 2 + 8 + ⋱ 1 1 1 1 1 1 1 = A
Find the positive integer A in the equation above.
Details and Assumptions:
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Really cool and Nice use of colours !! (+1)
Trivially, 1 8 < ( 4 + 2 + 1 1 1 ) 2 < k 2 = A < ( 4 + 2 + 1 + 3 1 1 1 ) 2 < 2 0
Hence, the answer is 1 9 . (After computing the simple continued fraction expansion of 1 9 to prove that 1 9 indeed works.)
which trick you used?
Log in to reply
The property that truncated continued fractions alternate being below and above their value: 1 + s o m e t h i n g > 1 + 0 = 1 (assuming that "something" is positive), 1 + s o m e t h i n g 1 < 1 + 0 1 = 1 1 = 1 , so x + 1 + s o m e t h i n g 1 < x + 1 , and it changes again: x + 1 + s o m e t h i n g 1 1 > x + 1 1 , etc
Log in to reply
This is a result of how the fractions are constructed that the property is true.
1 9 = [ 4 ; 2 , 1 , 3 , 1 , 2 , 8 ]
The sequence of the continued fraction can be found on OEIS( A010124 )
This python code repeats 2 , 1 , 3 , 1 , 2 , 8 only 3 times. You can see that it converges to 1 9 .
1 2 3 4 5 6 7 8 9 10 |
|
Problem Loading...
Note Loading...
Set Loading...
x = 2 + 1 + 3 + 1 + 2 + 8 + x 1 1 1 1 1 1 = 2 + 1 + 3 + 1 + 1 7 + 2 x 8 + x 1 1 1 1 = 2 + 1 + 3 + 2 5 + 3 x 1 7 + 2 x 1 1 1 = 2 + 1 + 9 2 + 1 1 x 2 5 + 3 x 1 1 = 2 + 1 1 7 + 1 4 x 9 2 + 1 1 x 1 = 3 2 6 + 3 9 x 1 1 7 + 1 4 x ⇒ 3 9 x 2 + 3 1 2 x − 1 1 7 = 0 ⇒ x = − 4 ± 1 9 Hence, A = 4 + x = 4 + ( − 4 + 1 9 ) = 1 9 ⇒ A = 1 9