Using the Euclidean Algorithm how to find the inverse of 41 in Z(131)How to use the Extended Euclidean Algorithm manually?Solving linear congruences by hand: modular inverses, fractionsModulus of FractionEuclidean Algorithm for Modular Inverse, with negative numbersUsing Extended Euclidean Algorithm to find multiplicative inverseeuclidean algorithm iteration problemDoes the Euclidean Algorithm always find the minimum a,b?Euclidean Algorithm help!How do the Euclidean and extended Euclidean algorithms work?Using Euclidean Algorithm to solve the congruenceEuclidean Algorithm for polynomialsComputing linear congruence - Euclidean algorithmExtended Euclidean Algorithm yielding incorrect modular inverse

Was there ever a treaty between 2 entities with significantly different translations to the detriment of one party?

Using `With[...]` with a list specification as a variable

Cultural before-and-afters

How would one country purchase another?

Custom division symbol

Why can't an Airbus A330 dump fuel in an emergency?

Avoiding racist tropes in fantasy

Why in most German places is the church the tallest building?

Does norwegian.no airline overbook flights?

What is the difference between true neutral and unaligned?

Is “I am getting married with my sister” ambiguous?

I got kicked out from graduate school in the past. How do I include this on my CV?

Why different interest rates for checking and savings?

Checking a beta regression model via glmmTMB with DHARMa package

How do I request a longer than normal leave of absence period for my wedding?

Is it possible to account for motor dead-band in a Laplace model of a feedback DC motor system?

Singleton Design Pattern implementation in a not traditional way

What is the best option for High availability on a data warehouse?

How should I face my manager if I make a mistake because a senior coworker explained something incorrectly to me?

Which note goes on which side of the stem?

LeetCode: Pascal's Triangle C#

Did it use to be possible to target a zone?

Start from ones

Sun setting in East!



Using the Euclidean Algorithm how to find the inverse of 41 in Z(131)


How to use the Extended Euclidean Algorithm manually?Solving linear congruences by hand: modular inverses, fractionsModulus of FractionEuclidean Algorithm for Modular Inverse, with negative numbersUsing Extended Euclidean Algorithm to find multiplicative inverseeuclidean algorithm iteration problemDoes the Euclidean Algorithm always find the minimum a,b?Euclidean Algorithm help!How do the Euclidean and extended Euclidean algorithms work?Using Euclidean Algorithm to solve the congruenceEuclidean Algorithm for polynomialsComputing linear congruence - Euclidean algorithmExtended Euclidean Algorithm yielding incorrect modular inverse






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








2












$begingroup$


I need to find the inverse of 41 in the integers of Z131 and am confused as to how to go about it.



Do I use the Euclidean Algorithm as 41 mod 131?










share|cite|improve this question









$endgroup$













  • $begingroup$
    Your textbook doesn't show you how?
    $endgroup$
    – fleablood
    8 hours ago










  • $begingroup$
    Türk müsün? Türksen Chat'e gel. Oradan direkt yardımcı olayım
    $endgroup$
    – İbrahim İpek
    7 hours ago

















2












$begingroup$


I need to find the inverse of 41 in the integers of Z131 and am confused as to how to go about it.



Do I use the Euclidean Algorithm as 41 mod 131?










share|cite|improve this question









$endgroup$













  • $begingroup$
    Your textbook doesn't show you how?
    $endgroup$
    – fleablood
    8 hours ago










  • $begingroup$
    Türk müsün? Türksen Chat'e gel. Oradan direkt yardımcı olayım
    $endgroup$
    – İbrahim İpek
    7 hours ago













2












2








2


1



$begingroup$


I need to find the inverse of 41 in the integers of Z131 and am confused as to how to go about it.



Do I use the Euclidean Algorithm as 41 mod 131?










share|cite|improve this question









$endgroup$




I need to find the inverse of 41 in the integers of Z131 and am confused as to how to go about it.



Do I use the Euclidean Algorithm as 41 mod 131?







modular-arithmetic euclidean-algorithm






share|cite|improve this question













share|cite|improve this question











share|cite|improve this question




share|cite|improve this question










asked 8 hours ago









C.CamC.Cam

242 bronze badges




