× 3 A B A B A A A
A and B are digits. What is B ?
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.
Why is ?A automatically 1, 5, or 6?
Log in to reply
Because if you multiply them (square them) they end with the same number. 1 times 1 = 1. 5 times 5 = 25. 6 times 6 = 36. All of them end with the number that was squared.
Log in to reply
0 is not applied because multiplying by 0 = 0
So ? Why does it have to end with the same number ?
Log in to reply
@Anjali Gola – Because as we saw We multiplied AAA by A and it STILL ended with A
because on the square of both 1, 5, 6 gives the number as the end digit..
e.g 1x 1 = [1] 5 * 5 = 2[5] 6 * 6 = 3 [6]
so AAA x A could be 25 or 36 or 1 or 0 ... fits the solution
Log in to reply
But 3 is the first digit,only 6 satisfies this so let A = 6 then you find B an type B in the answer box
Ha, I found an amusing situation in which 1 does not solve for A X A = A. Given that A = 1, and X is misinterpreted to form the binary XOR operation instead of multiplication.
Thus follows a correctly messed up exclusion for A = 1 as a valid solution is that A XOR A = 0 and thus cannot be a)
XD Der herp!
Log in to reply
An interesting mind mess occurs in the brain when one tries to think of A as representing 10 as it does in Hex. (Base 16)
im confused, if 6 is the solution why is 9 the answer?
Log in to reply
They were asking for A and A is 6. So doing the working, We get B=9
He means we need to find A but B is the answer
*product, not quotient. :-B
Log in to reply
Wow, yes, of course, how could I have done that wrong? :D
We have, a a a × a ⟹ a 2 × 1 1 1 3 0 0 0 The only possible ⟹ a 2 × 1 1 1 ⟹ = 3 b b a = 3 b b a ( 1 ) ≤ 3 b b a ≤ 3 9 9 9 ( 2 ) value of a satisifying ( 1 ) and ( 2 ) is a = 6 = 3 6 × 1 1 1 = 3 9 9 6 b = 9
bad sulotion
Log in to reply
Bad comment.
It is about appreciating it...)
Bad spelling. Solution is the proper way to spell it.
How does “aaa * a = 3bba” imply equation (1) ?
I like this solution, it’s super unique! I’m just missing the steps between the problem statement and (1). Thanks in advance.
Log in to reply
a a a × a a a a ⟹ a 2 × 1 1 1 = 3 b b a = a × 1 1 1 = 3 b b a
Thanks for your comment btw!
Log in to reply
What do the horizontal lines above the letters indicate? the complement? I did not see that in the original question. Apologies if i'm asking a silly question.
Log in to reply
@Gys Wes – It generally means concatenation, which means you treat it as a single number.
In equations a b c d can be misread as the product of numbers a,b,c,d.
But a b c d means a single 4 digit number with digits a,b,c,d.
Log in to reply
@Anirudh Sreekumar – Were can i learn this method? Tnx in advance! :)
Intermediate value theorem, nice. I used this method as well
(100a+10a+a)a=3000+100b+10b+a;
111a²-a=3000+110b;
b=(111a²-a-3000)/110;
111a²-a>3000;
minimum a=6 then b=9;
We see that the upper product displays a 2 = 3 a so it same as a a = 3 0 + a ⟹ a ( a − 1 ) = 3 0 which only 6 solve the solution
Hence, a = 6
The upper product displays a a a × a = 3 b b a so it same as 3 0 0 0 < 1 1 1 a × a < 3 9 9 9 ⟹ 3 0 0 0 < 1 1 1 a 2 < 3 9 9 9 .Because it contains 111 which is part of 1 0 n + 1 0 n − 1 + 1 0 n − 2 + ⋯ + 1 0 3 + 1 0 2 + 1 0 + 1 so that means we have to take 3 from 3 a then plus a which is 9
Hence, b = 9
You made a typo after you plug 6.
At first, we have to know which digit A represents. We know A x A = A. So we´re searching a one digit number, which has itself as the last digit if we square it.
number | squared numbers |
1 | 1 |
2 | 4 |
3 | 9 |
4 | 16 |
5 | 25 |
6 | 36 |
7 | 49 |
8 | 64 |
9 | 81 |
0 | 0 |
There are only four numbers, which fulfill the condition: 1, 5, 6 and 0. The second condition is that the leading digit must be 2 or 3 because of the leading digit of the calculations' solution is, not the B and it's a 3 Looking back at the remaining numbers and at the table shows that only one number remains: 6. Finally, the solution of the problem is the sum of both digits of 6 squared. Looking back at the table again reveals 6 squared is 36 and 3 + 6 = 9
Out of 1, 5 and 6 as the possible value for A, 6 satisfies the requirements and 666x6=3996 gives 9 as the value for B, Therefore, Answer = 9
I didn't want to solve this problem using logic, so I just made a Python 3.7 program and solved it:
x = 0;
for x in range(0, 9):
num = (x*100) + (x*10) + x;
print(str(num) + " * " + str(x) + " = " + str(int(num) * int(x))
Using the program, it says that '666 * 6 = 3996', therefore:
B = 9
Great!But where I can launch Python?
Log in to reply
Brilliant has a scratchpad for Python 3 where you can enter and run code.
Profile --> Coding Environment --> (Select 'Python 3')
Thanks for the problem! :)
Where do you get 6 from?
A must be a number when multiplied by itself, should end up being a number with the last digit being the same number.
That means A can equal 1 or 6 because...
1 x 1 = 1 6 x 6 = 36
If you substitute A with both 1 and 6, 6 ends up being the number that gives the answer with a 3 as the first digit. After multiplying the answer is 3996, meaning B equals 9.
You forget 0 & 5 when squared the last digit are the same.
Could you not have just thought of it as the choices having to be a perfect square, and that it 3 has to be a factor of one of the choices?
Excuse me,your comment should be on the reports,because I can't see you solve this problem.Plus,3 is the digit,not the factor.
The last digit of “3 B B A” (A) = the last digit of A x A which we know simply from the basic method of long multiplication. This is only true for 3 numbers: 1, 5 and 6. We know 111 x 1 = 111, hence one is impossible as the product begins with 3. 555 x 5 starts with a 5, which we know from the method of long multiplication. 666 x 6 does begin with 3 as 6 x 6 = 36 and long multiplication states that we start with that 3 from 36. This is pretty cool as we see how 555 x 5 and 666 x 6 start with the first letter of their squares and end with the last letter of their square. It’s also true that the numbers in between the start and end = the sum of the numbers of the square of the single digit eg: 6 x 6 = 36, so the other digits (B) = 3 + 6= 9 therefor B = 9 ( its also true the total amount of digits = the amount of numbers in the sum) Let’s prove the above statement for understanding.
Take 4
4 x 4 = 16 Therefor we know 444 x 4 = 1776, no calculator needed. Let’s look at long multiplication, the most simple math technique taught to grade 1s and 2s 444
16+ 160 + 1600 since we add a zero each time when we multiply each miner I the top by the number in the bottom. From here it’s easy to see how the Coloums will add up to prove our statement.
666 × 6 = 3996, so A = 6 and B = 9
If the number would have been 111, 222 or 333 then multiplying it by 1,2 and 3 respectively will give us a 3 digit number. So, they can not be the numbers. Multiplying 444 and 555 with 4 & 5 respectively will give the numbers which doesn't start's with 3. But 666×6 = 3996 which matches exactly with the given form. Hence, by comparing we get A=6 & B=9.
To work out B we first need to work out A. So looking at the equation, A x A must end in A. The only whole numbers A can be is "6" or "5" because 6 x 6 = 36, and
5 x 5 = 25. It can't be 5 because 555 x 5 = 2775, and we need the number in the thousands place value to be "3" which it isn't. So lets try "6" 666 x 6 = 3996.
So B = 9
Problem Loading...
Note Loading...
Set Loading...
The last digit satisfies A × A = ? A , which is only the case if A = 1 , 5 , 6 .
Immediately we rule out A = 1 (because then the product would have only 3 digits). That leaves 5 × 5 5 5 = 2 7 7 5 , which is too small; and 6 × 6 6 6 = 3 9 9 6 , which is the solution. Thus, B = 9 .