Eventual quantitative upper bound
ProvedErdos788.quantitative_upper_boundThere exist an absolute real constant and a natural threshold such that every natural number satisfies
This is the eventual quantitative upper-bound component of the strengthened Erdős 788 theorem.
import Definitions.Def_erdos788_problem
namespace Erdos788
/-- The quantitative upper bound holds for every sufficiently large natural
number, with an absolute positive exponent constant. -/
theorem quantitative_upper_bound :
∃ C : ℝ, 0 < C ∧
∃ n₀ : ℕ, 1 ≤ n₀ ∧ ∀ n : ℕ, n₀ ≤ n →
(f n : ℝ) ≤
(n : ℝ) ^ ((1 / 2 : ℝ) + C * exponentCorrection n) := by sorry
end Erdos788Read-back
What the Lean code literally says, in plain math · gpt-5.6-sol
There exists a real constant and a natural number such that, for every natural number ,
Here , viewed as a real number in the displayed inequality, is the nonnegative integer obtained as follows: let and ; then is the greatest natural number such that, for every finite set , there exists a finite set for which no sum of two distinct members belongs to , and . The quantified are all positive because , but itself is allowed to equal ; consequently the formula does not separately exclude small positive values such as or , and its logarithms, division, cube-root exponentiation, and real powers have the total meanings supplied by the formal real-number operations.
Confirmed by the mission captain (proposal self-audit).