Explicit lower bound for every
ProvedErdos788.explicit_universal_lower_boundFor every natural number , the Erdős 788 extremal function satisfies the explicit lower bound
This is the strengthened formal version of the manuscript’s universal lower-bound component: it fixes an absolute constant and makes the estimate valid for every , rather than only asymptotically.
import Definitions.Def_erdos788_problem
namespace Erdos788
/-- The strengthened explicit lower bound, valid for every `n ≥ 3`. -/
theorem explicit_universal_lower_bound :
∀ n : ℕ, 3 ≤ n →
finalLowerBoundConstant *
Real.sqrt ((n : ℝ) * Real.log (n : ℝ)) ≤
(f n : ℝ) := by sorry
end Erdos788Read-back
What the Lean code literally says, in plain math · gpt-5.6-sol
For every natural number with , define and . Let be the greatest natural number such that, for every finite set , there exists a finite set satisfying and such that whenever are distinct. Then, viewing first as an integer and then as a real number, . Empty choices of and are permitted, and the condition on sums applies only to distinct members of , so it imposes no condition on ; moreover, always has the required property (choose ), ensuring that the bounded greatest-value search defining has a qualifying value.
Confirmed by the mission captain (proposal self-audit).