242 bronze badges














  • $begingroup$
    Your textbook doesn't show you how?
    $endgroup$
    – fleablood
    8 hours ago










  • $begingroup$
    Türk müsün? Türksen Chat'e gel. Oradan direkt yardımcı olayım
    $endgroup$
    – İbrahim İpek
    7 hours ago
















  • $begingroup$
    Your textbook doesn't show you how?
    $endgroup$
    – fleablood
    8 hours ago










  • $begingroup$
    Türk müsün? Türksen Chat'e gel. Oradan direkt yardımcı olayım
    $endgroup$
    – İbrahim İpek
    7 hours ago















$begingroup$
Your textbook doesn't show you how?
$endgroup$
– fleablood
8 hours ago




$begingroup$
Your textbook doesn't show you how?
$endgroup$
– fleablood
8 hours ago












$begingroup$
Türk müsün? Türksen Chat'e gel. Oradan direkt yardımcı olayım
$endgroup$
– İbrahim İpek
7 hours ago




$begingroup$
Türk müsün? Türksen Chat'e gel. Oradan direkt yardımcı olayım
$endgroup$
– İbrahim İpek
7 hours ago










5 Answers
5






active

oldest

votes


















3













$begingroup$

To find an inverse we need to find a solution to the following equation (since if you take $pmod131$ this equation will give you $41X equiv 1$ for modulo $131$):



$$41X + 131Y = 1$$



We will find some pair $(X, Y)$ that satisfies this linear Diophantine equation by extended euclidean algorithm. First, we calculate the GCD of the pair $(131, 41)$.



$$(131, 41) = (41, 8) = (8, 1) = 1$$



This means we have a solution since GCD divides the result of Diophantine equation. Now we go the other way around. We have:



$$131 = 3 cdot 41 + 8,$$
$$41 = 5 cdot 8 + 1,$$
$$8 = 3 cdot 1 + 0.$$



We will rewrite them in the following form:



$$131 - 3 cdot 41 = 8,$$
$$41 - 5 cdot 8 = 1.$$



We are going to substitute $131 - 3 cdot 41$ for $8$:



$$41 - 5 cdot (131 - 3 cdot 41) = 1$$
$$16 cdot 41 - 5 cdot 131 = 1$$



Hence our pair of solution is $(16, -5) = (x, y)$. Yet don't forget there are infinitely many other solutions in this case which you can derive by one initial solution. But because they are all in the congruence class $[16]_131$ (AKA the set of numbers which leave the remainder $16$ when divided by $131$), they aren't different at all for the modular arithmetic.



$X equiv 16 pmod131$ will be our inverse.






share|cite|improve this answer











