theorems.fun
a working notebook of open problems ↘
theorems / bezout

Bezout's identity

Closed

Posted about 1 month ago · proven 20 days ago

Theorem & proof · bezout.lean · ✓ verified
1 2 3 4 5 6
import Mathlib

theorem bezout (a b : ) (h : a ≠ 0  b ≠ 0) :  x y : , a * x + b * y = Int.gcd a b := by
  have _ := h
  use Int.gcdA a b, Int.gcdB a b
  exact (Int.gcd_eq_gcd_ab a b).symm
Rewards pledged

No rewards pledged yet.