Chinese Remainder Theorem - solving a modulo with big numbers

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











up vote
1
down vote

favorite












I have the calculation: $2^31pmod 2925$



It's for university and we should solve it like:



  1. make prime partition

  2. $2^31$ mod all prime partitions

  3. Solve with Chinese Remainder Theorem.

I started with $2925 = 3 cdot 3 cdot 5 cdot 5 cdot 13$ , and found out that:
$$2^31 equiv 2 pmod3$$
$$2^31 equiv 3 pmod5$$
$$2^31 equiv 11 pmod13$$
I made:
$$x equiv 2 pmod3$$
$$x equiv 3 pmod5$$
$$x equiv 11 pmod13$$



Then I tried CRT and got $x = -1237 + 195k$



If you simply calculate $2^31pmod 2925$ you get $1298$, which is in fact $-1237 + 195 cdot 13$.



I don't know how to find out the $13$.



Any help appreciated.



EDIT:



SOLVED!
I took $3$ instead of $9$ and $5$ instead of $25$ after prime partition. For more infos please see comments. Thanks!







share|cite|improve this question






















  • For CRT you need to use moduli $,9,25,13,,$ not $,3,5,13,$
    – Number
    Apr 24 '15 at 19:13











  • Ah, so I need to multiply the same primes.. like if I had 3*3*3 instead of 3*3 I had to take 27?
    – Somebody
    Apr 24 '15 at 19:16










  • You want the lcm of the moduli to be $2925$ in order to get the result mod $2925$, and you want them pairwise coprime so you can apply CRT.
    – Number
    Apr 24 '15 at 19:19











  • Okay I see & I'will try. Thank you !
    – Somebody
    Apr 24 '15 at 19:23










  • Worked out perfectly, thank you :)
    – Somebody
    Apr 24 '15 at 19:44














up vote
1
down vote

favorite












I have the calculation: $2^31pmod 2925$



It's for university and we should solve it like:



  1. make prime partition

  2. $2^31$ mod all prime partitions

  3. Solve with Chinese Remainder Theorem.

I started with $2925 = 3 cdot 3 cdot 5 cdot 5 cdot 13$ , and found out that:
$$2^31 equiv 2 pmod3$$
$$2^31 equiv 3 pmod5$$
$$2^31 equiv 11 pmod13$$
I made:
$$x equiv 2 pmod3$$
$$x equiv 3 pmod5$$
$$x equiv 11 pmod13$$



Then I tried CRT and got $x = -1237 + 195k$



If you simply calculate $2^31pmod 2925$ you get $1298$, which is in fact $-1237 + 195 cdot 13$.



I don't know how to find out the $13$.



Any help appreciated.



EDIT:



SOLVED!
I took $3$ instead of $9$ and $5$ instead of $25$ after prime partition. For more infos please see comments. Thanks!







share|cite|improve this question






















  • For CRT you need to use moduli $,9,25,13,,$ not $,3,5,13,$
    – Number
    Apr 24 '15 at 19:13











  • Ah, so I need to multiply the same primes.. like if I had 3*3*3 instead of 3*3 I had to take 27?
    – Somebody
    Apr 24 '15 at 19:16










  • You want the lcm of the moduli to be $2925$ in order to get the result mod $2925$, and you want them pairwise coprime so you can apply CRT.
    – Number
    Apr 24 '15 at 19:19











  • Okay I see & I'will try. Thank you !
    – Somebody
    Apr 24 '15 at 19:23










  • Worked out perfectly, thank you :)
    – Somebody
    Apr 24 '15 at 19:44












up vote
1
down vote

favorite









up vote
1
down vote

favorite











I have the calculation: $2^31pmod 2925$



It's for university and we should solve it like:



  1. make prime partition

  2. $2^31$ mod all prime partitions

  3. Solve with Chinese Remainder Theorem.

I started with $2925 = 3 cdot 3 cdot 5 cdot 5 cdot 13$ , and found out that:
$$2^31 equiv 2 pmod3$$
$$2^31 equiv 3 pmod5$$
$$2^31 equiv 11 pmod13$$
I made:
$$x equiv 2 pmod3$$
$$x equiv 3 pmod5$$
$$x equiv 11 pmod13$$



Then I tried CRT and got $x = -1237 + 195k$



If you simply calculate $2^31pmod 2925$ you get $1298$, which is in fact $-1237 + 195 cdot 13$.



I don't know how to find out the $13$.



Any help appreciated.



EDIT:



SOLVED!
I took $3$ instead of $9$ and $5$ instead of $25$ after prime partition. For more infos please see comments. Thanks!







share|cite|improve this question














I have the calculation: $2^31pmod 2925$



It's for university and we should solve it like:



  1. make prime partition

  2. $2^31$ mod all prime partitions

  3. Solve with Chinese Remainder Theorem.

I started with $2925 = 3 cdot 3 cdot 5 cdot 5 cdot 13$ , and found out that:
$$2^31 equiv 2 pmod3$$
$$2^31 equiv 3 pmod5$$
$$2^31 equiv 11 pmod13$$
I made:
$$x equiv 2 pmod3$$
$$x equiv 3 pmod5$$
$$x equiv 11 pmod13$$



Then I tried CRT and got $x = -1237 + 195k$



If you simply calculate $2^31pmod 2925$ you get $1298$, which is in fact $-1237 + 195 cdot 13$.



I don't know how to find out the $13$.



Any help appreciated.



