× C A T C A T B O B C A T
The above shows a cryptogram such that each letter represents a distinct single non-negative integer.
Find B + O + C + A + T .
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.
Let x be the 3-digit integer, C A T , then by looking at the long multiplcation, we can see that the last 3 digits remains the same after the multiplication. That is x 2 ≡ x ( m o d 1 0 0 0 ) .
Or equivalently x ( x − 1 ) ≡ 0 ( m o d 1 0 0 0 ) . Since x and x − 1 are coprime, and 1 0 0 0 = 1 2 5 × 8 . Then one of x , x − 1 has to be a multiple of 125, while the other is a multiple of 8.
We have either
Case 1: { x ≡ 0 ( m o d 1 2 5 ) x ≡ 1 ( m o d 8 ) . Solving via Chinese remainder theorem (CRT) gives x = 6 2 5 only. But x 2 = 3 9 0 6 2 5 = B O B C A T , so B = 3 and B = 0 at the same time, which is impossible.
Case 2: { x ≡ 1 ( m o d 1 2 5 ) x ≡ 0 ( m o d 8 ) . Solving via CRT again yields x = 3 7 6 ⇒ x 2 = 1 4 1 3 7 6 = B O B C A T .
So the only possible scenario is Case 2 with B = 1 , O = 4 , C = 3 , A = 7 , T = 6 ⇒ B + O + C + A + T = 2 1 .
Nice, that was my method as well!
I have already seen the 376 problem on what is 376^376^376 for the number of times 376 appeared I forgot, and 376 squared or cubed always has the last 3 digits 376 so I already knew that CAT could be 625 or 376.
Log in to reply
I remembered that one too! Would you like to create a 4-digit version of this problem?
Log in to reply
Yes I would.Do you remember the link of that problem, I would need it very much.
Log in to reply
Log in to reply
@Pi Han Goh – I have two questions that I would like for you to answer. First, how do you put a link in a word and when I try saving my changes, it just asks me to make a set and if I save, it says I might undo changes and it does.
Log in to reply
@Razzi Masroor – I've fixed it for you .
Log in to reply
@Pi Han Goh – Thanks a lot, but how can you fix my problem?
Log in to reply
@Razzi Masroor – like some other selected moderators, I can edit other people's problems...
heres an approach, we know 3 modular equations that can be easily solved: ⎩ ⎪ ⎨ ⎪ ⎧ T 2 ≡ T m o d 1 0 ( 1 0 A + T ) 2 ≡ 1 0 A + T m o d 1 0 0 ( 1 0 0 C + 1 0 A + T ) 2 ≡ 1 0 0 C + 1 0 A + T m o d 1 0 0 it easy to see the first equation has only 4 solution less than 10 T = ( 0 , 1 , 5 , 6 ) . we can eliminate T = 0 off the bat since it implies A = 0 which contradicts the constraint. we can see from the second equation: ( 1 0 A + T ) ( 1 0 A + T − 1 ) ≡ 0 m o d 1 0 0 ⟹ 1 0 ( 2 T − 1 ) A + T 2 − T ≡ 0 m o d 1 0 0 since {10|T^2-T) we can see 10 divides both of the quntits been added, so when divided by tten, another 10 must also divide the result; i.e ( 2 T − 1 ) A + 1 0 T 2 − T ≡ 0 m o d 1 0 we can now try plugging in the values of T we know to get solutions: ( A , T ) = ( 0 , 1 ) , ( 2 , 5 ) , ( 7 , 6 ) let n = 1 0 A + T , then in the 3rd eqn: ( 1 0 0 C + n ) ( 1 0 0 C + n − 1 ) ≡ 0 m o d 1 0 0 0 → 1 0 0 ( 2 n − 1 ) C + n 2 − n ≡ 0 m o d 1 0 0 0 by using a similar logic used before, ( 2 n − 1 ) C + 1 0 0 n 2 − n ≡ 0 m o d 1 0 and by plugging in all the values of n, we have ( C , A , T ) = ( 0 , 0 , 1 ) , ( 6 , 2 , 5 ) , ( 3 , 7 , 6 ) we can test these solutions to get the only solution satisfying the constraints is: 3 7 6 × 3 7 6 = 1 4 1 3 7 6 1 + 4 + 3 + 7 + 6 = 2 1
Answer is 376*376=141376
Solving the units place we have T=0,1,5,6
Solving tens place , we have AT=00,01,25,76
Solving 100 place , we have CAT=000,001,625,376.
Actual squaring shows that only 376 satisfies all the conditions.
To solve, I mean to say that : x 2 = 1 0 k + x For units place. (Ideally solved by finding triangular numbers divisible by 5)
Use the above solutions for ( 1 0 x + 6 ) 2 = 1 0 0 k + 1 0 x + 6 and so on for other solutions.
Problem Loading...
Note Loading...
Set Loading...
In this solution, the equivalence ≡ means modulo 10 unless otherwise stated.
Last digit: T 2 ≡ T . This requires T = 0 , 1 , 5 , 6 .
Cross product of last two digits: 2 A T ≡ A + tens digit of T 2 . Split out the cases:
If T = 0 , the product should end in two zeroes, but this is impossible since A = T .
If T = 1 , the cross product 2 A ≡ A . This means A = 0 . Now C A T 2 = C 0 1 2 ≡ 2 0 0 C + 1 modulo 10000, requiring B = 0 . But this is impossible since A = B .
If T = 5 , the second last digit must be A = 2 . We get C A T 2 = C 2 5 2 ≡ 6 2 5 + 5 0 0 0 C modulo 10000. This implies B C ≡ 5 0 C + 6 , which immediately gives C = 6 and B = 0 . But B = 0 because it occurs as initial digit of the product.
That leaves T = 6 and 1 2 A + 3 ≡ A , which implies A = 7 . The equation C 7 6 2 = B O B C 7 6 translates into 5 7 7 6 + 1 5 2 0 0 C + 1 0 0 0 0 C 2 = B O B C 7 6 5 7 + 1 5 2 C + 1 0 0 C 2 = B O B C 7 + 2 C ≡ C , from which C = 3 . Check: 3 7 6 × 3 7 6 = 1 4 1 3 7 6 is indeed a solution.
Thus B + O + C + A + T = 1 + 4 + 3 + 7 + 6 = 2 1 .