Number Theory Flashcards

Introduction to number theory (second year module) 5CCM224A

1
Q

State bezouts lemma

A

Let a and b be integers (not both 0). Then there exists integers u and v such that gcd(a,b)=au+bv

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

What does it mean for two integers to be coprime?

A

the gcd of the two numbers is 1

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

define least common multiples

A

if a and b are integers then a common multiple of a and b is an integer c such that a|c and b|c. If a and b are both non-zero, the least common multiple of a and b is defined to be the smallest positive integer lcm(a,b) which is a common multiple of a and b.

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

What does b|a mean?

A

b divides a - a=qb for some q

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

define greatest common divisor

A

the largest divisor d of a and b such that d|a and d|b => gcd(a,b)=d

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

Euclidean algoritm

A

basically if a=qb+r then gcd(a,b)=gcd(b,r)

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

gcd(a,b)lcm(a,b)=?

A

|ab|

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

when does the linear diophantine equations ax+by=c have solutions?

A

only has solutions when c is a multiple of d=gcd(a,b)

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

How do you solve the linear diophantine equation ax+by=c?

A

(1) find x0, y0, gcd, using the euclidean algorithm a(x0)+b(y0)=d=gcd(a,b)
(2) the full set of solutions is x=x0+k.(b/g), y=y0+k(a/g) for all k∈ℤ

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

define a prime number

A

An integer p>1 is called a prime number if it has no positive divisors other than 1 and p.

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

fundamental theorem of arithmetic

A

every integer n>1 can be expressed uniquely (up to reordering) as a product of primes.

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

state euclids theorem and describe how the proof would go

A

there are infinitely many primes.
Proof by contradiction:
- assume there are finitely many primes
- there is an integer N such that N≥p for all primes p
- consider the integer n=N!+1=1x2x..x(N-1)xN +1
- by the fundamental theorem of arithmetic there is a prime p with p|n
- since p≤N we also have p|N!
- but 1=n-N! so that implies p|1 which is impossible

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

define congruence

A

let m be a non-zero integer, and let a,b∈ℤ. We say that a is congruent to b modulo m if m|(a-b).

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

define a multiplicative group

A

the multiplicative group of integers modulo m which is defined by:
ℤx(m)={ [a]m∈ℤ(m): a,m are coprime}

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

Hensels lemma

A
Let f(x)=a0+a1x+...+anx^n be a polynomial with integer coefficients, let p be a prime and let r be a positive integer. We let f'(x) be the derivative of f(x), so f'(x)=a1+2a2x+...+nanx^(n-1). suppose xr is an integer with 
f(xr)=0 (mod p^r)
and f'(xr)≠0 (mod p)
Then there exists x(r+1)∈ℤ satisfying
f(x(r+1))=0 (mod p^(r+1)) and
x(r+1)=xr (mod p^r)
moreover the x(r+1) satisfying these properties is unique modulo p^(r+1) and we can take x(r+1)=xr-f(xr)u
where u is an inverse of f'(xr) (modp).
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Define the eulers function 𝜙(m)

A

the number of integers a such that 1≤a≤m and gcd(a,m)=1

equivalently 𝜙(m)=|ℤx(m)|

17
Q

p is a prime number

𝜙(p)=?

A

p-1

18
Q

𝜙(p^i)

A

p^(i-1)(p-1)=p^i-p^(i-1)

19
Q

fermat-euler theorem

A

Let a∈ℤ and let m be a positive integer which is coprime to p. Then a^𝜙(m)=1 (mod m)

20
Q

Fermats little theorem

A

Let p be a prime and let a∈ℤ be an integer which is coprime to p. Then a^(p-1)=1 (mod p) ⇒ a^p=a (mod p)

21
Q

order of an element g

A

the smallest positive integer i such that g^i=e

22
Q

Quadratic residue modulo p

A

Let p be an odd prime and a an integer coprime to p. We say that a is a quadratic residue modulo p if the equation
x^2=a (mod p)
has a solution for x and we say that a is a quadratic non-residue modulo p otherwise.

23
Q

Define primitive root

A

m is a positive integer. An integer a, which is coprime to m is called a primitive root mod m if the order of an integer modulo m is euler(m)

24
Q

What is an algebraic number?

A

A complex number is called algebraic if it is a root of a non-zero polynomial with rational coefficients

25
Q

What is a transcendental number

A

One that is not algebraic - ie is not the root of a non-zero polynomial with rational coefficients

26
Q

How do you know if an integer is the sum of two squares?

A

A positive integer n is the sum of two squares iff the exponent of every prime number which is congruent to 3 (mod 4) in the prime factorisation of n is even.