Number Theory Flashcards

1
Q

Composite

A

An integer >= 2 that is not prime

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

Highest common factor

A

The largest integer which is a factor of both a and b is the hcf(a,b)

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

Coprime

A

Two integers a,b are congruent modulo n Id a-b is a multiple of n

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

Invertible

A
  • An element a in Z/n is invertible modulo n if there exists b in Z/n s.t. ab=1modn.
  • The set of invertible elements in Z/n is written(Z/n)^x.
  • This is a group with operation of multiplication.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Euler-Totient Function

A

The number of invertible elements in Z/n, ie. The order of the group (Z/n)^x

The number of positive integers less than n, coprime to n

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

Primitive Root (modp)

A

An element a ∈ F^xp is a primitive root modulo p if a generates the multiplicative group F^xp ie. Every element of F^xp is a power of a

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

Prime Number

A

An integer p>=2 is a prime if the only factors of p are ±1 and ±p

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

Chinese Remainder Theorem

A

Let n,m be coprime.

Given a ∈ Z/n and b ∈Z/m

There is a unique x ∈ Z/mm s.t. X = a modn and X = b modm

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

CRT proof

A

Existence: since n and m are coprime, by Euclid’s algorithm there is a h,k s.t. 1=hn + LM
Let x=hnb + kma

We can check X=a(n) X=b(m)
a = hnb + kma (n)
=(1-hn)a = 1 x a = a(n)

Similarly b(m)

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

Fermat’s Little Theorem

A

A ∈Fp^x and this is a group with p-1 elements
Let n be the order of a in this group IR. The smallest natural number s.t. a^n = 1 modp

Proof:
By Lagrange’s theorem: n divides the order of a which is p-1, so n is a factor of p-1
Therefore p-1 =nm for some m∈Z
Then a^p-1 = a^nm =(a^n)^m = 1^m = 1 modp

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

Berzout’s Lemma

A

Given a, b ∈Z, and a, b not zero, Ε h,k ∈ Z s.t ha + kb = hcf (a, b)

  • use Euclid’s algorithm to find h and k
  • to find a^-1 : find ha + kn = 1 by euclids then h is a^-1 mod n
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

There are infinitely many prime numbers

A

Assume that there are only finitely many primes; p1,p2,…..,pn
Let N = p1•p2…•pn +1
Since N >= 2 there is at least one prime which divides N
So pi | N ie. N = 0 (pi)
But clearly N = 1 modpi
Therefore contradiction!
And N doesn’t have a prime factor and must be a prime

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

Unique factorisation of integers

A

For any positive integer n, there is a factorisation n=p1….pr
This factorisation is unique up to reordering the primes pi….pr

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

Euler’s Theorem

A

If a is invertible mod(n), ie. a ∈(Z/n)^x then a^@(n) =1 mod(n)

Proof:
Let a ∈(Z/n)^x and let d be the order of a in this group, ie. Smallest d > 0 st. a^d = 1 (n)

By Lagrange’s theorem, d|@(n) ie. @(n) = d x e
a^d = 1 (n) therefore a^@(n) = a^(de) = (a^d)^e = 1^e = 1 (n)

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

Eratostene’s Sieve

A

Test for n primes

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

Testing for primitive roots

A

Let p be a prime a ∈Fˣp
To test if α is a quadratic residue mod p:
1. Find the primes q | p-1
2. For each q, calculate a^(p-1)/q mod p
If none of these are 1 modp ⇒ a is a primitive root

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

Cyclic group

A

A group G is cyclic if ∃ an element g∈G s.t. G = {g^i : i∈ℤ}

18
Q

Generator

A

The element g∈G is called the generator of G

19
Q

Primitive Root

A

A primitive root modulo p is a generator of Fp ( an element of Fo order p-1)

20
Q

Gauss’ Theorem

A

For every prime number p, ∃ a primitive root modulo p. There are φ(p-1) of them.
If P is prime, then Fp is a cyclic group.

21
Q

