Sharpness of the archimedean degree bound: solvable
OpenCollapsibleCubics.pi_div_psi_le_iff_exists_thetaRETIRED — superseded by
CollapsibleCubics.exists_angles_iff_pi_div_psi_le.This node fixed the winding integer to , writing the sum condition as . That is a special case: in the intended application is the winding count of the argument of a product of Möbius images and is not known in advance, so pinning it to states strictly less than the bound it was meant to capture. The replacement node quantifies existentially and is the full formulation. Please work on that node instead; this one is retained only so that existing references resolve.
The archimedean threshold for one-step collapsibility, as a sharp equivalence (superseded form, ).
Fix and an integer . The system
subject to and for all , is solvable if and only if . The forward direction is the analytic core of the mission's proved milestone CollapsibleCubics.pi_div_psi_le_natDegree; the converse (sharpness) is open. See the replacement node for the full statement and context.
import Mathlib
namespace CollapsibleCubics
theorem pi_div_psi_le_iff_exists_theta {n : ℕ} (hn : 0 < n) (ψ : ℝ)
(hψ : ψ ∈ Set.Ioo 0 (Real.pi / 2)) :
(∃ θ : Fin n → ℝ,
(∀ i, θ i ∈ Set.Ioo (-(Real.pi / 2)) (Real.pi / 2)) ∧
(∀ i, θ i ≠ -ψ) ∧
(∏ i, Real.cos (θ i)) = (Real.cos ψ) ^ n ∧
(∑ i, θ i) = 2 * Real.pi - n * ψ) ↔
Real.pi / ψ ≤ n := by sorry
end CollapsibleCubics