$endgroup$






















    2













    $begingroup$

    $131 = 3*41 +8$ so $8 = 131 - 3*41$.



    $41 = 5*8 + 1$ so $1 = 41- 5*8 = 41 - 5(131 - 3*41)= 16*41 - 5*131$



    So $16*41 - 5*131 =1$.



    Or $16*41 = 1 + 5*131$



    Or $16*41 equiv 1 pmod 131$.



    So $16$ is the multiplicative inverse $mod 131$ of $41$.






    share|cite|improve this answer









    $endgroup$






















      1













      $begingroup$

      In this case, the extended Euclidean algorithm is particularly fast:



      beginarrayrrrr
      r_i&u_i&v_i&q_i\
      hline
      131 & 0 & 1\
      41 & 1 & 0 & 3\
      hline
      8 & -3 & 1 & 5\
      1 & 16 & -5\
      hline
      endarray



      so a Bézout's relation is $$16cdot 41-5cdot131 = 1$$
      and $;41^-1equiv 16bmod 131$.






      share|cite|improve this answer









      $endgroup$






















        0













        $begingroup$

        Below is a calculateion of $ color#0a0x equiv 41^-1pmod!131,$
        by the forward extended Euclidean Algorithm.



        $ beginarrayrr
        [![1]!] &131, xequiv, 0 \
        [![2]!] & color#0a041,x equiv, 1\
        [![1]!]-3,[![2]!] rightarrow [![3]!] & 8,x equiv -3!!! \
        [![2]!]-5,[![4]!] rightarrow [![4]!] & bbox[5px,border:1px solid #c00]x equiv 16!!!
        endarray$




        Or $bmod 131!:, dfrac141equiv dfrac3123equiv dfrac3-8equiv dfrac-128-8equiv, bbox[5px,border:1px solid #c00]16 $ by Gauss's algorithm



        Beware $ $ Modular fraction arithmetic is valid only for fractions with denominator coprime to the modulus. See here for further discussion.






        share|cite|improve this answer











        $endgroup$






















          -1













          $begingroup$

          Hint: You use the extended Euclidean algorithm to find $x,y in mathbb Z$ such that $41x+131y=1$.






          share|cite|improve this answer











          $endgroup$

















            Your Answer








            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',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            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%2f3331449%2fusing-the-euclidean-algorithm-how-to-find-the-inverse-of-41-in-z131%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            5 Answers
            5






            active

            oldest

            votes








            5 Answers
            5






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            3













            $begingroup$

            To find an inverse we need to find a solution to the following equation (since if you take $pmod131$ this equation will give you $41X equiv 1$ for modulo $131$):



            $$41X + 131Y = 1$$



            We will find some pair $(X, Y)$ that satisfies this linear Diophantine equation by extended euclidean algorithm. First, we calculate the GCD of the pair $(131, 41)$.



            $$(131, 41) = (41, 8) = (8, 1) = 1$$



            This means we have a solution since GCD divides the result of Diophantine equation. Now we go the other way around. We have:



            $$131 = 3 cdot 41 + 8,$$
            $$41 = 5 cdot 8 + 1,$$
            $$8 = 3 cdot 1 + 0.$$



            We will rewrite them in the following form:



            $$131 - 3 cdot 41 = 8,$$
            $$41 - 5 cdot 8 = 1.$$



            We are going to substitute $131 - 3 cdot 41$ for $8$:



            $$41 - 5 cdot (131 - 3 cdot 41) = 1$$
            $$16 cdot 41 - 5 cdot 131 = 1$$



            Hence our pair of solution is $(16, -5) = (x, y)$. Yet don't forget there are infinitely many other solutions in this case which you can derive by one initial solution. But because they are all in the congruence class $[16]_131$ (AKA the set of numbers which leave the remainder $16$ when divided by $131$), they aren't different at all for the modular arithmetic.



            $X equiv 16 pmod131$ will be our inverse.






            share|cite|improve this answer











            $endgroup$



















              3













              $begingroup$

              To find an inverse we need to find a solution to the following equation (since if you take $pmod131$ this equation will give you $41X equiv 1$ for modulo $131$):



              $$41X + 131Y = 1$$



              We will find some pair $(X, Y)$ that satisfies this linear Diophantine equation by extended euclidean algorithm. First, we calculate the GCD of the pair $(131, 41)$.



              $$(131, 41) = (41, 8) = (8, 1) = 1$$



              This means we have a solution since GCD divides the result of Diophantine equation. Now we go the other way around. We have:



              $$131 = 3 cdot 41 + 8,$$
              $$41 = 5 cdot 8 + 1,$$
              $$8 = 3 cdot 1 + 0.$$



              We will rewrite them in the following form:



              $$131 - 3 cdot 41 = 8,$$
              $$41 - 5 cdot 8 = 1.$$



              We are going to substitute $131 - 3 cdot 41$ for $8$:



              $$41 - 5 cdot (131 - 3 cdot 41) = 1$$
              $$16 cdot 41 - 5 cdot 131 = 1$$



              Hence our pair of solution is $(16, -5) = (x, y)$. Yet don't forget there are infinitely many other solutions in this case which you can derive by one initial solution. But because they are all in the congruence class $[16]_131$ (AKA the set of numbers which leave the remainder $16$ when divided by $131$), they aren't different at all for the modular arithmetic.



              $X equiv 16 pmod131$ will be our inverse.






              share|cite|improve this answer











              $endgroup$

















                3














                3










                3







                $begingroup$

                To find an inverse we need to find a solution to the following equation (since if you take $pmod131$ this equation will give you $41X equiv 1$ for modulo $131$):



                $$41X + 131Y = 1$$



                We will find some pair $(X, Y)$ that satisfies this linear Diophantine equation by extended euclidean algorithm. First, we calculate the GCD of the pair $(131, 41)$.



                $$(131, 41) = (41, 8) = (8, 1) = 1$$



                This means we have a solution since GCD divides the result of Diophantine equation. Now we go the other way around. We have:



                $$131 = 3 cdot 41 + 8,$$
                $$41 = 5 cdot 8 + 1,$$
                $$8 = 3 cdot 1 + 0.$$



                We will rewrite them in the following form:



                $$131 - 3 cdot 41 = 8,$$
                $$41 - 5 cdot 8 = 1.$$



                We are going to substitute $131 - 3 cdot 41$ for $8$:



                $$41 - 5 cdot (131 - 3 cdot 41) = 1$$
                $$16 cdot 41 - 5 cdot 131 = 1$$



                Hence our pair of solution is $(16, -5) = (x, y)$. Yet don't forget there are infinitely many other solutions in this case which you can derive by one initial solution. But because they are all in the congruence class $[16]_131$ (AKA the set of numbers which leave the remainder $16$ when divided by $131$), they aren't different at all for the modular arithmetic.



                $X equiv 16 pmod131$ will be our inverse.






                share|cite|improve this answer











                $endgroup$



                To find an inverse we need to find a solution to the following equation (since if you take $pmod131$ this equation will give you $41X equiv 1$ for modulo $131$):



                $$41X + 131Y = 1$$



                We will find some pair $(X, Y)$ that satisfies this linear Diophantine equation by extended euclidean algorithm. First, we calculate the GCD of the pair $(131, 41)$.



                $$(131, 41) = (41, 8) = (8, 1) = 1$$



                This means we have a solution since GCD divides the result of Diophantine equation. Now we go the other way around. We have:



                $$131 = 3 cdot 41 + 8,$$
                $$41 = 5 cdot 8 + 1,$$
                $$8 = 3 cdot 1 + 0.$$



                We will rewrite them in the following form:



                $$131 - 3 cdot 41 = 8,$$
                $$41 - 5 cdot 8 = 1.$$



                We are going to substitute $131 - 3 cdot 41$ for $8$:



                $$41 - 5 cdot (131 - 3 cdot 41) = 1$$
                $$16 cdot 41 - 5 cdot 131 = 1$$



                Hence our pair of solution is $(16, -5) = (x, y)$. Yet don't forget there are infinitely many other solutions in this case which you can derive by one initial solution. But because they are all in the congruence class $[16]_131$ (AKA the set of numbers which leave the remainder $16$ when divided by $131$), they aren't different at all for the modular arithmetic.



                $X equiv 16 pmod131$ will be our inverse.







                share|cite|improve this answer














                share|cite|improve this answer



                share|cite|improve this answer








                edited 7 hours ago

























                answered 7 hours ago









                İbrahim İpekİbrahim İpek

                3982 silver badges13 bronze badges




                3982 silver badges13 bronze badges


























                    2













                    $begingroup$

                    $131 = 3*41 +8$ so $8 = 131 - 3*41$.



                    $41 = 5*8 + 1$ so $1 = 41- 5*8 = 41 - 5(131 - 3*41)= 16*41 - 5*131$



                    So $16*41 - 5*131 =1$.



                    Or $16*41 = 1 + 5*131$



                    Or $16*41 equiv 1 pmod 131$.



                    So $16$ is the multiplicative inverse $mod 131$ of $41$.






                    share|cite|improve this answer









                    $endgroup$



















                      2













                      $begingroup$

                      $131 = 3*41 +8$ so $8 = 131 - 3*41$.



                      $41 = 5*8 + 1$ so $1 = 41- 5*8 = 41 - 5(131 - 3*41)= 16*41 - 5*131$



                      So $16*41 - 5*131 =1$.



                      Or $16*41 = 1 + 5*131$



                      Or $16*41 equiv 1 pmod 131$.



                      So $16$ is the multiplicative inverse $mod 131$ of $41$.






                      share|cite|improve this answer









                      $endgroup$

















                        2














                        2










                        2







                        $begingroup$

                        $131 = 3*41 +8$ so $8 = 131 - 3*41$.



                        $41 = 5*8 + 1$ so $1 = 41- 5*8 = 41 - 5(131 - 3*41)= 16*41 - 5*131$



                        So $16*41 - 5*131 =1$.



                        Or $16*41 = 1 + 5*131$



                        Or $16*41 equiv 1 pmod 131$.



                        So $16$ is the multiplicative inverse $mod 131$ of $41$.






                        share|cite|improve this answer









                        $endgroup$



                        $131 = 3*41 +8$ so $8 = 131 - 3*41$.



                        $41 = 5*8 + 1$ so $1 = 41- 5*8 = 41 - 5(131 - 3*41)= 16*41 - 5*131$



                        So $16*41 - 5*131 =1$.



                        Or $16*41 = 1 + 5*131$



                        Or $16*41 equiv 1 pmod 131$.



                        So $16$ is the multiplicative inverse $mod 131$ of $41$.







                        share|cite|improve this answer












                        share|cite|improve this answer



                        share|cite|improve this answer










                        answered 8 hours ago









                        fleabloodfleablood

                        79.3k2 gold badges31 silver badges98 bronze badges




                        79.3k2 gold badges31 silver badges98 bronze badges
























                            1













                            $begingroup$

                            In this case, the extended Euclidean algorithm is particularly fast:



                            beginarrayrrrr
                            r_i&u_i&v_i&q_i\
                            hline
                            131 & 0 & 1\
                            41 & 1 & 0 & 3\
                            hline
                            8 & -3 & 1 & 5\
                            1 & 16 & -5\
                            hline
                            endarray



                            so a Bézout's relation is $$16cdot 41-5cdot131 = 1$$
                            and $;41^-1equiv 16bmod 131$.






                            share|cite|improve this answer









                            $endgroup$



















                              1













                              $begingroup$

                              In this case, the extended Euclidean algorithm is particularly fast:



                              beginarrayrrrr
                              r_i&u_i&v_i&q_i\
                              hline
                              131 & 0 & 1\
                              41 & 1 & 0 & 3\
                              hline
                              8 & -3 & 1 & 5\
                              1 & 16 & -5\
                              hline
                              endarray



                              so a Bézout's relation is $$16cdot 41-5cdot131 = 1$$
                              and $;41^-1equiv 16bmod 131$.






                              share|cite|improve this answer









                              $endgroup$

















                                1














                                1










                                1







                                $begingroup$

                                In this case, the extended Euclidean algorithm is particularly fast:



                                beginarrayrrrr
                                r_i&u_i&v_i&q_i\
                                hline
                                131 & 0 & 1\
                                41 & 1 & 0 & 3\
                                hline
                                8 & -3 & 1 & 5\
                                1 & 16 & -5\
                                hline
                                endarray



                                so a Bézout's relation is $$16cdot 41-5cdot131 = 1$$
                                and $;41^-1equiv 16bmod 131$.






                                share|cite|improve this answer









                                $endgroup$



                                In this case, the extended Euclidean algorithm is particularly fast:



                                beginarrayrrrr
                                r_i&u_i&v_i&q_i\
                                hline
                                131 & 0 & 1\
                                41 & 1 & 0 & 3\
                                hline
                                8 & -3 & 1 & 5\
                                1 & 16 & -5\
                                hline
                                endarray



                                so a Bézout's relation is $$16cdot 41-5cdot131 = 1$$
                                and $;41^-1equiv 16bmod 131$.







                                share|cite|improve this answer












                                share|cite|improve this answer



                                share|cite|improve this answer










                                answered 8 hours ago









                                BernardBernard

                                131k7 gold badges43 silver badges123 bronze badges




                                131k7 gold badges43 silver badges123 bronze badges
























                                    0













                                    $begingroup$

                                    Below is a calculateion of $ color#0a0x equiv 41^-1pmod!131,$
                                    by the forward extended Euclidean Algorithm.



                                    $ beginarrayrr
                                    [![1]!] &131, xequiv, 0 \
                                    [![2]!] & color#0a041,x equiv, 1\
                                    [![1]!]-3,[![2]!] rightarrow [![3]!] & 8,x equiv -3!!! \
                                    [![2]!]-5,[![4]!] rightarrow [![4]!] & bbox[5px,border:1px solid #c00]x equiv 16!!!
                                    endarray$




                                    Or $bmod 131!:, dfrac141equiv dfrac3123equiv dfrac3-8equiv dfrac-128-8equiv, bbox[5px,border:1px solid #c00]16 $ by Gauss's algorithm



                                    Beware $ $ Modular fraction arithmetic is valid only for fractions with denominator coprime to the modulus. See here for further discussion.






                                    share|cite|improve this answer











                                    $endgroup$



















                                      0













                                      $begingroup$

                                      Below is a calculateion of $ color#0a0x equiv 41^-1pmod!131,$
                                      by the forward extended Euclidean Algorithm.



                                      $ beginarrayrr
                                      [![1]!] &131, xequiv, 0 \
                                      [![2]!] & color#0a041,x equiv, 1\
                                      [![1]!]-3,[![2]!] rightarrow [![3]!] & 8,x equiv -3!!! \
                                      [![2]!]-5,[![4]!] rightarrow [![4]!] & bbox[5px,border:1px solid #c00]x equiv 16!!!
                                      endarray$




                                      Or $bmod 131!:, dfrac141equiv dfrac3123equiv dfrac3-8equiv dfrac-128-8equiv, bbox[5px,border:1px solid #c00]16 $ by Gauss's algorithm



                                      Beware $ $ Modular fraction arithmetic is valid only for fractions with denominator coprime to the modulus. See here for further discussion.






                                      share|cite|improve this answer











                                      $endgroup$

















                                        0














                                        0










                                        0







                                        $begingroup$

                                        Below is a calculateion of $ color#0a0x equiv 41^-1pmod!131,$
                                        by the forward extended Euclidean Algorithm.



                                        $ beginarrayrr
                                        [![1]!] &131, xequiv, 0 \
                                        [![2]!] & color#0a041,x equiv, 1\
                                        [![1]!]-3,[![2]!] rightarrow [![3]!] & 8,x equiv -3!!! \
                                        [![2]!]-5,[![4]!] rightarrow [![4]!] & bbox[5px,border:1px solid #c00]x equiv 16!!!
                                        endarray$




                                        Or $bmod 131!:, dfrac141equiv dfrac3123equiv dfrac3-8equiv dfrac-128-8equiv, bbox[5px,border:1px solid #c00]16 $ by Gauss's algorithm



                                        Beware $ $ Modular fraction arithmetic is valid only for fractions with denominator coprime to the modulus. See here for further discussion.






                                        share|cite|improve this answer











                                        $endgroup$



                                        Below is a calculateion of $ color#0a0x equiv 41^-1pmod!131,$
                                        by the forward extended Euclidean Algorithm.



                                        $ beginarrayrr
                                        [![1]!] &131, xequiv, 0 \
                                        [![2]!] & color#0a041,x equiv, 1\
                                        [![1]!]-3,[![2]!] rightarrow [![3]!] & 8,x equiv -3!!! \
                                        [![2]!]-5,[![4]!] rightarrow [![4]!] & bbox[5px,border:1px solid #c00]x equiv 16!!!
                                        endarray$




                                        Or $bmod 131!:, dfrac141equiv dfrac3123equiv dfrac3-8equiv dfrac-128-8equiv, bbox[5px,border:1px solid #c00]16 $ by Gauss's algorithm



                                        Beware $ $ Modular fraction arithmetic is valid only for fractions with denominator coprime to the modulus. See here for further discussion.







                                        share|cite|improve this answer














                                        share|cite|improve this answer



                                        share|cite|improve this answer








                                        edited 5 hours ago

























                                        answered 5 hours ago









                                        Bill DubuqueBill Dubuque

                                        222k30 gold badges210 silver badges682 bronze badges




                                        222k30 gold badges210 silver badges682 bronze badges
























                                            -1













                                            $begingroup$

                                            Hint: You use the extended Euclidean algorithm to find $x,y in mathbb Z$ such that $41x+131y=1$.






                                            share|cite|improve this answer











                                            $endgroup$



















                                              -1













                                              $begingroup$

                                              Hint: You use the extended Euclidean algorithm to find $x,y in mathbb Z$ such that $41x+131y=1$.






                                              share|cite|improve this answer











                                              $endgroup$

















                                                -1














                                                -1










                                                -1







                                                $begingroup$

                                                Hint: You use the extended Euclidean algorithm to find $x,y in mathbb Z$ such that $41x+131y=1$.






                                                share|cite|improve this answer











                                                $endgroup$



                                                Hint: You use the extended Euclidean algorithm to find $x,y in mathbb Z$ such that $41x+131y=1$.







                                                share|cite|improve this answer














                                                share|cite|improve this answer



                                                share|cite|improve this answer








                                                edited 4 hours ago

























                                                answered 8 hours ago









                                                lhflhf

                                                173k11 gold badges179 silver badges418 bronze badges




                                                173k11 gold badges179 silver badges418 bronze badges






























                                                    draft saved

                                                    draft discarded
















































                                                    Thanks for contributing an answer to Mathematics Stack Exchange!


                                                    • Please be sure to answer the question. Provide details and share your research!

                                                    But avoid


                                                    • Asking for help, clarification, or responding to other answers.

                                                    • Making statements based on opinion; back them up with references or personal experience.

                                                    Use MathJax to format equations. MathJax reference.


                                                    To learn more, see our tips on writing great answers.




                                                    draft saved


                                                    draft discarded














                                                    StackExchange.ready(
                                                    function ()
                                                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3331449%2fusing-the-euclidean-algorithm-how-to-find-the-inverse-of-41-in-z131%23new-answer', 'question_page');

                                                    );

                                                    Post as a guest















                                                    Required, but never shown





















































                                                    Required, but never shown














                                                    Required, but never shown












                                                    Required, but never shown







                                                    Required, but never shown

































                                                    Required, but never shown














                                                    Required, but never shown












                                                    Required, but never shown







                                                    Required, but never shown







                                                    Popular posts from this blog

                                                    19. јануар Садржај Догађаји Рођења Смрти Празници и дани сећања Види још Референце Мени за навигацијуу

                                                    Israel Cuprins Etimologie | Istorie | Geografie | Politică | Demografie | Educație | Economie | Cultură | Note explicative | Note bibliografice | Bibliografie | Legături externe | Meniu de navigaresite web oficialfacebooktweeterGoogle+Instagramcanal YouTubeInstagramtextmodificaremodificarewww.technion.ac.ilnew.huji.ac.ilwww.weizmann.ac.ilwww1.biu.ac.ilenglish.tau.ac.ilwww.haifa.ac.ilin.bgu.ac.ilwww.openu.ac.ilwww.ariel.ac.ilCIA FactbookHarta Israelului"Negotiating Jerusalem," Palestine–Israel JournalThe Schizoid Nature of Modern Hebrew: A Slavic Language in Search of a Semitic Past„Arabic in Israel: an official language and a cultural bridge”„Latest Population Statistics for Israel”„Israel Population”„Tables”„Report for Selected Countries and Subjects”Human Development Report 2016: Human Development for Everyone„Distribution of family income - Gini index”The World FactbookJerusalem Law„Israel”„Israel”„Zionist Leaders: David Ben-Gurion 1886–1973”„The status of Jerusalem”„Analysis: Kadima's big plans”„Israel's Hard-Learned Lessons”„The Legacy of Undefined Borders, Tel Aviv Notes No. 40, 5 iunie 2002”„Israel Journal: A Land Without Borders”„Population”„Israel closes decade with population of 7.5 million”Time Series-DataBank„Selected Statistics on Jerusalem Day 2007 (Hebrew)”Golan belongs to Syria, Druze protestGlobal Survey 2006: Middle East Progress Amid Global Gains in FreedomWHO: Life expectancy in Israel among highest in the worldInternational Monetary Fund, World Economic Outlook Database, April 2011: Nominal GDP list of countries. Data for the year 2010.„Israel's accession to the OECD”Popular Opinion„On the Move”Hosea 12:5„Walking the Bible Timeline”„Palestine: History”„Return to Zion”An invention called 'the Jewish people' – Haaretz – Israel NewsoriginalJewish and Non-Jewish Population of Palestine-Israel (1517–2004)ImmigrationJewishvirtuallibrary.orgChapter One: The Heralders of Zionism„The birth of modern Israel: A scrap of paper that changed history”„League of Nations: The Mandate for Palestine, 24 iulie 1922”The Population of Palestine Prior to 1948originalBackground Paper No. 47 (ST/DPI/SER.A/47)History: Foreign DominationTwo Hundred and Seventh Plenary Meeting„Israel (Labor Zionism)”Population, by Religion and Population GroupThe Suez CrisisAdolf EichmannJustice Ministry Reply to Amnesty International Report„The Interregnum”Israel Ministry of Foreign Affairs – The Palestinian National Covenant- July 1968Research on terrorism: trends, achievements & failuresThe Routledge Atlas of the Arab–Israeli conflict: The Complete History of the Struggle and the Efforts to Resolve It"George Habash, Palestinian Terrorism Tactician, Dies at 82."„1973: Arab states attack Israeli forces”Agranat Commission„Has Israel Annexed East Jerusalem?”original„After 4 Years, Intifada Still Smolders”From the End of the Cold War to 2001originalThe Oslo Accords, 1993Israel-PLO Recognition – Exchange of Letters between PM Rabin and Chairman Arafat – Sept 9- 1993Foundation for Middle East PeaceSources of Population Growth: Total Israeli Population and Settler Population, 1991–2003original„Israel marks Rabin assassination”The Wye River Memorandumoriginal„West Bank barrier route disputed, Israeli missile kills 2”"Permanent Ceasefire to Be Based on Creation Of Buffer Zone Free of Armed Personnel Other than UN, Lebanese Forces"„Hezbollah kills 8 soldiers, kidnaps two in offensive on northern border”„Olmert confirms peace talks with Syria”„Battleground Gaza: Israeli ground forces invade the strip”„IDF begins Gaza troop withdrawal, hours after ending 3-week offensive”„THE LAND: Geography and Climate”„Area of districts, sub-districts, natural regions and lakes”„Israel - Geography”„Makhteshim Country”Israel and the Palestinian Territories„Makhtesh Ramon”„The Living Dead Sea”„Temperatures reach record high in Pakistan”„Climate Extremes In Israel”Israel in figures„Deuteronom”„JNF: 240 million trees planted since 1901”„Vegetation of Israel and Neighboring Countries”Environmental Law in Israel„Executive branch”„Israel's election process explained”„The Electoral System in Israel”„Constitution for Israel”„All 120 incoming Knesset members”„Statul ISRAEL”„The Judiciary: The Court System”„Israel's high court unique in region”„Israel and the International Criminal Court: A Legal Battlefield”„Localities and population, by population group, district, sub-district and natural region”„Israel: Districts, Major Cities, Urban Localities & Metropolitan Areas”„Israel-Egypt Relations: Background & Overview of Peace Treaty”„Solana to Haaretz: New Rules of War Needed for Age of Terror”„Israel's Announcement Regarding Settlements”„United Nations Security Council Resolution 497”„Security Council resolution 478 (1980) on the status of Jerusalem”„Arabs will ask U.N. to seek razing of Israeli wall”„Olmert: Willing to trade land for peace”„Mapping Peace between Syria and Israel”„Egypt: Israel must accept the land-for-peace formula”„Israel: Age structure from 2005 to 2015”„Global, regional, and national disability-adjusted life years (DALYs) for 306 diseases and injuries and healthy life expectancy (HALE) for 188 countries, 1990–2013: quantifying the epidemiological transition”10.1016/S0140-6736(15)61340-X„World Health Statistics 2014”„Life expectancy for Israeli men world's 4th highest”„Family Structure and Well-Being Across Israel's Diverse Population”„Fertility among Jewish and Muslim Women in Israel, by Level of Religiosity, 1979-2009”„Israel leaders in birth rate, but poverty major challenge”„Ethnic Groups”„Israel's population: Over 8.5 million”„Israel - Ethnic groups”„Jews, by country of origin and age”„Minority Communities in Israel: Background & Overview”„Israel”„Language in Israel”„Selected Data from the 2011 Social Survey on Mastery of the Hebrew Language and Usage of Languages”„Religions”„5 facts about Israeli Druze, a unique religious and ethnic group”„Israël”Israel Country Study Guide„Haredi city in Negev – blessing or curse?”„New town Harish harbors hopes of being more than another Pleasantville”„List of localities, in alphabetical order”„Muncitorii români, doriți în Israel”„Prietenia româno-israeliană la nevoie se cunoaște”„The Higher Education System in Israel”„Middle East”„Academic Ranking of World Universities 2016”„Israel”„Israel”„Jewish Nobel Prize Winners”„All Nobel Prizes in Literature”„All Nobel Peace Prizes”„All Prizes in Economic Sciences”„All Nobel Prizes in Chemistry”„List of Fields Medallists”„Sakharov Prize”„Țara care și-a sfidat "destinul" și se bate umăr la umăr cu Silicon Valley”„Apple's R&D center in Israel grew to about 800 employees”„Tim Cook: Apple's Herzliya R&D center second-largest in world”„Lecții de economie de la Israel”„Land use”Israel Investment and Business GuideA Country Study: IsraelCentral Bureau of StatisticsFlorin Diaconu, „Kadima: Flexibilitate și pragmatism, dar nici un compromis în chestiuni vitale", în Revista Institutului Diplomatic Român, anul I, numărul I, semestrul I, 2006, pp. 71-72Florin Diaconu, „Likud: Dreapta israeliană constant opusă retrocedării teritoriilor cureite prin luptă în 1967", în Revista Institutului Diplomatic Român, anul I, numărul I, semestrul I, 2006, pp. 73-74MassadaIsraelul a crescut in 50 de ani cât alte state intr-un mileniuIsrael Government PortalIsraelIsraelIsraelmmmmmXX451232cb118646298(data)4027808-634110000 0004 0372 0767n7900328503691455-bb46-37e3-91d2-cb064a35ffcc1003570400564274ge1294033523775214929302638955X146498911146498911

                                                    Кастелфранко ди Сопра Становништво Референце Спољашње везе Мени за навигацију43°37′18″ СГШ; 11°33′32″ ИГД / 43.62156° СГШ; 11.55885° ИГД / 43.62156; 11.5588543°37′18″ СГШ; 11°33′32″ ИГД / 43.62156° СГШ; 11.55885° ИГД / 43.62156; 11.558853179688„The GeoNames geographical database”„Istituto Nazionale di Statistica”проширитиууWorldCat156923403n850174324558639-1cb14643287r(подаци)