Download Week 2

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Document related concepts

Location arithmetic wikipedia , lookup

Wiles's proof of Fermat's Last Theorem wikipedia , lookup

Addition wikipedia , lookup

Fermat's Last Theorem wikipedia , lookup

Elementary mathematics wikipedia , lookup

System of polynomial equations wikipedia , lookup

Collatz conjecture wikipedia , lookup

List of prime numbers wikipedia , lookup

Proofs of Fermat's little theorem wikipedia , lookup

Quadratic reciprocity wikipedia , lookup

Transcript
10
5
MA6011
Fundamental Theorem of Arithmetic
A prime number p is an integer p ≥ 2 whose only positive divisors are 1 and p.
Positive integers greater than 2 which are not prime are called composite.
The 35 prime numbers less than 150 are
2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47
53, 59, 61, 67, 71, 73, 79, 83, 89, 97
101, 103, 107, 109, 113, 127, 131, 137, 139, 149
All other positive integers less than 150 are composite. The following fact about
prime numbers is very useful.
Theorem 5.1 (Euclid’s Lemma). Let p be a prime number which is a divisor of ab.
Then either p is a divisor of a or p is a divisor of b or of both.
Proof. If p divides a we are done. If not, then gcd(p, a) = 1. Thus by the result
proved in the previous section there are integers r and s such that ra + sp = 1.
Multiply through by b to get rab + spb = b. As p is a divisor of rab and of spb it is
a divisor of rab + spb = b as desired.
This property is not true of composite numbers e.g. 15 is a divisor of 33 · 35 but
is neither a divisor of 33 nor of 35. Euclid’s Lemma can be generalised as follows:
Let p be a prime number which is a divisor of the product a1 a2 a3 · · · an of
integers. Then p is a divisor of (at least) one of the factors a1 , a2 , . . . , an .
Theorem 5.2 (Fundamental Theorem of Arithmetic). Every integer n ≥ 2 can be
factored into a product of primes
n = p1 p 2 · · · pm
in exactly one way. Different orders of the factors are not considered different.
Proof. We first prove the existence of a factorisation into primes. The proof is by
induction on n. The case n = 2 is clearly true, as 2 is a prime. Let the inductive
hypothesis P (k) be the statement that every number up to k can be factored as a
product of primes. Consider the number k + 1. If k + 1 is prime then we have a
factorisation. If k + 1 is not prime then k + 1 = n1 n2 where n1 , n2 ≤ k. By the
inductive hypothesis each of n1 and n2 can be written as a product of primes, say,
n1 = p1 p2 · · · pr and n2 = q1 q2 · · · qs . It follows that
k + 1 = p 1 p2 · · · pr q1 q 2 · · · qs
is a factorisation into primes. Hence P (k + 1) is true. Thus by induction P (n) is
true for all n.
We next prove the uniqueness. Suppose that we have two different factorisations
n = p1 p2 · · · pr and n = q1 q2 · · · qs . Consider p1 . The prime number p1 divides n and
so p1 divides q1 q2 · · · qs . By Euclid’s Lemma p1 must divide qk for some 1 ≤ k ≤ s.
But then p1 = qk . Renumber the factors in the second factorisation so that p1 = q1 .
Now cancel p1 from each factorisation leaving p2 · · · pr = q2 · · · qs . Repeat the process
starting with p2 . Eventually we will have all the ps paired off with one of the qs.
When all the ps have gone all the qs must be gone otherwise 1 = qm · · · qs which is
impossible. Hence r = s. Thus the two factorisations are the same apart from the
order of terms. This completes the proof.
Week 2
11
In this course, we shall deal with these naturally arising questions:
How can we determine if a number is prime or composite?
If a number is composite how can we express it as a product of primes?
We will sometimes be able to show that a number is composite without necessarily
finding a prime factor. We will also be able to find large prime numbers p and q
such that given n = pq it will be virtually impossible to find p and q.
6
Sieve of Eratosthenes
Suppose one wants to find all prime numbers less than 200. Eratosthenes (276–194
BCE) devised a simple method to do this. Here is a brief description:
List the numbers from 2 to 200. For prime numbers p = 2, 3, 5, 11, 13 in
turn delete all multiples of that prime except themselves. The integers
that remain are all the primes less than 200.
Why does this work? First note that any composite number
√that is not larger than a
given number N must be divisible by√a prime number p ≤ N , because the product
of two or more primes greater than N is larger than N . Therefore, we only have
to test the primes up to 13 when we want to find the primes up to 200.
In practice, we first delete the multiples of 2, then those of 3 etc. simply by
counting through the list in each case. In the example below, the result after eliminating all multiples of 2 is shown. The smallest remaining number is 3. This is a
prime number. All multiples of 3 that are greater than 3 are marked with a box.
They will fall through the sieve.
2
31
61
91
121
151
181
211
241
3
33
63
93
123
153
183
213
243
5
35
65
95
125
155
185
215
245
7
37
67
97
127
157
187
217
247
9
39
69
99
129
159
189
219
249
11
41
71
101
131
161
191
221
251
13
43
73
103
133
163
193
223
253
15
45
75
105
135
165
195
225
255
17
47
77
107
137
167
197
227
257
19
49
79
109
139
169
199
229
259
21
51
81
111
141
171
201
231
261
23
53
83
113
143
173
203
233
263
25
55
85
115
145
175
205
235
265
27
57
97
117
147
177
207
237
267
29
59
89
119
149
179
209
239
269
The next prime is 5 and now we mark the remaining multiples of 5 before they fall
through the sieve.
2
31
61
91
121
151
181
211
241
3
5
35
65
95
125
155
185
215
245
7
37
67
97
127
157
187
217
247
11
41
71
101
131
161
191
221
251
13
43
73
103
133
163
193
223
253
17
47
77
107
137
167
197
227
257
19
49
79
109
139
169
199
229
259
23
53
83
113
143
173
203
233
263
25
55
85
115
145
175
205
235
265
29
59
89
119
149
179
209
239
269
12
MA6011
The next prime is 7 and now we mark multiples of 7 before they fall through the
sieve.
2
31
61
91
121
151
181
211
241
3
5
7
37
67
97
127
157
187
217
247
11
13
41
43
71
73
101 103
131 133
161
163
191 193
221 223
251 253
17
19
47 49
77
79
107 109
137 139
167 169
197 199
227 229
257 259
23
53
83
113
143
173
203
233
263
29
59
89
119
149
179
209
239
269
23
53
83
113
143
173
29
59
89
The next prime is 11.
2
31
61
3
5
121
151
181
211
241
7
37
67
97
127
157
187
247
11
41
71
101
131
13
43
73
103
163
191 193
221 223
251 253
17
47
107
137
167
197
227
257
19
79
109
139
169
199
229
233
263
149
179
209
239
269
The next prime is 13 and the only new numbers that fall through the sieve are 169,
221 and 247.
2
31
61
151
181
211
241
3
5
7
37
67
97
127
157
247
11
41
71
101
131
191
221
251
13
43
73
103
163
193
223
17
47
107
137
167
197
227
257
19
79
109
139
169
199
229
23
53
83
113
29
59
89
173
149
179
233
263
239
269
Because 172 > 269 all numbers in this table that didn’t fall through the sieve so far
must be prime numbers. With one more step we could have found all primes below
192 = 361, but this would require that we included the numbers from 271 to 360 in
all the steps we have carried out.
7
Congruences
Divisibility is a key concept in number theory. We need a new notation to express
divisibility concepts more easily. We say that a is congruent to b modulo m if m
divides a − b and write this as
a ≡ b mod m.
Week 2
13
An expression involving ≡ mod m is called a congruence. For example
21 ≡ 9 mod 12 ,
2014 ≡ 14 mod 100 ,
198 ≡ 53 mod 5 ,
−199 ≡ 1 mod 200 .
Given integers a and m, division with remainder gives us integers q, r such that
a = mq + r and 0 ≤ r < m. Then a ≡ r mod m. Thus every integer is congruent
modulo m to some number between 0 and m − 1.
We can handle congruences very much in the same way we handle equations.
For example, if a1 ≡ b1 mod m and a2 ≡ b2 mod m then
a1 + a2
a1 − a2
a1 a2
an1
≡ b1 + b2 mod m
≡ b1 − b2 mod m
≡ b1 b2 mod m
≡ bn1 mod m for all n > 0.
We cannot, however, divide congruences in general:
20 ≡ 8
mod 12
but
5 6≡ 2
mod 12 .
The following is, however, true.
If
ak ≡ bk mod m
and
gcd(k, m) = 1
then
a ≡ b mod m.
A congruence involving an unknown can often be solved in the same way as
equations are solved. Alternatively, one can use the exhaustive method i.e. to solve
a congruence mod m one can try each value 0, 1, 2, . . . , m − 1 in turn and determine
those for which the congruence is true.
Example 7.1. To solve x + 5 ≡ 2 mod 12, we may add 7 to both sides.
x + 5 + 7 ≡ 2 + 7 mod 12
x + 12 ≡ 9 mod 12
x ≡ 9 mod 12
This congruence has an infinite number of solution e.g. x = 9, 21, 33, 45, . . . and
x = −3, −15, −27, −39, . . . .
Example 7.2. To solve 3x + 4 ≡ 6 mod 11, we first subtract 4 from both sides,
then multiply by 4 and finally use that 12 ≡ 1 mod 11.
3x ≡ 2
12x ≡ 8
x≡8
mod 11
mod 11
mod 11
Note that here multiplication by 4 replaces division by 3 in the second step. How did
we know that we have to multiply by 4? The key is gcd(11, 3) = 1. The extended
Euclidean algorithm gives
1 = 4 · 3 − 11
i.e. 4 · 3 ≡ 1
mod 11 .
14
MA6011
Example 7.3. To solve x2 + 3x + 5 ≡ 4 mod 11, we use the exhaustive method.
Here we try x = 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 in turn and find the solutions
x≡2
mod 11
and
x≡6
mod 11 .
Example 7.4. The congruence x2 ≡ 3 mod 4 does not have a solution. The reason
is that for x even, we can write x = 2k, hence x2 = 4k 2 ≡ 0 mod 4 and for x odd,
we can write x = 2k + 1, hence x2 = 4k 2 + 4k + 1 ≡ 1 mod 4. Squares can only
have remainder 0 or 1 on division by 4, never 2 or 3.
We will now look more closely at linear congruences and use what we learnt in
previous sections to solve the problem. Consider the congruence
ax ≡ c mod m
This could have no solution e.g. take a = 6, c = 9, m = 24.
Suppose our congruence has a solution x. Then ax − c is a multiple of m and so
ax − c = my for some integer y. But then ax − my = c. We know that this has a
solution if and only if gcd(a, m) divides c.
+ m vc
= c. Because we
Let d = gcd(a, m) and suppose au + mv = d then a uc
d
d
vc
uc
assume that d divides c, the numbers d and d are integers. Hence
uc
mod m
d
is a solution to the congruence. Suppose x1 is another solution. Then
x0 ≡
ax1 ≡ ax0
mod m .
Hence m divides a(x1 − x0 ) and so md divides a(x1d−x0 ) . But gcd( md , ad ) = 1. Thus md
divides x1 − x0 . Hence
m
x1 = x0 + k .
d
We can let k take the values 0, 1, 2, . . . , d − 1 to obtain d different solutions. We
summarise this in the following theorem.
Theorem 7.5. Let a, c, m be integers with m ≥ 1 and d = gcd(a, m).
(i) If d does not divide c then the congruence
ax ≡ c mod m
has no solutions.
(ii) If d | c, then the congruence
ax ≡ c mod m
has exactly d incongruent solutions. To find the solutions, first use the extended
Euclidean algorithm to find a solution (u0 , v0 ) to the linear equation
au + mv = d.
cu0
Then x0 =
is a solution of the congruence and a complete set of incond
gruent solutions is given by
m
x ≡ x0 + k
mod m for k = 0, 1, 2, . . . , d − 1.
d
Week 2
15
Example 7.6. The congruence
gcd(10, 12) = 2 and 2 - 3.
10x ≡ 3 mod 12
has no solutions, because
Example 7.7. To solve 10x ≡ 6 mod 12, we observe that gcd(10, 12) = 2 and
2|6. Therefore we know that the congruence has two incongruent solutions. To find
them, we first solve 10u + 12v = 2. The solutions u = −1, v = 1 are easy to find.
u = 11, v = −9 is also a solution. To find x0 we need to multiply u by 6/2 = 3:
x0 = 3 · 11 ≡ 33 ≡ 9
mod 12 .
The other solution is obtained by adding 12/2 = 6, so we get
x1 ≡ 9 + 6 ≡ 3
mod 12
as the second solution. Thus the solutions to the congruence are
x≡3
mod 12
and
x≡9
mod 12 .
Example 7.8. Consider the congruence 126 x ≡ 36 mod 348. Euclid’s algorithm
looks like this.
348 − 2 · 128 = 96
128 −
96 = 30
96 − 3 · 30 = 6
30 −
5·6 = 0
Therefore gcd(348, 128) = 6. Because 6 | 36 the given congruence has six solutions.
Next we use the extension of Euclid to get
6 = 96 − 3 · 30 = −3 · 126 + 4 · 96 = 4 · 348 − 11 · 126
which we multiply by 6 = 36/6 and obtain
24 · 348 − 66 · 126 = 36,
hence
− 66 · 126 ≡ 36
mod 348 .
This gives one solution x0 ≡ −66 ≡ 282 mod 348. The other solutions differ by
multiples of 348/6 = 58 from it. Therefore, the six solutions are
x ≡ 50 mod 348
x ≡ 108 mod 348
x ≡ 166 mod 348
x ≡ 224 mod 348
x ≡ 282 mod 348
x ≡ 340 mod 348 .