Find the four digit number?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
3
down vote

favorite
2












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.







share|cite|improve this question






















  • Am I right to say that b cannot equal 1?
    – Adam
    Nov 26 '13 at 10:12














up vote
3
down vote

favorite
2












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.







share|cite|improve this question






















  • Am I right to say that b cannot equal 1?
    – Adam
    Nov 26 '13 at 10:12












up vote
3
down vote

favorite
2









up vote
3
down vote

favorite
2






2





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.







share|cite|improve this question














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.









share|cite|improve this question













share|cite|improve this question




share|cite|improve this question








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
















  • 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










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






share|cite|improve this answer




















  • @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

















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!






share|cite|improve this answer





























    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.






    share|cite|improve this answer



























      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.






      share|cite|improve this answer




















      • 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

















      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.






      share|cite|improve this answer



























        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$.






        share|cite|improve this answer



























          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.






          share|cite|improve this answer






















            Your Answer




            StackExchange.ifUsing("editor", function ()
            return StackExchange.using("mathjaxEditing", function ()
            StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
            StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
            );
            );
            , "mathjax-editing");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "69"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            convertImagesToLinks: true,
            noModals: false,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            noCode: true, onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );








             

            draft saved


            draft discarded


















            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






























            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






            share|cite|improve this answer




















            • @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














            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






            share|cite|improve this answer




















            • @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












            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






            share|cite|improve this answer












            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







            share|cite|improve this answer












            share|cite|improve this answer



            share|cite|improve this answer










            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
















            • @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










            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!






            share|cite|improve this answer


























              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!






              share|cite|improve this answer
























                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!






                share|cite|improve this answer














                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!







                share|cite|improve this answer














                share|cite|improve this answer



                share|cite|improve this answer








                edited Jul 1 '14 at 8:59









                5xum

                82.2k383147




                82.2k383147










                answered Jul 1 '14 at 8:33









                NoNAME

                6111




                6111




















                    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.






                    share|cite|improve this answer
























                      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.






                      share|cite|improve this answer






















                        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.






                        share|cite|improve this answer












                        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.







                        share|cite|improve this answer












                        share|cite|improve this answer



                        share|cite|improve this answer










                        answered Nov 19 '13 at 6:46









                        Martin Thoma

                        4,12593795




                        4,12593795




















                            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.






                            share|cite|improve this answer




















                            • 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














                            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.






                            share|cite|improve this answer




















                            • 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












                            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.






                            share|cite|improve this answer












                            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.







                            share|cite|improve this answer












                            share|cite|improve this answer



                            share|cite|improve this answer










                            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
















                            • 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










                            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.






                            share|cite|improve this answer
























                              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.






                              share|cite|improve this answer






















                                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.






                                share|cite|improve this answer












                                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.







                                share|cite|improve this answer












                                share|cite|improve this answer



                                share|cite|improve this answer










                                answered Nov 22 '14 at 16:49









                                Sachit

                                11




                                11




















                                    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$.






                                    share|cite|improve this answer
























                                      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$.






                                      share|cite|improve this answer






















                                        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$.






                                        share|cite|improve this answer












                                        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$.







                                        share|cite|improve this answer












                                        share|cite|improve this answer



                                        share|cite|improve this answer










                                        answered Aug 16 at 11:13









                                        farruhota

                                        14k2632




                                        14k2632




















                                            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.






                                            share|cite|improve this answer


























                                              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.






                                              share|cite|improve this answer
























                                                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.






                                                share|cite|improve this answer














                                                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.







                                                share|cite|improve this answer














                                                share|cite|improve this answer



                                                share|cite|improve this answer








                                                edited Aug 16 at 6:41









                                                greedoid

                                                27k93575




                                                27k93575










                                                answered Aug 16 at 6:16









                                                Vivekkumar Ramakrishnan

                                                1




                                                1






















                                                     

                                                    draft saved


                                                    draft discarded


























                                                     


                                                    draft saved


                                                    draft discarded














                                                    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













































































                                                    這個網誌中的熱門文章

                                                    Is there any way to eliminate the singular point to solve this integral by hand or by approximations?

                                                    Why am i infinitely getting the same tweet with the Twitter Search API?

                                                    Carbon dioxide