+ A C B B A C C B A
If A , B and C are not necessarily distinct non-zero digits that satisfy the cryptogram above, is there any integer solution(s) to ( 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.
The question says, "If A, B and C are not necessarily distinct non-zero digits...". Then we have an integral solution (0,0,0), don't we?
Log in to reply
"If A, B and C are not necessarily distinct non-zero digits..."
Log in to reply
That means A=B=C=0 is possible!
Log in to reply
@Aniruddha Bhattacharjee – "If A, B and C are not necessarily distinct non-zero digits..." means A, B, C may or may not be distinct non-zero digits, isn't it so?
Log in to reply
@Aniruddha Bhattacharjee – They can be distinct or same, but they must be non-zero.
Log in to reply
@展豪 張 – Oh! Okay! I didn't catch the flow! Thanks! :-)
@展豪 張 – Wonderful solution, by the way! thumbs up
Suppose a solution exist.
We have, at the hundred digit, A+C(+1) = B --> B>C,A
Therefore we have the following equation
Unit digit: C+B=10+A
Ten digit: B+A+1 = 10 + C
Hundred digit: A+C+1 = B (1)
Sum all equations we have A+B+C = 18, replace (1) into that we have 2(A+C)=17, impossible
I got the question right after like 5 minutes, however, I don't really understand the 'sum all equations A+B+C=18' bit. Could you please elaborate? Im not very bright.
Log in to reply
From
Unit digit: C+B=10+A
Ten digit: B+A+1 = 10 + C
Hundred digit: A+C+1 = B
We sum all left sides and right sides and have: C+B+B+A+1+A+C+1 = 10+A+10+C+B
or
A+B+C+(A+B+C+2) = 18 + (A+B+C+2)
I used code to solve this: from sympy import * from math import* from itertools import permutations
for n in range(1000):
for m in range(1000):
if n**2+n**2+n==m**2:
print(n,m)
for a,b,c in permutations('0123456789',3):
if int(a+b+c)+int(c+a+b)==int(b+c+a):
print(a,b,c)```
ABC+CAB=BCA
or C+10A+100B+B+10A+100C=A+10C+100B
or 91C+19A+B=0 , A,B,C >0 can't solve this but if A=0, B=0, C=0 then this equation is satisfied . it is to say that the equation has no solution .
Problem Loading...
Note Loading...
Set Loading...
A B C + C A B = B C A
Taking modulus 9 we have 9 ∣ A + B + C
A B C + C A B + B C A = 2 B C A
1 1 1 ( A + B + C ) = 2 B C A
So 1 1 1 ∣ B C A
Combined, 3 3 3 ∣ B C A
Clearly A B C = C A B = B C A = 3 3 3 , 6 6 6 , 9 9 9 are not solutions.
So, no integer solution.
(Actually checking the 1 1 1 is strong enough, but when I do it I thought of the modulus 9 first, so I type it here too.)