The Prime Number
Definition 1. An integer p>1 is called a prime number (or prime) if its only positive divisors are 1 and p.
An integer greater than 1 that is not a prime is called a composite.
양의 약수로 1과 자기 자신 밖에 가지지 않는 수를 소수라고 하고, 그렇지 않은 수를 합성수라 한다. 나눗셈이라는 연산의 관점에서 볼 때 더이상 쪼개지지 않는, 마치 원자와 동일한 역할을 수행하는 대상이다. 소인수분해라는 개념이 괜히 있는 것이 아니다. 정수들을 이루는 벽돌과도 같은 기본 단위가 소수이기 때문에 소수를 기준으로 정수를 분해하는 것이다.
Theorem 1
Theorem 1. If p is a prime and p|ab, then p|a or p|b.
Proof. Suppose that p∤a and p∤b. Let ab=kp for some k∈Z. Note that gcd(b,p)=1. Then by Theorem 3, 1=bx+py for some x,y∈Z. Hence we have ab=kp⟹abx=a(1−py)=kpx⟹a=apy+kpx=(ay+kx)p. Then p|a⨂. Thus p|a or p|b. ◼
소수 p가 ab를 나눈다면 a,b 둘 중 하나는 반드시 p를 기본 단위, 즉 소인수로서 가지고 있다는 것이다. n개의 정수로 확장하면 다음과 같다.
Corollary 1
Corollary 1. If p is a prime and p|a1⋯an, then p|ak for some k, where 1≤k≤n.
Proof. Suppose that p∤ak,∀k∈{1,...,n}. Then gcd(ak,p)=1,∀k∈{1,...,n}. Let a1x+py=1 for some x,y∈Z, and let a1⋯an=tp for some t∈Z. Then we have (a1x)a2⋯an=(1−py)a2⋯an=tpx⟹a2⋯an=(a2⋯any+tx)p⟹p|a2⋯an. By repeating this process, we have p|an−1an. Thus by Theorem 1, p|an−1 or p|an ⨂. Hence p|ak for some k, where 1≤k≤n. ◼
Corollary 2
Corollary 2. If p,q1,...,qn are all primes and p|q1⋯qn, then p=qk for some k, where 1≤k≤n.
Proof. By corollary 1, p|qk for some k, where 1≤k≤n. By definition of a prime, it is clear that p=qk. ◼