• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Another Silly Riddle for you guys

DaShen

Lifer
ABCD * 4 = DCBA

A = ?
B = ?
C = ?
D = ?

It is easy once you think about it. But it is fun to think about this kind of stuff. And for you CS guys (no it is not Hexadecimal). 😉

BTW... it is not 0000 * 4 = 0000
It is actual numbers other than zero.
 
2178

edit: 4*D = A mod 10. Also A<3 else you get 5 digits. So A = 2, D = 8 is the only choice.

Then (4*C+3) = B mod 10 because 8*4=32, so you carried a 3. Again B < 2 else the carry-over will change the 1000s place.

From there, C = 7, B = 1.
 
As eLiu pointed out, the other answer is 2178.

I just wrote a program to test all possible solutions. Seemed easier than thinking about it.
 
Extension:
AB....4*4=4AB.... (Ex. AB.....4--->4AB.... as 1234--->4123)

AB..... and 4AB....each represent a distinct integer (with digits A,B etc.).

find AB....
 
This is the kind of question we get on these lame "Math League" tests. There are six questions which seem hard, but once given the solution, they are rather simple.

I personally like the challenge.
 
Originally posted by: eLiu
2178

edit: 4*D = A mod 10. Also A<3 else you get 5 digits. So A = 2, D = 8 is the only choice.

Then (4*C+3) = B mod 10 because 8*4=32, so you carried a 3. Again B < 2 else the carry-over will change the 1000s place.

From there, C = 7, B = 1.

Correct sir.

BUMP for work crowd
 
Back
Top