Cryptogram with multiple solutions

A B C × A C D C C \large \begin{array}{rrrr} & A & B & C \\ \times & & & A \\ \hline C & D & C & C \end{array} In this cryptogram, A A , B B , C C , and D D stand for four different digits. None of the three numbers can start in zero.

How many different solutions does this cryptogram have?

2 3 4 0 1

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.

2 solutions

Arjen Vreugdenhil
Aug 28, 2019

There are two solutions. 7 6 5 × 7 5 3 5 5 6 7 4 × 6 4 0 4 4 \Large \begin{array}{ccc} \begin{array}{rrrr} & 7 & 6 & 5 \\ \times & & & 7 \\ \hline 5 & 3 & 5 & 5 \end{array} & & \begin{array}{rrrr} & 6 & 7 & 4 \\ \times & & & 6 \\ \hline 4 & 0 & 4 & 4 \end{array} \end{array}


Consider the last digit. There are only a few cases in which C × A C \times A ends in the digit C C :

  • C = 0 C = 0 , but zero is not allowed at the beginning of a number.

  • A = 1 A = 1 , but A B C × 1 = A B C ABC\times 1 =ABC , so this cannot work.

  • C = 5 C = 5 and A A is odd

  • A = 6 A = 6 and C C is even

(Systematic way of making this list: A × C A \times C is C C plus a multiple of 10, so that ( A 1 ) × C (A-1)\times C is a multiple of 10. This means that between A 1 A-1 and C C there is a factor 2 and a factor 5. Working out the four possible placements of these factors gives you the four items above.)

Case C = 5 : the product A B 5 × A AB5 \times A lies between 5055 5055 and 5955 5955 . This requires A = 7. We find the solution 7 B 5 × 7 = 5 D 55 4935 + 70 B = 5055 + 100 D 70 B 100 D = 120 B = 6 , D = 3. 7B5\times 7 = 5D55\ \ \ \therefore\ \ \ 4935 + 70\cdot B = 5055 + 100\cdot D\ \ \ \therefore\ \ \ 70B - 100D = 120\ \ \ \therefore\ \ \ B = 6,\ D = 3.

Case A = 6 : the product is 6 B C × 6 6BC \times 6 lies between 3600 and 4200; thus C = 4. We find the solution 6 B 4 × 6 = 4 D 44 3624 + 60 B = 4044 + 100 D 60 B 100 D = 420 B = 7 , D = 0. 6B4\times 6 = 4D44\ \ \ \therefore\ \ \ 3624 + 60\cdot B = 4044 + 100\cdot D\ \ \ \therefore\ \ \ 60B - 100D = 420\ \ \ \therefore\ \ \ B = 7,\ D = 0.

I did it by trial and error but I found only one I guess I made a transaction error somewhere and it's a good question

Ömer Ertürk - 2 months, 2 weeks ago
Kyle T
Aug 29, 2019
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
<?php 
for($a=1;$a<=9;$a++){
    for($b=0;$b<=9;$b++){
        for($c=1;$c<=9;$c++){
            for($d=0;$d<=9;$d++){
                if(($a.$b.$c)*$a==$c.$d.$c.$c){
                    echo $a.$b.$c.$d.'<br>';
                }
            }
        }
    }
}
/*
prints:
6740
7653
*/
?>

Thanks, just brilliant.

A Former Brilliant Member - 1 year, 9 months ago

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...