# Definition
Bézout's identity — Let a and b be integers or polynomials with greatest common divisor d. Then there exist integers or polynomials x and y such that ax + by = d. Moreover, the integers or polynomials of the form az + bt are exactly the multiples of d.
(reference)
Extended Euclidean과 연결되는 정수론의 기본 정리 중 하나이다.
증명부터 해보자.
Lemma 1) For ∀a,b∈N(a≠0∨b≠0) Let S = {ax+by>0 | x,y∈Z} Then S≠∅
a≠0∨b≠0 에서 일반성을 잃지않고 a≠0이라 두었을 때 x=±1,y=0이라면
|ax+by|=a≠0, |ax+by|∈S으로 S가 공집합이 아님을 알 수 있다.
Proposition 1) For ∀ a,b,l∈N(a≠0∨b≠0) let g=GCD(a,b), then there exists ∃x,y∈Z such that ax+by=g
Let S = {ax+by>0 | x,y∈Z}
S⊂N , S≠∅(Lemma 1에 의해서) 가 성립하기에 Well-ordering principle에 의해 최솟값 m = min{S}(m∈N) 를 잡을 수 있다( *반드시 존재한다 ).
m=ax1+bY1(x1,y1∈Z)로 두고 다른 임의의 값 k를 잡자.
let ∀k∈S,k=ax2+by2(x2,y2∈Z)
k>m 일 것이고 k=mq+r(0≤r<m) 으로 표현할 수 있다.
∴ k =mq+r =(ax1+bY1)q+r
r =k−mq =(ax2+by2)−(ax1+by1)q =a(x2−qx1)+b(y2−qy1)
m⧸|k 라고 가정해보면r∈N임을 알 수 있고 r<m이 성립하게 되어 m이 최솟값이라는 가정에 모순된다. 따라서 m|k 가 항상 성립하게 된다.
두 가지 경우로 나눠서 생각을 해보자.
1) a=0∨b=0
일반성을 잃지 않고 a=0이라고 하면 GCD(a,b)=GCD(b,0)=0이 얻어지고 x=0 and y=0라는 쌍으로 표현 할 수 있음이 자명하다.
(* 본 증명에서는 증명의 간결함을 위하여 For ∀n∈N GCD(n,0)=0으로 정의한다.)
2) a≠0∧b≠0
a∈S∧b∈S 에서 m|a∧m|b, ∴m|g 임을 알 수 있다.
g=mG(G∈Z)라 두자.
g =mG =(ax1+by1)G =a(Gx1)+b(Gy1)
x=Gx1, y=Gy1으로 표현 가능하다는 것이 얻어진다.
Proposition 2) For ∀ a,b,l∈ N(a≠0∨b≠0) let g =GCD(a,b), then there exists ∃x,y∈Z such that ax+by=gl
Proposition 1로부터 g=ax1+by1 라 두면
gl=(ax1+by1)l =a(lx1)+b(ly1) 으로 표현이 가능함을 알 수 있다.
Proposition 3) For ∀ a,b,x,yl∈ N(a≠0∨b≠0) let g=GCD(a,b), then g|ax+by
g|x∧g|y 이므로 자명하게 g|ax+by가 성립한다.
Proposition 1, 2, 3으로부터
Theorom 1) For ∀ a,b,x,yl∈ N(a≠0∨b≠0) let g=GCD(a,b), S = {ax+by>0 | x,y∈Z} T = {Mg | M∈Z}, then S=T
이로써 정수에 대한 Bézout's identity의 증명이 완료된다.
일반적인 확장은 Part.2에서, 다항식으로의 확장은 Part.3에서 마저 기술하겠다.
https://ilikechicken.tistory.com/26
Bézout's identity - 베주 항등식(Part. 3)
# Definition Bézout's identity — Let a and b be integers or polynomials with greatest common divisor a. Then there exist integers or polynomials x and y such that ax + by = d. M..
ilikechicken.tistory.com
https://ilikechicken.tistory.com/26