Let X and Y be positive integers such that the first few digits of the fractions 7 0 2 9 , 1 6 9 7 0 , 4 0 8 1 6 9 , X 4 0 8 , Y X are all equal to 0.4142. What is X + Y ?
Note : The fractions are not equal.
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.
My recursion was something like "the denominator of the first fraction becomes the numerator of the second and so on..."
Aren't recursions usually stated using not p and q, but natural numbers n, n+1, m?
My mental operation would be something like: 1. Take the multiplicative inversive of the fraction. 2. Multiply the now numerator times 2. 3. Add it to the denominator of the last step.
Don't know, how to formalize this...
Log in to reply
You're probably right in that defining my sequence as a recursion is not quite correct, so I fixed it! I could address the sequence in words; however, I feel as if the cases shown provide ample example as to what the p and q sequence means. I'm not too adept in formal mathematical notation, but I hope the point comes across well enough. Thanks for your comment!
Did it the same way, nicely explained!
But the question never said it is root 2. A lot of irrational numbers can start with 0.4142 and give different answers. How can we say that they all will be same?
Log in to reply
If we disregard the fact that it approaches root 2, the pattern with the p's and q's presented still holds among the fractions in the question. Knowing that this sequence approaches the fractional part of root 2 is an extra, essentially trivial, piece of information.
This is a nice trick, but the question is not really set up in such a way to lead one to discover the trick. The other solutions give the very simple arithmetic required to answer the question.
Log in to reply
This solution generalizes the sequence of fractions in question. Generalizing the sequence tends to become much more useful in understanding the problem and making it clear for others to interpret, and it provides a wholesome approach to the problem. A simple arithmetic solution, albeit quicker, may not provide adequate reasoning behind the process of receiving the answer.
Log in to reply
Why spend the time trying to find the relationship between the values in the fractions, when a simple division yields the same solution. On a competition quiz without a calculator, recognizing the root would be faster, but for an online quiz where simple calculations are encouraged, this is awkward. Also, as I said in response to another answer, if this question had gone one more step, the answer would have been ambiguous, meaning that the pattern doesn't hold indefinitely. Competition question writers beware!
Log in to reply
@Chris Brown – Interesting. Well, duty noted. Thanks for your input.
How did you know it was the fractional part of sqrt(2)?
Log in to reply
It's like knowing that the area of an ellipse is ab(pi). It's essentially a trivial piece of knowledge that might (or might not) assist in a math competition context. I directly learned this from the Art of Problem Solving series of books.
Concluding with the comments below, this is a bad question. Thanks for sharing though.
0 . 4 1 4 2 4 0 8 = 985.0313858 >> X is 985
0 . 4 1 4 2 9 8 5 = 2378.0782231 >> Y is 2378
985+2378 = 3363
This is how I solved it - also, I checked that 408/984 and 408/986 did NOT result in a decimal whose first four digits were 0.4142. I then did a similar check with 985. It is of note that if you step one more time, 5740 and 5741 both meet the criteria.
This is exactly how I solved it, too.
Just an advice: avoid using the double greater-than sign as an implication sign because it may be confusing ;) I suggest you to use —> instead
169/408 = 408/X..........X = 985
408/985 = 985/Y...........Y = 2378
985 + 2378 = 3363
This is incorrect. I did not say that these fractions are equal to each other.
Log in to reply
No, it is not incorrect, equalities written here should be read as approximations.
Since each number in the sequence (29, 70, 169, 408) is just the previous number (rounded) multiplied by 2.414, just take the number before X and multiply by 2.414. You get 984.912, which rounds to 985. (408/985 DOES equal 0.4142...) Then do the same with 985, so you get 2377.79, which rounds to 2378. Therefore, X=985 and Y=2378. 985+2378=3363.
(I LOVE this problem, mostly because I actually solved it on my own. :))
Good intuition! +1
485/x=0.4142 therefore 485/0.4142=x which is 985 on the other side, 985/Y=0.4142 therefore 985/0.4142=Y which is 2378 then X+y=2378+985=3363
(169/70x408)+((169/70x408)x(169/70))
I only got it because I saw the pattern of 169=29+2(70) and 408=70+2(169) so I just continued it without thinking at all about why it worked.
0 . 4 1 4 2 4 0 8 = X = 985.03 (rounded off to 985)
Also, 0 . 4 1 4 2 X = Y = 2378.15 (rounded off to 2378)
Therefore, X+Y= 3363
Since 169/408 = (29+2 * 70)/(70+2 * 169), so 408/X = (70+2 * 169)/(169+2 * 408). Thus, X = 169+816 = 985, Y = 408+2X = 2378, and X+Y = 3363.
A Python scripting approach:
for x in range(408, 10000):
for y in range(x, 10000):
frac1 = 408 / x
frac2 = x / y
if int(frac1 * 10000) == 4142 and int(frac2 * 10000) == 4142:
print(x, y, frac1, frac2, x + y)
will output:
985 2378 0.41421319796954315 0.4142136248948696 3363
See https://github.com/alcibiade/brilliant/blob/master/2018-02-26/l2-problem2.py
if 29/0.4142=70 then X=408/0.4142 which is equal to:985 so Y becomes=985/0.4142=2378 thus X+Y=985+2378=3363
Why X=169 , Y=70 are not a correct solution?
Because 408/169 isn't equal to .4142
One of the statements in the problem is that all of the fractions are nearly equal.
408/.4142=985.031... 985 is the only integer that has the right first digits in quotient - try plus one and minus one (408/984 & 408/986) to confirm.
Repeat on 985/.4142=2378.078...
2378+985=3363
Problem Loading...
Note Loading...
Set Loading...
A useful trick for approximating the fractional part of 2 is the following sequence q p ⟹ p + 2 q q Clearly, the sequence in question follows this sequence as shown below 7 0 2 9 ⟹ 2 9 + ( 2 ) ( 7 0 ) 7 0 = 1 6 9 7 0 ⟹ 7 0 + ( 2 ) ( 1 6 9 ) 1 6 9 = 4 0 8 1 6 9 Therefore, the sequence containing X and Y is as follows 4 0 8 1 6 9 , 9 8 5 4 0 8 , 2 3 7 8 9 8 5
Thus, X + Y = 9 8 5 + 2 3 7 8 = 3 3 6 3