Download Multiplicative Inverse

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Document related concepts

Proofs of Fermat's little theorem wikipedia , lookup

Algorithm wikipedia , lookup

Collatz conjecture wikipedia , lookup

Mathematics of radio engineering wikipedia , lookup

Factorization of polynomials over finite fields wikipedia , lookup

Addition wikipedia , lookup

Elementary mathematics wikipedia , lookup

Algebra wikipedia , lookup

Arithmetic wikipedia , lookup

Transcript
Multiplicative Inverse
Multiplicative Inverse
In Zn, two numbers a and b are the multiplicative inverse of each
other if
Note
In modular arithmetic, an integer may or
may not have a multiplicative inverse.
When it does, the product of the integer and
its multiplicative inverse is congruent to 1
modulo n.
2.2
Continued
Steps used in Extend Euclidian Algorithm :
1. If gcd (n,b)==1 ,then go to no.2
else there is no multplictive inverse for b.
2. find the Multiplictive inverse.
Continued
Example 2.22
Find the multiplicative inverse of 8 in Z10.
Solution
There is no multiplicative inverse because gcd (10
10,, 8) = 2 ≠ 1. In
other words, we cannot find any number between 0 and 9 such
that when multiplied by 8, the result is congruent to 1.
Example 2.23
Find all multiplicative inverses in Z10.
Solution
There are only three pairs:
pairs: (1, 1), (3, 7) and (9, 9). The numbers
0, 2, 4, 5, 6, and 8 do not have a multiplicative inverse
inverse..
2.4
Continued
Note
The extended Euclidean algorithm finds the
multiplicative inverses of b in Zn when n and
b are given and
gcd (n, b) = 1.
The multiplicative inverse of b is the value
of t after being mapped to Zn.
2.5
Continued
Figure 2.15 Using extended Euclidean algorithm to
find multiplicative inverse
2.6
Continued
Example 2.25
Find the multiplicative inverse of 11 in Z26.
Solution
The gcd (26
26,, 11
11)) is 1
The inverse of 11 is −7 -7 mod 26 = 19
19..
2.7
Continued
Example 2.26
Find the multiplicative inverse of 23 in Z100.
100,, 23
23)) is 1
Solution The gcd (100
The inverse of 23 is −13 -13 mod 100
100== 87
87..
2.8