Find the four digit number?
Clash Royale CLAN TAG#URR8PPP
up vote
3
down vote
favorite
Find a four digit number which is an exact square such that the first two digits are the same and also its last two digits are also the same.
elementary-number-theory contest-math recreational-mathematics
add a comment |Â
up vote
3
down vote
favorite
Find a four digit number which is an exact square such that the first two digits are the same and also its last two digits are also the same.
elementary-number-theory contest-math recreational-mathematics
Am I right to say that b cannot equal 1?
â Adam
Nov 26 '13 at 10:12
add a comment |Â
up vote
3
down vote
favorite
up vote
3
down vote
favorite
Find a four digit number which is an exact square such that the first two digits are the same and also its last two digits are also the same.
elementary-number-theory contest-math recreational-mathematics
Find a four digit number which is an exact square such that the first two digits are the same and also its last two digits are also the same.
elementary-number-theory contest-math recreational-mathematics
edited Jan 12 '15 at 3:02
Andrés E. Caicedo
63.3k7151237
63.3k7151237
asked Nov 18 '13 at 7:46
user93470
121129
121129
Am I right to say that b cannot equal 1?
â Adam
Nov 26 '13 at 10:12
add a comment |Â
Am I right to say that b cannot equal 1?
â Adam
Nov 26 '13 at 10:12
Am I right to say that b cannot equal 1?
â Adam
Nov 26 '13 at 10:12
Am I right to say that b cannot equal 1?
â Adam
Nov 26 '13 at 10:12
add a comment |Â
7 Answers
7
active
oldest
votes
up vote
16
down vote
accepted
HINT:
So, we have $$1000a+100a+10b+b=11(100a+b)$$
$implies 100a+b$ must be divisible by $11implies 11|(a+b)$ as $100equiv1pmod99$
As $0le a,ble 9, 0le a+ble 18implies a+b=11$
$$implies11(100a+b)=11(100a+11-a)=11^2(9a+1)$$
So, $9a+1$ must be perfect square
@user93470, we can test for $0le ale 9implies a=0,7$
â lab bhattacharjee
Nov 18 '13 at 8:19
I am looking for something more concrete...
â user93470
Nov 18 '13 at 8:32
@user93470, schoolintegrationengine.blogspot.in/2010_10_01_archive.html
â lab bhattacharjee
Nov 18 '13 at 8:38
@labbhattacharjee, I didn't understood how did you did it. Please explain clearly!
â Sagnik Saha
Jun 27 '14 at 10:14
7744 is the answer that's sure!
â Sagnik Saha
Jun 27 '14 at 10:16
add a comment |Â
up vote
6
down vote
If we let the four-digit number be XXYY, then this number can be expressed as:
$$1000X + 100X + 10Y + Y = 1100X + 11Y = 11(100X + Y) = k^2$$
(since it's a perfect square)
In order for this to be true, $100X + Y$ must be the product of $11$ and a perfect square, and looks like $X0Y$. So now our question is "which product of $11$ and a perfect square looks like $X0Y$?" We can test them:
$$11 cdot 16 = 176\
11 cdot 25 = 275\
11 cdot 36 = 396\
11 cdot 49 = 593\
11 cdot 64 = 704\
11 cdot 81 = 891$$
The only one that fits the bill is $704$. This means there is only one four-digit number that works, and it's $7744$. Enjoy!
add a comment |Â
up vote
2
down vote
I recommend programming when numbers are so low.
Here is a Python solution:
>>> list(filter(lambda n: str(n**2)[0] == str(n**2)[1] and
str(n**2)[-1] == str(n**2)[-2],
range(int(1000**0.5),int(10000**0.5))
)
)
[88]
>>> 88**2
7744
Note that I broke the line for easier readability.
So 7744 is the only solution.
add a comment |Â
up vote
0
down vote
you'd have to just analyze the digits of some general square of a two digit number:
(10x + y)ò = 100xò + 2xy + yò
It turns out, x=y=8.
Can you be more specific on how to analyze the digits and conclude that $x=y=8$? Is that the only solution (and if yes, why)? I can't tell from your answer if you have a clever argument or if you just did a brute force search. (Also, you should replace 2 with 20 in your formula.)
â Joonas Ilmavirta
Sep 10 '14 at 19:14
add a comment |Â
up vote
0
down vote
The Number is of the form 1000A + 100A + 10B + B = 11( 100A + B ) = 11 ( 99A + A + B )
Since it is a perfect square number , (99A + A + B) should be divisible by 11 hence (A + B) is divisible by 11....(i)
Any perfect square has either the digits 1 , 4 , 9 , 6 , 5 , 0 at the units' place , ...(ii)
Only numbers which satisfy property i and ii are enlisted:
7744
2299
5566
6655
[Note that (A + B) being divisible by 11 was a crucial property to note]
Clearly , Only 7744 is a perfect square number.
add a comment |Â
up vote
0
down vote
Given $overlineaabb=1100a+11b=k^2$, consider mod $4$:
$$kequiv 0,1,2,3 pmod4 \
k^2equiv 0,1 pmod4\
1100a+11bequiv 3bequiv 0,1 pmod4 Rightarrow b=0,3,4,7,8 (1)$$
Also, the last digit of $k^2$ can be:
$$b=0,1,4,5,6,9 (2)$$
Hence, from $(1)$ and $(2)$:
$$b=0 textor 4.$$
And:
$$k^2=1100a+11b=11(100a+b)=11^2cdot 9a+11(a+b) Rightarrow a+bequiv 0 pmod11.$$
So, $overlineaabb=7744$.
add a comment |Â
up vote
-1
down vote
We know that the only square that has last two digits as same is $12^2=144$. For a four digit perfect square it should either be $(50-12)^2$ or $(50+12)^2$ or $(100-12)^2$
$38^2= 1444 $
$62^2= 3844$
$88^2= 7744 $
As per the question we know $88^2$ is the perfect square that has first 2 digits & last 2 digits as the same.
add a comment |Â
7 Answers
7
active
oldest
votes
7 Answers
7
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
16
down vote
accepted
HINT:
So, we have $$1000a+100a+10b+b=11(100a+b)$$
$implies 100a+b$ must be divisible by $11implies 11|(a+b)$ as $100equiv1pmod99$
As $0le a,ble 9, 0le a+ble 18implies a+b=11$
$$implies11(100a+b)=11(100a+11-a)=11^2(9a+1)$$
So, $9a+1$ must be perfect square
@user93470, we can test for $0le ale 9implies a=0,7$
â lab bhattacharjee
Nov 18 '13 at 8:19
I am looking for something more concrete...
â user93470
Nov 18 '13 at 8:32
@user93470, schoolintegrationengine.blogspot.in/2010_10_01_archive.html
â lab bhattacharjee
Nov 18 '13 at 8:38
@labbhattacharjee, I didn't understood how did you did it. Please explain clearly!
â Sagnik Saha
Jun 27 '14 at 10:14
7744 is the answer that's sure!
â Sagnik Saha
Jun 27 '14 at 10:16
add a comment |Â
up vote
16
down vote
accepted
HINT:
So, we have $$1000a+100a+10b+b=11(100a+b)$$
$implies 100a+b$ must be divisible by $11implies 11|(a+b)$ as $100equiv1pmod99$
As $0le a,ble 9, 0le a+ble 18implies a+b=11$
$$implies11(100a+b)=11(100a+11-a)=11^2(9a+1)$$
So, $9a+1$ must be perfect square
@user93470, we can test for $0le ale 9implies a=0,7$
â lab bhattacharjee
Nov 18 '13 at 8:19
I am looking for something more concrete...
â user93470
Nov 18 '13 at 8:32
@user93470, schoolintegrationengine.blogspot.in/2010_10_01_archive.html
â lab bhattacharjee
Nov 18 '13 at 8:38
@labbhattacharjee, I didn't understood how did you did it. Please explain clearly!
â Sagnik Saha
Jun 27 '14 at 10:14
7744 is the answer that's sure!
â Sagnik Saha
Jun 27 '14 at 10:16
add a comment |Â
up vote
16
down vote
accepted
up vote
16
down vote
accepted
HINT:
So, we have $$1000a+100a+10b+b=11(100a+b)$$
$implies 100a+b$ must be divisible by $11implies 11|(a+b)$ as $100equiv1pmod99$
As $0le a,ble 9, 0le a+ble 18implies a+b=11$
$$implies11(100a+b)=11(100a+11-a)=11^2(9a+1)$$
So, $9a+1$ must be perfect square
HINT:
So, we have $$1000a+100a+10b+b=11(100a+b)$$
$implies 100a+b$ must be divisible by $11implies 11|(a+b)$ as $100equiv1pmod99$
As $0le a,ble 9, 0le a+ble 18implies a+b=11$
$$implies11(100a+b)=11(100a+11-a)=11^2(9a+1)$$
So, $9a+1$ must be perfect square
answered Nov 18 '13 at 7:50
lab bhattacharjee
215k14152264
215k14152264
@user93470, we can test for $0le ale 9implies a=0,7$
â lab bhattacharjee
Nov 18 '13 at 8:19
I am looking for something more concrete...
â user93470
Nov 18 '13 at 8:32
@user93470, schoolintegrationengine.blogspot.in/2010_10_01_archive.html
â lab bhattacharjee
Nov 18 '13 at 8:38
@labbhattacharjee, I didn't understood how did you did it. Please explain clearly!
â Sagnik Saha
Jun 27 '14 at 10:14
7744 is the answer that's sure!
â Sagnik Saha
Jun 27 '14 at 10:16
add a comment |Â
@user93470, we can test for $0le ale 9implies a=0,7$
â lab bhattacharjee
Nov 18 '13 at 8:19
I am looking for something more concrete...
â user93470
Nov 18 '13 at 8:32
@user93470, schoolintegrationengine.blogspot.in/2010_10_01_archive.html
â lab bhattacharjee
Nov 18 '13 at 8:38
@labbhattacharjee, I didn't understood how did you did it. Please explain clearly!
â Sagnik Saha
Jun 27 '14 at 10:14
7744 is the answer that's sure!
â Sagnik Saha
Jun 27 '14 at 10:16
@user93470, we can test for $0le ale 9implies a=0,7$
â lab bhattacharjee
Nov 18 '13 at 8:19
@user93470, we can test for $0le ale 9implies a=0,7$
â lab bhattacharjee
Nov 18 '13 at 8:19
I am looking for something more concrete...
â user93470
Nov 18 '13 at 8:32
I am looking for something more concrete...
â user93470
Nov 18 '13 at 8:32
@user93470, schoolintegrationengine.blogspot.in/2010_10_01_archive.html
â lab bhattacharjee
Nov 18 '13 at 8:38
@user93470, schoolintegrationengine.blogspot.in/2010_10_01_archive.html
â lab bhattacharjee
Nov 18 '13 at 8:38
@labbhattacharjee, I didn't understood how did you did it. Please explain clearly!
â Sagnik Saha
Jun 27 '14 at 10:14
@labbhattacharjee, I didn't understood how did you did it. Please explain clearly!
â Sagnik Saha
Jun 27 '14 at 10:14
7744 is the answer that's sure!
â Sagnik Saha
Jun 27 '14 at 10:16
7744 is the answer that's sure!
â Sagnik Saha
Jun 27 '14 at 10:16
add a comment |Â
up vote
6
down vote
If we let the four-digit number be XXYY, then this number can be expressed as:
$$1000X + 100X + 10Y + Y = 1100X + 11Y = 11(100X + Y) = k^2$$
(since it's a perfect square)
In order for this to be true, $100X + Y$ must be the product of $11$ and a perfect square, and looks like $X0Y$. So now our question is "which product of $11$ and a perfect square looks like $X0Y$?" We can test them:
$$11 cdot 16 = 176\
11 cdot 25 = 275\
11 cdot 36 = 396\
11 cdot 49 = 593\
11 cdot 64 = 704\
11 cdot 81 = 891$$
The only one that fits the bill is $704$. This means there is only one four-digit number that works, and it's $7744$. Enjoy!
add a comment |Â
up vote
6
down vote
If we let the four-digit number be XXYY, then this number can be expressed as:
$$1000X + 100X + 10Y + Y = 1100X + 11Y = 11(100X + Y) = k^2$$
(since it's a perfect square)
In order for this to be true, $100X + Y$ must be the product of $11$ and a perfect square, and looks like $X0Y$. So now our question is "which product of $11$ and a perfect square looks like $X0Y$?" We can test them:
$$11 cdot 16 = 176\
11 cdot 25 = 275\
11 cdot 36 = 396\
11 cdot 49 = 593\
11 cdot 64 = 704\
11 cdot 81 = 891$$
The only one that fits the bill is $704$. This means there is only one four-digit number that works, and it's $7744$. Enjoy!
add a comment |Â
up vote
6
down vote
up vote
6
down vote
If we let the four-digit number be XXYY, then this number can be expressed as:
$$1000X + 100X + 10Y + Y = 1100X + 11Y = 11(100X + Y) = k^2$$
(since it's a perfect square)
In order for this to be true, $100X + Y$ must be the product of $11$ and a perfect square, and looks like $X0Y$. So now our question is "which product of $11$ and a perfect square looks like $X0Y$?" We can test them:
$$11 cdot 16 = 176\
11 cdot 25 = 275\
11 cdot 36 = 396\
11 cdot 49 = 593\
11 cdot 64 = 704\
11 cdot 81 = 891$$
The only one that fits the bill is $704$. This means there is only one four-digit number that works, and it's $7744$. Enjoy!
If we let the four-digit number be XXYY, then this number can be expressed as:
$$1000X + 100X + 10Y + Y = 1100X + 11Y = 11(100X + Y) = k^2$$
(since it's a perfect square)
In order for this to be true, $100X + Y$ must be the product of $11$ and a perfect square, and looks like $X0Y$. So now our question is "which product of $11$ and a perfect square looks like $X0Y$?" We can test them:
$$11 cdot 16 = 176\
11 cdot 25 = 275\
11 cdot 36 = 396\
11 cdot 49 = 593\
11 cdot 64 = 704\
11 cdot 81 = 891$$
The only one that fits the bill is $704$. This means there is only one four-digit number that works, and it's $7744$. Enjoy!
edited Jul 1 '14 at 8:59
5xum
82.2k383147
82.2k383147
answered Jul 1 '14 at 8:33
NoNAME
6111
6111
add a comment |Â
add a comment |Â
up vote
2
down vote
I recommend programming when numbers are so low.
Here is a Python solution:
>>> list(filter(lambda n: str(n**2)[0] == str(n**2)[1] and
str(n**2)[-1] == str(n**2)[-2],
range(int(1000**0.5),int(10000**0.5))
)
)
[88]
>>> 88**2
7744
Note that I broke the line for easier readability.
So 7744 is the only solution.
add a comment |Â
up vote
2
down vote
I recommend programming when numbers are so low.
Here is a Python solution:
>>> list(filter(lambda n: str(n**2)[0] == str(n**2)[1] and
str(n**2)[-1] == str(n**2)[-2],
range(int(1000**0.5),int(10000**0.5))
)
)
[88]
>>> 88**2
7744
Note that I broke the line for easier readability.
So 7744 is the only solution.
add a comment |Â
up vote
2
down vote
up vote
2
down vote
I recommend programming when numbers are so low.
Here is a Python solution:
>>> list(filter(lambda n: str(n**2)[0] == str(n**2)[1] and
str(n**2)[-1] == str(n**2)[-2],
range(int(1000**0.5),int(10000**0.5))
)
)
[88]
>>> 88**2
7744
Note that I broke the line for easier readability.
So 7744 is the only solution.
I recommend programming when numbers are so low.
Here is a Python solution:
>>> list(filter(lambda n: str(n**2)[0] == str(n**2)[1] and
str(n**2)[-1] == str(n**2)[-2],
range(int(1000**0.5),int(10000**0.5))
)
)
[88]
>>> 88**2
7744
Note that I broke the line for easier readability.
So 7744 is the only solution.
answered Nov 19 '13 at 6:46
Martin Thoma
4,12593795
4,12593795
add a comment |Â
add a comment |Â
up vote
0
down vote
you'd have to just analyze the digits of some general square of a two digit number:
(10x + y)ò = 100xò + 2xy + yò
It turns out, x=y=8.
Can you be more specific on how to analyze the digits and conclude that $x=y=8$? Is that the only solution (and if yes, why)? I can't tell from your answer if you have a clever argument or if you just did a brute force search. (Also, you should replace 2 with 20 in your formula.)
â Joonas Ilmavirta
Sep 10 '14 at 19:14
add a comment |Â
up vote
0
down vote
you'd have to just analyze the digits of some general square of a two digit number:
(10x + y)ò = 100xò + 2xy + yò
It turns out, x=y=8.
Can you be more specific on how to analyze the digits and conclude that $x=y=8$? Is that the only solution (and if yes, why)? I can't tell from your answer if you have a clever argument or if you just did a brute force search. (Also, you should replace 2 with 20 in your formula.)
â Joonas Ilmavirta
Sep 10 '14 at 19:14
add a comment |Â
up vote
0
down vote
up vote
0
down vote
you'd have to just analyze the digits of some general square of a two digit number:
(10x + y)ò = 100xò + 2xy + yò
It turns out, x=y=8.
you'd have to just analyze the digits of some general square of a two digit number:
(10x + y)ò = 100xò + 2xy + yò
It turns out, x=y=8.
answered Sep 10 '14 at 18:46
Aniket Ranjan
11
11
Can you be more specific on how to analyze the digits and conclude that $x=y=8$? Is that the only solution (and if yes, why)? I can't tell from your answer if you have a clever argument or if you just did a brute force search. (Also, you should replace 2 with 20 in your formula.)
â Joonas Ilmavirta
Sep 10 '14 at 19:14
add a comment |Â
Can you be more specific on how to analyze the digits and conclude that $x=y=8$? Is that the only solution (and if yes, why)? I can't tell from your answer if you have a clever argument or if you just did a brute force search. (Also, you should replace 2 with 20 in your formula.)
â Joonas Ilmavirta
Sep 10 '14 at 19:14
Can you be more specific on how to analyze the digits and conclude that $x=y=8$? Is that the only solution (and if yes, why)? I can't tell from your answer if you have a clever argument or if you just did a brute force search. (Also, you should replace 2 with 20 in your formula.)
â Joonas Ilmavirta
Sep 10 '14 at 19:14
Can you be more specific on how to analyze the digits and conclude that $x=y=8$? Is that the only solution (and if yes, why)? I can't tell from your answer if you have a clever argument or if you just did a brute force search. (Also, you should replace 2 with 20 in your formula.)
â Joonas Ilmavirta
Sep 10 '14 at 19:14
add a comment |Â
up vote
0
down vote
The Number is of the form 1000A + 100A + 10B + B = 11( 100A + B ) = 11 ( 99A + A + B )
Since it is a perfect square number , (99A + A + B) should be divisible by 11 hence (A + B) is divisible by 11....(i)
Any perfect square has either the digits 1 , 4 , 9 , 6 , 5 , 0 at the units' place , ...(ii)
Only numbers which satisfy property i and ii are enlisted:
7744
2299
5566
6655
[Note that (A + B) being divisible by 11 was a crucial property to note]
Clearly , Only 7744 is a perfect square number.
add a comment |Â
up vote
0
down vote
The Number is of the form 1000A + 100A + 10B + B = 11( 100A + B ) = 11 ( 99A + A + B )
Since it is a perfect square number , (99A + A + B) should be divisible by 11 hence (A + B) is divisible by 11....(i)
Any perfect square has either the digits 1 , 4 , 9 , 6 , 5 , 0 at the units' place , ...(ii)
Only numbers which satisfy property i and ii are enlisted:
7744
2299
5566
6655
[Note that (A + B) being divisible by 11 was a crucial property to note]
Clearly , Only 7744 is a perfect square number.
add a comment |Â
up vote
0
down vote
up vote
0
down vote
The Number is of the form 1000A + 100A + 10B + B = 11( 100A + B ) = 11 ( 99A + A + B )
Since it is a perfect square number , (99A + A + B) should be divisible by 11 hence (A + B) is divisible by 11....(i)
Any perfect square has either the digits 1 , 4 , 9 , 6 , 5 , 0 at the units' place , ...(ii)
Only numbers which satisfy property i and ii are enlisted:
7744
2299
5566
6655
[Note that (A + B) being divisible by 11 was a crucial property to note]
Clearly , Only 7744 is a perfect square number.
The Number is of the form 1000A + 100A + 10B + B = 11( 100A + B ) = 11 ( 99A + A + B )
Since it is a perfect square number , (99A + A + B) should be divisible by 11 hence (A + B) is divisible by 11....(i)
Any perfect square has either the digits 1 , 4 , 9 , 6 , 5 , 0 at the units' place , ...(ii)
Only numbers which satisfy property i and ii are enlisted:
7744
2299
5566
6655
[Note that (A + B) being divisible by 11 was a crucial property to note]
Clearly , Only 7744 is a perfect square number.
answered Nov 22 '14 at 16:49
Sachit
11
11
add a comment |Â
add a comment |Â
up vote
0
down vote
Given $overlineaabb=1100a+11b=k^2$, consider mod $4$:
$$kequiv 0,1,2,3 pmod4 \
k^2equiv 0,1 pmod4\
1100a+11bequiv 3bequiv 0,1 pmod4 Rightarrow b=0,3,4,7,8 (1)$$
Also, the last digit of $k^2$ can be:
$$b=0,1,4,5,6,9 (2)$$
Hence, from $(1)$ and $(2)$:
$$b=0 textor 4.$$
And:
$$k^2=1100a+11b=11(100a+b)=11^2cdot 9a+11(a+b) Rightarrow a+bequiv 0 pmod11.$$
So, $overlineaabb=7744$.
add a comment |Â
up vote
0
down vote
Given $overlineaabb=1100a+11b=k^2$, consider mod $4$:
$$kequiv 0,1,2,3 pmod4 \
k^2equiv 0,1 pmod4\
1100a+11bequiv 3bequiv 0,1 pmod4 Rightarrow b=0,3,4,7,8 (1)$$
Also, the last digit of $k^2$ can be:
$$b=0,1,4,5,6,9 (2)$$
Hence, from $(1)$ and $(2)$:
$$b=0 textor 4.$$
And:
$$k^2=1100a+11b=11(100a+b)=11^2cdot 9a+11(a+b) Rightarrow a+bequiv 0 pmod11.$$
So, $overlineaabb=7744$.
add a comment |Â
up vote
0
down vote
up vote
0
down vote
Given $overlineaabb=1100a+11b=k^2$, consider mod $4$:
$$kequiv 0,1,2,3 pmod4 \
k^2equiv 0,1 pmod4\
1100a+11bequiv 3bequiv 0,1 pmod4 Rightarrow b=0,3,4,7,8 (1)$$
Also, the last digit of $k^2$ can be:
$$b=0,1,4,5,6,9 (2)$$
Hence, from $(1)$ and $(2)$:
$$b=0 textor 4.$$
And:
$$k^2=1100a+11b=11(100a+b)=11^2cdot 9a+11(a+b) Rightarrow a+bequiv 0 pmod11.$$
So, $overlineaabb=7744$.
Given $overlineaabb=1100a+11b=k^2$, consider mod $4$:
$$kequiv 0,1,2,3 pmod4 \
k^2equiv 0,1 pmod4\
1100a+11bequiv 3bequiv 0,1 pmod4 Rightarrow b=0,3,4,7,8 (1)$$
Also, the last digit of $k^2$ can be:
$$b=0,1,4,5,6,9 (2)$$
Hence, from $(1)$ and $(2)$:
$$b=0 textor 4.$$
And:
$$k^2=1100a+11b=11(100a+b)=11^2cdot 9a+11(a+b) Rightarrow a+bequiv 0 pmod11.$$
So, $overlineaabb=7744$.
answered Aug 16 at 11:13
farruhota
14k2632
14k2632
add a comment |Â
add a comment |Â
up vote
-1
down vote
We know that the only square that has last two digits as same is $12^2=144$. For a four digit perfect square it should either be $(50-12)^2$ or $(50+12)^2$ or $(100-12)^2$
$38^2= 1444 $
$62^2= 3844$
$88^2= 7744 $
As per the question we know $88^2$ is the perfect square that has first 2 digits & last 2 digits as the same.
add a comment |Â
up vote
-1
down vote
We know that the only square that has last two digits as same is $12^2=144$. For a four digit perfect square it should either be $(50-12)^2$ or $(50+12)^2$ or $(100-12)^2$
$38^2= 1444 $
$62^2= 3844$
$88^2= 7744 $
As per the question we know $88^2$ is the perfect square that has first 2 digits & last 2 digits as the same.
add a comment |Â
up vote
-1
down vote
up vote
-1
down vote
We know that the only square that has last two digits as same is $12^2=144$. For a four digit perfect square it should either be $(50-12)^2$ or $(50+12)^2$ or $(100-12)^2$
$38^2= 1444 $
$62^2= 3844$
$88^2= 7744 $
As per the question we know $88^2$ is the perfect square that has first 2 digits & last 2 digits as the same.
We know that the only square that has last two digits as same is $12^2=144$. For a four digit perfect square it should either be $(50-12)^2$ or $(50+12)^2$ or $(100-12)^2$
$38^2= 1444 $
$62^2= 3844$
$88^2= 7744 $
As per the question we know $88^2$ is the perfect square that has first 2 digits & last 2 digits as the same.
edited Aug 16 at 6:41
greedoid
27k93575
27k93575
answered Aug 16 at 6:16
Vivekkumar Ramakrishnan
1
1
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f571582%2ffind-the-four-digit-number%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Am I right to say that b cannot equal 1?
â Adam
Nov 26 '13 at 10:12