Week 9: Number Theory Flashcards

1
Q

division

A
  • let a and b be two integers with a not equal to 0
  • we say that a divides b if there is an integer k such that b = ka
  • we write a | b if a divides b
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

notation of division

A
  • “a divides b” is denoted by a | b (ex. 3 | 21)
  • 3 is a factor of 21, 3 is a divisor of 21, 21 is a multiple of 3
  • “a does not divide b” is denoted by a ∤b (| with slash in it) (ex. 3 ∤ 20)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

division - theorem 1 (3 things)

A
  • let a, b, c be integers where a is not equal to 0
  • if a ∣ b and a ∣ c, then a ∣ (b + c)
  • If a ∣ b, then a ∣ bc for all integers c
  • If a ∣ b and b ∣ c, then a ∣ c
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

proof for part a of theorem 1: if a | b and a |c, then a | (b + c)

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

proof for part b of theorem 1: if a | b and a |bc for all integers c

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

proof for part c of theorem 1: if a | b and b | c, then a | c

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

the division algorithm

A
  • let a be an integer and d a POSITIVE integer
  • then there are unique ints q and r with 0 ≤ r < d, such that a = dq + r
  • a is dividend, d divisor, q quotient, r remainder
  • notation: q = a div d, r = a mod d
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

modular arithmetic

A
  • let a and b be integer and M is a positive integer
  • say that a is congruent to b modulo M if M divides a - b
  • we shall write a ≡ b (mod M) if and only if M | (a – b)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

modular exponentiation

A
  • can apply modular arithmetic rules on exponents
  • break down the exponent according to binary
  • review with videos/something to understand
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

fast modular exponentiation

A

procedure modular_exp(b, n = 𝑎𝑘−1𝑎𝑘−2 … 𝑎1𝑎0 2 , m):
# 𝑎𝑘−1𝑎𝑘−2 … 𝑎1𝑎0 2 is the binary representation of n
x = 1
power = b % m
for i = 0 to (k-1)
if a[i] == 1
then x := (x * power) % m
power := (power * power) % m
return x
#x equals 𝑏𝑛 𝑚𝑜𝑑 𝑚
12

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

primes

A
  • a prime number p is an integer greater than 1 that is divisible ONLY by one and itself
  • there are an infinite number of prime number
  • ex. 2, 3, 5, 7, 11, 13…
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

composite

A
  • term for a number that is not prime
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

fundamental theorem of arithmetics

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

primes - theorem 1

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

primes - lemma 2

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

sieve of eratosthenes

A
  • used to find all primes not exceeding a specified positive integer
  • can write out all the numbers, go number by number, and remove anything that is divisible by that number
  • will be left with prime numbers
  • can be implemented with code
17
Q

greatest common divisors

A
  • the largest divisor that divides both m and n is called the greatest common divisor of m and m
  • denoted as gcd(m, n)
18
Q

euclidean algorithm

A
  • Let a = bq + r, where a, b, q, and r are integers
  • Suppose x ∣ a and x ∣ b, then x ∣ r (since r = a – bq)
  • any common divisor of a and b is also a common divisor of b and r
    2) Suppose y ∣ b and y∣ r, then y | a (since a = bq + r)
  • any common divisor of b and r is also a common divisor of a and b
  • then gcd(a,b) = gcd(b, r)
19
Q

euclidean algorithm implementation

A

procedure gcd (a, b: positive integers):
x := a
y := b
while y > 0
r := x mod y
x := y
y := r
return x
# x equals to gcd(a, b)

20
Q

bezout’s theorem

21
Q

hasing functions

A
  • one needs a fast method of locating a given record in a huge set of records
  • hashing is a possible solution, where every record has a unique key k, and a hashing function h(k) maps the set of keys into the available memory locations
  • most common function is h(k) = k mod M (M is memory size)
22
Q

pseudo random number generator

23
Q

classical cryptography

24
Q

caeser cipher

25
Q

the encryption function

26
Q

the decryption function

27
Q

the RSA cryptosystem

28
Q

preparation of public and private keys in RSA

29
Q

mathematics behind RSA - inverse modulo N

30
Q

the Chinese remainder theorem

31
Q

Fermat’s little theorem

32
Q

properties of modular arithmetic (4 things)

A
  • If a ≡ b (mod M) and c ≡ d (mod M)
  • a + c ≡ b + d (mod M)
  • ac ≡ bd (mod M)
  • (a + b) mod M = ((a mod M) + (b mod M)) mod M
  • (ab) mod M = ((a mod M) x (b mod M)) mod M
33
Q

relatively prime

A
  • integer of a and b are relatively prime if their greatest common divisor is 1
  • ex. gcd(25, 36) = 1