A A B B = m 2
Find the four digit perfect square where both the first two digits are the same and the last two digits are the same.
Please enter the four digit perfect square as your answer.
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.
This can be solved by checking whether each of the possible numbers of the form A A B B are square. However, I think we would prefer to be a little more clever about it. Firstly, a good start with problems of this type is to write our number algebraically:
n = 1 0 0 0 A + 1 0 0 A + 1 0 B + 1 B
n = 1 1 0 0 A + 1 1 B
n = 1 1 ( 1 0 0 A + B )
So we can see that our number, n , must be divisible by 1 1 . Also, as n is a perfect square, we can see that it must be divisible by 1 1 2 = 1 2 1 . Let:
n = m 2
As we know that n is divisible by 1 2 1 we can see that m must be divisible by 1 1 . At this point we can try all the multiples of 1 1 from 3 3 to 9 9 , and we will discover our answer. This has reduced our search size by more than a factor of 1 0 . However, we can do better.
n = 1 1 ( 1 0 0 A + B )
As n is divisible by 1 2 1 , we can see that 1 0 0 A + B is divisible by 1 1 . However,
1 0 0 A + B = 9 9 A + ( A + B )
So, A + B must be divisible by 1 1 . As A and B are both less than 1 0 , A + B = 1 1 . From here we have,
n = 1 1 ( 9 9 A + 1 1 )
1 2 1 n = 9 A + 1
And as n is a perfect square, 9 A + 1 must also be a perfect square. The only possibility is A = 7 ⟹ 9 A + 1 = 6 4 . This gives us,
n = 1 2 1 × 6 4 = 7 7 4 4 = 8 8 2
When I first solved this, I stopped at the search of all multiples of 1 1 between 3 3 and 9 9 , which I think is a legitimate strategy.
Great! That's a clear explanation of how one could approach the problem systematically.
Nothing wrong with checking through finitely many cases. That's a good first approach to many problems :)
Thanks. I think the solutions on this site are a real strength.
Problem Loading...
Note Loading...
Set Loading...
A A B B = 1 1 0 0 A + 1 1 B = 1 1 ( 1 0 0 A + B ) = 1 1 ( 9 9 A + A + B ) = 1 1 2 ( 9 A + 1 1 A + B ) = 1 1 2 ( 9 A + 1 ) = 1 1 2 ( 9 × 7 + 1 ) = 1 1 2 8 2 = 8 8 2 = 7 7 4 4 Since 11 is a factor and A A B B is a perfect square, 1 1 2 must be a factor. For integral RHS, A + B = 1 1 ( 9 A + 1 ) must be a perfect square. ⟹ A = 7 , B = 1 1 − 7 = 4