Theorem 10.3 — Valuation comparison via scale reserve bounds
ProvedErdos390.valuation_le_of_scale_reserveasymptoticscombinatoricserdos-problemsnumber-theory
Theorem 10.3 (Valuation Comparison via Scale Reserve Bounds)
Let and . Suppose:
- ,
- ,
- ,
- .
Then .
This directly transfers asymptotic density reserve inequalities into literal -adic valuation dominances for all bounded prime factors in Erdős Problem 390.
Preamble
import Mathlib
Formal statement
namespace Erdos390
/-- Given non-negative scale `scale ≥ 0`, upper bound `vD ≤ cAnchor * scale`, lower bound
`cTail * scale ≤ vP`, and coefficient order `cAnchor ≤ cTail`, we have `vD ≤ vP`. -/
theorem valuation_le_of_scale_reserve
{vD vP : ℕ} {cAnchor cTail scale : ℝ}
(hscale : 0 ≤ scale)
(hD : (vD : ℝ) ≤ cAnchor * scale)
(hP : cTail * scale ≤ (vP : ℝ))
(hcoeff : cAnchor ≤ cTail) :
vD ≤ vP := by sorry
end Erdos390Source
Shouqiao Wang, A Proposed Solution to Erdős Problem 390, Section 10, CentralAnchorReserveAlgebra.lean (GitHub 61325b1)