Quadratic Reciprocity

A

Let p be an odd prime number and a∈Fˣp coprime to p

a is a quadratic residue of x² = a mod p has solutions

22
Q

Legendre Symbol

A

(a/p)

=1 is a is a quadratic residue
=-1 if a is a quadratic non-residue

=0 if p|a

23
Q

Quadratic reciprocity law

A

If p and q are distinct odd primes, then (p/q) = (-1)^((p-1)(q-1)/4)(q/p)

24
Q

First Nebensatz

A

If p=1 mod4 then (-1/p) = 1 and if p =-1 mod p then (-1/p) =(-1)^(p-1)/2

25
Q

Second Nebensatz

A

If p = ±1 mod 8 then (2/p)=1

If p= ±3 mod 8 then (2/p)=(-1)^((p^2 -1)/8)

26
Q

Gauss Sum

A

Let p be an odd prime.

The Guass Sun G(p) is: sum from p=1 to 0-1 of (a/p) e^2πi/p

27
Q

Valuation

Valuation of x at p

A

For a non-zero integer n and prime p:

Vp(n) = a

Where a is the largest power s.t. P^a is a factor of n

Vp(0) = ∞

Vp(n/m) = vp(n) - vp(m)

28
Q

Hensel’s Lemma

A

Let p be a prime number and let f∈ℤp[x] be a polynomial

Suppose there is an a₀∈ℤp[x] St. f(a₀) = 0 modp^2c+1 where c = Vp(f’(a₀))

29
Q

P-adic

A

Congruence modulo p^n where p is a prime number and n is large

30
Q

Proposition

A

Let p be an odd prime and let a be an integer coprime to p

If x²≡a (p) has solutions mod p then it has solutions mod p^n for all n

31
Q

Proposition

A

Le a be an odd number.

If the congruence x₂≡a (8) has solutions mod 8, then it has solutions mod(2^n) for all n>0

True iff. a≡1mod8

32
Q

Teichmuller lift

A

The teichmuller lift of a to ,ℤ/pn is defined to be T(a) = a^(p^n-1) ∈ℤ/pn

33
Q

If T(x) = a modp^n then T(x) ≡ a^p modp^n+1

A

To calculate T(x) mod p^n

First calculate T(x) modp^n-1 and then raise it to the power p

34
Q

Every element of (ℤ/p^n)^x can be written uniquely:

A

T(x) exp(py)

Where x∈Fp and y ∈ℤ/p^n-1

Py = log(aT⁻¹(x))
a=T(x)exp(py)

35
Q

ℤp

A

Ring of p-adic integers

The set of all p-adic integers

36
Q

P-Adic integer

A

Let p be any prime;

p-adic integer means a p-adically convergent series ∑ai where Vp(ai) →∞

37
Q

P-adic integer

A

A p-adic integer is a p-adically convergent series
- 2 p-Adic integers are equal if they are congruent mod p^n for every n

-the set of p-adic integers ℤp is a ring since sums and products of p-adically convergent series are also p-adically convergent series

38
Q

Square-free

A

An integer d is caller square-free if the only factor of d which is a square is 1

39
Q

Unit / invertible elements in a ring

A

A unit is an element in a ring with an inverse

Ie. U in a ring R, is a unit of there exists an element U⁻¹ in R St. UU⁻¹ =1

40
Q

Irreducible

A

An element P in R is irreducible if P is not a unit and for all factorisations; P =AB and either A is a unit or B is a unit

41
Q

Norm-Euclidean Quadratic Rings

A

A quadratic ring ℤ[α] is norm Euclidean if:
For every A, B ∈ℤ[α] with B ≠ 0 ∃ Q, R ∈ℤ[α st:

  1. A = QB + R
  2. |N(R)|
42
Q

Irreducible element

A

An element P ∈ℤ[α] is called irreducible if:

  1. P is not a unit
  2. If P =AB with A, B ∈ℤ[α] then either A or B is a unit
  3. Says that the only factors of P are units and unit multiples of P