How is a positive integer denoted?
N
How is a prime denoted?
p
What is Zn?
The set of integers (0, 1, …, N-1}
How do we return to the correct range of Zn values?
Add or subtract k.N to get back into the range.
What is Zm?
Modulus which is:
What is Bezout’s identity?
For all non-zero x, y in Z, there exists a,b in Z such that
ax + by = gcd(x, y)
GCD = greatest common divisor
What is an efficient algorithm to find GCDs?
Extended Euclidian Algorithm
How can GCDs be found with Sage?
do this