Edgar SIMO-SERRA
Definition. gcd(a,b)::=
the greatest common divisor of a
and b
Definition. a
and b
are relatively prime if gcd(a,b)=1
Definition. x
is a congruent to y
modulo n
: x≡y(modn)⟺n∣(x−y)
Definition. The multiplicative inverse of xmodn
is a number x−1∈{0,1,…,n−1}
s.t. xx−1≡1(modn)
Definition. (Euler’s Totient Function) ϕ(n)
denotes the number of integers in 1,2,3,…,n−1
that are relatively prime to n
Euler’s Theorem. gcd(n,k)=1⟹kϕ(n)≡1(modn)
Fermat’s (Little) Theorem. Suppose p
is prime and k∈{1,2,…,p−1}
, then kp−1≡1(modp)