Definition
Given a,b∈Z (at least one of them is not zero),
a,b are called relatively prime ⟺defgcd(a,b)=1
Theorem 2.3
Given a,b∈Z(a=0 or b=0), let d=gcd(a,b)
⇒There exists x,y∈Z such that ax+by=d
이전에 증명했었다. 지금은 d=1 인 case
Theorem 2.4
gcd(a,b)=1⟺∃x,y∈Z s.t. ax+by=1

Corollary of Theorem 2.4
2.4.1

2.4.2

- The condition "gcd(a,b)=1" is necessary
Note that 6∣24 and 8∣24. BUT (6⋅8)∤24
Theorem 2.5 Euclid’s lemma

Theorem 2.6 The Gratest Common Divisor

그래서 d=12 였다면 원래 정의에서는 d보다 작은 값이 다 될수 있었는데, 사실 d의 약수 c=1,2,3,4,6,12 만 생각하면 된다.
정리
- definition of relatively prime numbers
- gcd(a,b)=1⟺ there exists x,y∈Z with ax+by=1
- corollaries of Theorem 2.4
- Euclid’s lemma
문제
꼭 풀어보도록 하자…
Comments