EDIT:



SOLVED!
I took $3$ instead of $9$ and $5$ instead of $25$ after prime partition. For more infos please see comments. Thanks!









share|cite|improve this question













share|cite|improve this question




share|cite|improve this question








edited Aug 20 at 12:30









JayTuma

1,333118




1,333118










asked Apr 24 '15 at 19:02









Somebody

1048




1048











  • For CRT you need to use moduli $,9,25,13,,$ not $,3,5,13,$
    – Number
    Apr 24 '15 at 19:13











  • Ah, so I need to multiply the same primes.. like if I had 3*3*3 instead of 3*3 I had to take 27?
    – Somebody
    Apr 24 '15 at 19:16










  • You want the lcm of the moduli to be $2925$ in order to get the result mod $2925$, and you want them pairwise coprime so you can apply CRT.
    – Number
    Apr 24 '15 at 19:19











  • Okay I see & I'will try. Thank you !
    – Somebody
    Apr 24 '15 at 19:23










  • Worked out perfectly, thank you :)
    – Somebody
    Apr 24 '15 at 19:44
















  • For CRT you need to use moduli $,9,25,13,,$ not $,3,5,13,$
    – Number
    Apr 24 '15 at 19:13











  • Ah, so I need to multiply the same primes.. like if I had 3*3*3 instead of 3*3 I had to take 27?
    – Somebody
    Apr 24 '15 at 19:16










  • You want the lcm of the moduli to be $2925$ in order to get the result mod $2925$, and you want them pairwise coprime so you can apply CRT.
    – Number
    Apr 24 '15 at 19:19











  • Okay I see & I'will try. Thank you !
    – Somebody
    Apr 24 '15 at 19:23










  • Worked out perfectly, thank you :)
    – Somebody
    Apr 24 '15 at 19:44















For CRT you need to use moduli $,9,25,13,,$ not $,3,5,13,$
– Number
Apr 24 '15 at 19:13





For CRT you need to use moduli $,9,25,13,,$ not $,3,5,13,$
– Number
Apr 24 '15 at 19:13













Ah, so I need to multiply the same primes.. like if I had 3*3*3 instead of 3*3 I had to take 27?
– Somebody
Apr 24 '15 at 19:16




Ah, so I need to multiply the same primes.. like if I had 3*3*3 instead of 3*3 I had to take 27?
– Somebody
Apr 24 '15 at 19:16












You want the lcm of the moduli to be $2925$ in order to get the result mod $2925$, and you want them pairwise coprime so you can apply CRT.
– Number
Apr 24 '15 at 19:19





You want the lcm of the moduli to be $2925$ in order to get the result mod $2925$, and you want them pairwise coprime so you can apply CRT.
– Number
Apr 24 '15 at 19:19













Okay I see & I'will try. Thank you !
– Somebody
Apr 24 '15 at 19:23




Okay I see & I'will try. Thank you !
– Somebody
Apr 24 '15 at 19:23












Worked out perfectly, thank you :)
– Somebody
Apr 24 '15 at 19:44




Worked out perfectly, thank you :)
– Somebody
Apr 24 '15 at 19:44










1 Answer
1






active

oldest

votes

















up vote
0
down vote













For CRT you need to use moduli $9,25,13$ not $3,5,13$



You want the l.c.m. of the moduli to be $2925$ in order to get the result modulo $2925$, and you want them pairwise coprime so you can apply CRT.



Thanks to Bill Dubuque for the answer.






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%2f1250316%2fchinese-remainder-theorem-solving-a-modulo-with-big-numbers%23new-answer', 'question_page');

    );

    Post as a guest






























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    0
    down vote













    For CRT you need to use moduli $9,25,13$ not $3,5,13$



    You want the l.c.m. of the moduli to be $2925$ in order to get the result modulo $2925$, and you want them pairwise coprime so you can apply CRT.



    Thanks to Bill Dubuque for the answer.






    share|cite|improve this answer


























      up vote
      0
      down vote













      For CRT you need to use moduli $9,25,13$ not $3,5,13$



      You want the l.c.m. of the moduli to be $2925$ in order to get the result modulo $2925$, and you want them pairwise coprime so you can apply CRT.



      Thanks to Bill Dubuque for the answer.






      share|cite|improve this answer
























        up vote
        0
        down vote










        up vote
        0
        down vote









        For CRT you need to use moduli $9,25,13$ not $3,5,13$



        You want the l.c.m. of the moduli to be $2925$ in order to get the result modulo $2925$, and you want them pairwise coprime so you can apply CRT.



        Thanks to Bill Dubuque for the answer.






        share|cite|improve this answer














        For CRT you need to use moduli $9,25,13$ not $3,5,13$



        You want the l.c.m. of the moduli to be $2925$ in order to get the result modulo $2925$, and you want them pairwise coprime so you can apply CRT.



        Thanks to Bill Dubuque for the answer.







        share|cite|improve this answer














        share|cite|improve this answer



        share|cite|improve this answer








        edited Aug 20 at 12:25









        JayTuma

        1,333118




        1,333118










        answered Apr 24 '15 at 19:48









        Somebody

        1048




        1048






















             

            draft saved


            draft discarded


























             


            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f1250316%2fchinese-remainder-theorem-solving-a-modulo-with-big-numbers%23new-answer', 'question_page');

            );

            Post as a guest













































































            這個網誌中的熱門文章

            How to combine Bézier curves to a surface?

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

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