Gap bound for non-Euler triples (Jones lemma)
Proveddiophantine_triple_non_euler_lower_bounddiophantine-equationsnumber-theory
Let be a Diophantine triple that is not an Euler triple. Then
This is the non-Euler case of the gap lemma for Diophantine triples: an Euler triple has the form with , while every other triple jumps past . It supplies the outer lower bound of the five-interval split in the proof that no triple of degree at least two extends to a quintuple. Formalization note: triples, Euler triples, and degree are the project's Triple, Euler, and HasDegree predicates; degree at least two implies the non-Euler hypothesis, which is established separately, so this target isolates exactly the number-theoretic gap step.
Preamble
import Definitions.Def_diophantine_descent set_option autoImplicit false open DiophantineDescent
Formal statement
theorem diophantine_triple_non_euler_lower_bound (a b c : Nat)
(ht : Triple a b c) (hne : ¬ Euler a b c) : 4 * a * b < c := by sorrySource
Bo He, Alain Togbe, Volker Ziegler, There is no Diophantine quintuple, arXiv:1610.04020v2, https://arxiv.org/abs/1610.04020v2; Lemma lem:Jones (preliminaries, restatement of Lemma 4 of Jones 1978: a triple with a<b<c satisfies c = a+b+2r or c > 4ab), applied in the proof of Theorem 9 (thm:deg2): since deg(a,b,c) >= 2 the triple is not Euler, hence c > 4ab. The remark after the lemma notes Jones' original statement differs slightly (c > 4c'ab with c' = 0 iff c = a+b+-2r).