Solve the following, where each letter of A , B , C = 0 is a different single-digit number.
A A B + B B C = C 1 0 4 9 7 6
Note that A B and B C is each a two-digit number.
Find A + B + C .
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.
Hi, Thanks for writing a solution to my problem. Actually I have posted a Discussion on Brilliant.org about Buffon's Needle Problem named "Help: Reframing Buffon's Needle Problem" So, could you please go through that page and if possible help me from that problem ?
Log in to reply
You can actually attach the link of the page here so that I can easily access it. Just type title of the link . No space between ] and (. Or just paste the link here.
<?php
for($a=1;$a<=9;$a++){
for($b=1;$b<=9;$b++){
for($c=1;$c<=9;$c++){
if( pow((10 * $a)+$b,(1/$a)) + pow((10 * $b)+$c,(1/$b)) == pow(104976,(1/$c)) ){
echo $a+$b+$c; exit; // prints 11
}
}
}
}
?>
1 0 4 9 7 6 = 3 2 4 2 = 1 8 4 Since, A B and B C are two digit numbers.
Therefore C 1 0 4 9 7 6 = 1 8
⇒ C = 4
Now, A A B + B B 4 = 1 8
According to the question, B 4 is a two digit number which is also the perfect power of B
And the only 2-digit number ending with 4 , which is also a perfect power is 6 4 .
2 6 4 = 8
3 6 4 = 4
6 6 4 = 2
We see that 6 6 4 = 2 satisfies the requirement.
⇒ B = 6
Now, A A 6 + 6 6 4 = 4 1 0 4 9 7 6 ⇒ A A 6 + 2 = 1 8 ⇒ A A 6 = 1 6 Since A 6 is a 2-digit number.
Therefore A = 1
Now, Let X = A + B + C ⇒ X = 1 + 6 + 4 ⇒ X = 1 1
Problem Loading...
Note Loading...
Set Loading...
Note that 1 0 4 9 7 6 = 2 4 × 3 8 . For C 1 0 4 9 7 6 to be an integer, C can only be 2 or 4 . If C = 2 , then B 2 is not a power of any integer except when B = 3 , then B 2 = 3 2 = 2 5 , but 3 3 2 is not an integer.
If C = 4 , then
A A B + B B 4 A A 6 + 6 6 4 1 1 6 + 2 1 6 + 2 = 4 1 0 4 9 7 6 = 1 8 = 1 8 = 1 8 Possible power for B 4 = 6 4 = 2 6 Possible powers for A 6 = 1 6 , 3 6 , but only 16 acceptable.
Therefore, A + B + C = 1 + 6 + 4 = 1 1 .