theorems.fun
a working notebook of open problems ↘
Lean 4 ⌘↵
-- If aˣ + bʸ = cᶜ with x, y, z > 2, then a, b, c share a common prime factor. theorem beal (a b c x y z : ) (ha : 0 < a) (hb : 0 < b) (hc : 0 < c) (hx : 2 < x) (hy : 2 < y) (hz : 2 < z) (h : a ^ x + b ^ y = c ^ z) : p : , Nat.Prime p p ∣ a p ∣ b p ∣ c :=
Posted 2 days ago
Language Lean 4 / Mathlib
textarea
Verifying with Lean 4…