A four digit number a a b b exists such that it is a square number. Find it.
Notes:
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.
Really good solution, the calculations can be easily done in this one, easier if known that a + 1 m o d 4 = 0 , 1
a a b b must be divisible by 1 1 if you use the divisibility rule. So it also has to be divisible by 1 2 1 .
Then you can just try 3 3 2 , 4 4 2 , 5 5 2 … 9 9 2 and see which one gives a number of form a a b b .
Simple calculations, can be done on paper, answer is 8 8 2 = 7 7 4 4
Try to reduce the casework more after this (I could reduce it to just two cases, after that I had to check)
Log in to reply
Oh just realised I approached it from the a a b b side, and reduced it to just two cases (mathematically two cases, it was obvious 7744 was the answer among the two)
The calculation might be easier if you figure it out (9a+1) is a square.
Log in to reply
How is 9a+1 a square though?
Log in to reply
I know it’s hard but you need to scroll down a little
Log in to reply
@Jason Gomez – bruh I didn't know he posted a solution
You may check my solution.
Let N = a a b b = 1 1 0 0 a + 1 1 b . This means that N is a multiple of 1 1 . Since N is a perfect square, it is also a multiple of 1 1 2 , Let N = 1 1 2 n 2 , where n is an integer. Then
1 1 0 0 a + 1 1 b 1 0 0 a + b 1 0 0 a + 1 1 − a 9 9 a + 1 1 9 a + 1 ⟹ a ⟹ b ⟹ n 7 7 4 4 = 1 1 2 n 2 = 1 1 n 2 = 1 1 n 2 = 1 1 n 2 = n 2 = 7 = 1 1 − a = 4 = 9 a + 1 = 8 = 1 1 2 n 2 = 8 8 2 Divide both sides by 1 1 ⟹ 1 0 0 a + b ≡ a + b ≡ 0 (mod 11) ⟹ a + b = 1 1 ⟹ b = 1 1 − a Divide both sides by 1 1 The only single-digit integer solution, which is true.
Similar approach to @Percy Jackson 's: say x 2 = a a b b , that is x 2 = 1 1 0 0 a + 1 1 b = 1 1 ( 1 0 0 a + b )
Now, if a prime p divides a square number, then so does p 2 . So we have 1 1 ∣ 1 0 0 a + b ; using the usual rule for divisibility by 1 1 , this means a + b = 1 1 .
A square can only end in one of { 0 , 1 , 4 , 5 , 6 , 9 } ; combining these two facts the list of possible squares is { 2 2 9 9 , 5 5 6 6 , 6 6 5 5 , 7 7 4 4 }
A square has to be a multiple of 4 or one more than a multiple of 4 ; it's easy to check that this only leaves 7 7 4 4 = 8 8 2 as a possibility.
I remember excluding 6 6 5 5 because it doesn’t end in 25 (all squares ending in 5, have to end in 25).
Log in to reply
I think I excluded 2299 also but I don’t remember how
Sir if you don’t mind, would you revisit our discussion I asked about last week?
aabb = 11 × a0b
Since the above is a square, a0b also is a multiple of 11, so a - 0 + b = a + b = 11.
b can only be 0, 1, 4, 6 or 9. 5 is impossible for the fixed 25 as *last two digits of squares, and in the same way we can eliminate 1, 6 & 9 (since all these numbers have their tens in an opposite parity making them inapplicable in the original square number aabb). This leave 0 and 4, but we already know that a + b = 11, so b = 0 will make the sum impossible.
Answer : b = 4 & a = 11 - b = 7
100k(k + 1) will leave the units and tens places to 25 alone being a multiple of the hundred there.
How did you eliminate 6 and 9 again?
Log in to reply
Opposite parity between tens & digits, though only the fivers we shown, the concept is the same where 09 / 16 / 36 / 49 + 2(10k)(3 or 4 or 6 or 7), for additional even tens.
I did a little of work with square numbers. I once found out that 88 x 88 = 7742, but I soon realized I made a mistake in my calculations. I changed the equation to make it true and found out that 88 x 88 = 7744. Thus, the answer is 7744 , which is 88 x 88, or 88 squared.
Problem Loading...
Note Loading...
Set Loading...
x 2 = a a b b x 2 = 1 1 ( a 0 b ) x 2 = 1 1 ( 1 0 0 a + b ) x 2 = 1 1 ( 9 9 a + a + b ) ⟹ a + b = 1 1 as a + b < 2 0 x 2 = 1 1 2 ( 9 a + 1 ) ⟹ 9 a + 1 = y 2 check, we have 9 a + 1 = 9 ( 7 ) + 1 = 6 4 = 8 2 ∴ , a = 7 , b = 4 , x = 8 8 a a b b = 7 7 4 4