Printable notes outline

advertisement
Prime numbers
Fundamental theorem of arithmetic
We have already seen techniques for factoring numbers into products of primes.
The Fundamental Theorem of Arithmetic states that this factorization is unique - you can’t
come up with two different ways to write the prime factorization of a number, and if two numbers
have the same factorization, then they must be the same number.
Fundamental theorem of arithmetic
Theorem:
Let n be any integer greater than 1. There are distinct primes p1 , p2 ,...,pm and positive
exponents k1 , k2 ,...,km such that
n = pk11 pk22 ...pkmm .
Furthermore, such a factorization is unique except for the order of the factors.
To prove the theorem, we need to establish a couple of propositions. Proofs of all of these are
lengthy enough that outlines appear in the notes, but not on the slides. See also Nicodemi, pp.
28-29.
Proposition:
Let p be a positive integer. Then p is prime if and only if for all integers a and b, if p
divides ab, then p either divides a or p divides b.
Note: this is the inclusive “or” - it is possible that p divides both.
Example:
Take the prime p = 5 and the number 50. There’s a couple different ways to factor 50: 50 = 5 · 10,
or 50 = 2 · 25. What the above theorem guarantees is that since 5|50, it must divide at least one
of the factors of 50 for any possible factorization of 50.
Proof logic:
• It’s an “if and only if’ statement, so it must be proven in both directions.
• The proof of “Suppose that p is prime. Then for all integers a and b, if p divides ab, then p
either divides a or p divides b” proceeds directly:
– Suppose p is prime. Suppose that p|ab.
– If p|a, then we’re done.
– If p | a, then gcd(p, a) = 1 and Euclid’s Lemma states that p|b.
• The converse (other direction of the iff) would be “Suppose that p is some number with the
property that if p divides ab, then p either divides a or p divides b. Then p is prime.”
• The proof of the converse proceeds indirectly:
– Suppose p is not prime.
– Then p can be factored as p = ab, and p does not divide either a or b.
Proposition:
Suppose that p is prime and that p divides a1 a2 ...an . Then p divides ak for some k
such that 1 ≤ k ≤ n. Also, if ak is prime, then p = ak .
Note: This proposition is simply an extension of the previous one. If p divides some number, and
that number can be factored in a certain way, then p either divides one of the factors, or is one of
the factors.
Note: The Nicodemi text states that this “follows by induction” without showing the induction
proof. For completeness sake, let’s have it here. This is an example of the use of the Principle of
Strong Induction.
Basis Step: (k = 2) Suppose p|a1 a2 . Then by the preceding proposition, p|a1 or p|a2 .
Whichever one p divides, if it happens to be prime itself, then it has no divisors other
than itself and 1, so p must equal it.
Inductive Step:
• Suppose that p|a1 a2 ...an implies that p|ak for some k such that 1 ≤ k ≤ n.
• We wish to show that if p|a1 a2 ...an an+1 , then p|ak for some k such that 1 ≤ k ≤
n + 1.
• Suppose that p|a1 a2 ...an an+1 . Then p|ban+1 , where b = a1 a2 ...an . By the preceding proposition, either p|b or p|an+1 .
– If p|b, then p|a1 a2 ...an , and by the induction hypothesis, p|ak for some k such
that 1 ≤ k ≤ n.
– On the other hand, if p|an+1 , then p|ak for some k = n + 1.
– Taken together, p|ak for some k such that 1 ≤ k ≤ n + 1
• And, as before, if ak is prime, it has no divisors other than 1 and ak , so if p|ak ,
then p = ak .
Proving the fundamental theorem
With the preceding propositions, we can prove the fundamental theorem. This is also an induction proof. A key thing to notice is that this is an example of an “existence and uniqueness” proof.
I’m going to use a version of the proof that I think is a little easier to follow. The gathering
of repeated factors into exponents isn’t really a necessary part of the theorem, just a fact of
arithmetic notation - there’s no difference in asserting that
250 = 2 · 5 · 5 · 5
vs.
250 = 2 · 53
other than that the second one is more compact to write.
Existence: The simplest statement of the existence part of the Fundamental Theorem of Arithmetic is
Every natural number n greater than one can be written as the product of primes.
Basis step: P (2) holds: Since 2 itself is prime, 2 = 2 can be written as the product of one prime,
itself. (Yes, we allow “product” to possibly collapse down to a single number. It counts.)
Induction step:
• Assume that P (j) holds for all j ≤ n (this is a strong induction): Assume a natural number
j can be written as a product of primes for all j ≤ n.
• We wish to show P (n + 1) holds: We wish to show that n + 1 can be written as a product
of primes.
• Consider n + 1. There are two cases:
– n + 1 is prime. Then it can be written as itself, and we are done.
– n+1 is composite. Then it can be factored into n+1 = ab, and both a and b are greater
than 1, and less than n + 1. Since a < n + 1, a ≤ n, and the induction hypothesis says
a can be written as a product of primes. Similarly, b can be written as a product of
primes. So n + 1 is the product of products of primes; n + 1 can be written as a product
of primes.
By induction, every natural number n greater than one can be written as the product of primes.
Uniqueness: The uniqueness part can be done by contradiction:
Suppose we have a number n that has two distinct prime factorizations, both
n = p1 p2 p3 ...ps
and
n = q1 q2 q3 ...qt
The next bit is easier to explain than it is to notate. Since the factorizations are assumed to be
distinct, there have to be some primes in the p factorization that don’t match the primes in the q
factorization. As an example, suppose that all the p factors and q factors were equal, except that
maybe p2 = q2 , and p7 = q7 . If you set up the equation
p1 p2 p3 ...ps = n = q1 q2 q3 ...qt
you’d be able to cancel all the like factors on either side, leaving you with just
p2 p7 = q2 q7
That would be a problem, since it would imply (for example) that p7 divided either q2 or q7 , and
it can’t, since primes can’t be divided by primes other than themselves.
To notate this correctly, you go to subscripting the subscripts; if you set up the equality
p1 p2 p3 ...ps = n = q1 q2 q3 ...qt
and cancel all common primes from both sides of the equation, you are left with
pi1 pi2 ...piu = qj1 qj2 ...qjv
(there are some number of pi ’s on the p side that don’t cancel against some number of qj ’s on the
q side).
So pi1 must divide some qjv , which is a contradiction, since all the factors remaining are distinct
primes.
Consequences of the fundamental theorem
One thing of note about the theorem is it doesn’t tell you how to find a prime factorization,
merely that you can. Fortunately, you already know how (keep factoring until you have a product
of primes).
Corollary:
Every positive rational number can be expressed uniquely as m
n , where m and n are
relatively prime natural numbers.
Theorem:
There is no rational number whose square is 2 [i.e.
√
2 is irrational].
Download