Documentation

FormalConjectures.Wikipedia.ABC

abc conjecture #

Reference: Wikipedia

def radical (n : ) :

The radical of n denoted is the product of the distinct prime factors of n.

Equations
Instances For
    noncomputable def quality (a b c : ) :

    Quality q(a, b, c) of the triple (a, b, c) is defined as q(a,b,c) = log (c) / log (rad(abc)).

    Equations
    Instances For
      theorem abc (ε : ) (hε : 0 < ε) :
      {(a, b, c) : × × | 0 < a 0 < b 0 < c {a, b, c}.Pairwise Nat.Coprime a + b = c (radical (a * b * c)) ^ (1 + ε) < c}.Finite

      For every positive real number ε, there exist only finitely many triples (a, b, c) of coprime positive integers, with a + b = c, such that c > rad(abc)^(1+ε)

      theorem abc.variants.lt_constant_mul (ε : ) (hε : 0 < ε) :
      ∃ (K : ), ∀ (a b c : ), 0 < a0 < b0 < c{a, b, c}.Pairwise Nat.Coprimea + b = cc < K * (radical (a * b * c)) ^ (1 + ε)

      For every positive real number ε, there exists a constant K_ε such that for all triples (a, b, c) of coprime positive integers, with a + b = c we have c < K_ε rad(abc)^(1+ε).

      theorem abc.variants.quality (ε : ) (hε : 0 < ε) :
      {(a, b, c) : × × | 0 < a 0 < b 0 < c {a, b, c}.Pairwise Nat.Coprime a + b = c _root_.quality a b c > 1 + ε}.Finite

      For every positive real number ε, there exist only finitely many triples (a, b, c) of coprime positive integers with a + b = c such that q(a, b, c) > 1 + ε.