Plain-language statement
Key algebraic identity for proving f₂ = f₄ = 0. Given Af₂ + Bf₄ = 0, we have f₄² * (A² - AB + B²) = A² * (f₂² + f₂f₄ + f₄²).
Exact Lean statement
lemma f₄_sq_mul_eq (z : ℍ) (hg_z : theta_g z = 0) :
f₄ z ^ 2 * (3 * H_sum_sq z) = (2 * H₂ z + H₄ z) ^ 2 * theta_h zFormal artifact
Lean source
lemma f₄_sq_mul_eq (z : ℍ) (hg_z : theta_g z = 0) : f₄ z ^ 2 * (3 * H_sum_sq z) = (2 * H₂ z + H₄ z) ^ 2 * theta_h z := by unfold H_sum_sq -- Define A = 2H₂ + H₄, B = H₂ + 2H₄ set A := 2 * H₂ z + H₄ z with hA set B := H₂ z + 2 * H₄ z with hB -- From theta_g = 0: A * f₂ + B * f₄ = 0 have h_Af₂_eq : A * f₂ z + B * f₄ z = 0 := by simp only [theta_g, hA, hB, smul_eq_mul, Pi.smul_apply, Pi.mul_apply, Pi.add_apply] at hg_z ⊢ linear_combination hg_z -- Af₂ = -Bf₄ have hAf₂ : A * f₂ z = -(B * f₄ z) := by linear_combination h_Af₂_eq -- A²f₂² = B²f₄² have h1 : A ^ 2 * f₂ z ^ 2 = B ^ 2 * f₄ z ^ 2 := by have h_sq : (A * f₂ z) ^ 2 = (B * f₄ z) ^ 2 := by rw [hAf₂]; ring calc A ^ 2 * f₂ z ^ 2 = (A * f₂ z) ^ 2 := by ring _ = (B * f₄ z) ^ 2 := h_sq _ = B ^ 2 * f₄ z ^ 2 := by ring -- A²f₂f₄ = -ABf₄² have h2 : A ^ 2 * (f₂ z * f₄ z) = -(A * B * f₄ z ^ 2) := by calc A ^ 2 * (f₂ z * f₄ z) = (A * f₂ z) * (A * f₄ z) := by ring _ = (-(B * f₄ z)) * (A * f₄ z) := by rw [hAf₂] _ = -(A * B * f₄ z ^ 2) := by ring -- A² - AB + B² = 3(H₂² + H₂H₄ + H₄²) have h_sum : A ^ 2 - A * B + B ^ 2 = 3 * (H₂ z ^ 2 + H₂ z * H₄ z + H₄ z ^ 2) := by simp only [hA, hB]; ring -- Now compute A²θₕ unfold theta_h calc f₄ z ^ 2 * (3 * (H₂ z ^ 2 + H₂ z * H₄ z + H₄ z ^ 2)) = f₄ z ^ 2 * (A ^ 2 - A * B + B ^ 2) := by rw [h_sum] _ = B ^ 2 * f₄ z ^ 2 + (-(A * B * f₄ z ^ 2)) + A ^ 2 * f₄ z ^ 2 := by ring _ = A ^ 2 * f₂ z ^ 2 + A ^ 2 * (f₂ z * f₄ z) + A ^ 2 * f₄ z ^ 2 := by rw [h1, h2] _ = A ^ 2 * (f₂ z ^ 2 + f₂ z * f₄ z + f₄ z ^ 2) := by ring- Project
- Sphere Packing in Dimension 8
- License
- Apache-2.0
- Commit
- acfc6204e65a
- Source
- SpherePacking/ModularForms/JacobiTheta/Derivative.lean:632-664
Reuse this declaration
Bring the exact result into your workflow
The import identifies the source module. Your project still needs the pinned package dependency shown on this page.
What this badge means
This completion status comes from the project or community source. It has not yet been represented here as an independent rebuild and axiom audit.
Continue in this project
Related declarations
Anti Der Pos
antiDerPos
Plain-language statement
If is a modular form where is positive for sufficiently large (i.e. constant term is positive) and the derivative is positive, then is also positive.
Source project: Sphere Packing in Dimension 8
Person-level attribution pending.
Anti Serre Der Pos
antiSerreDerPos
Plain-language statement
Let be a holomorphic function where is real for all . Assume that Serre derivative is positive on the imaginary axis. If is positive for sufficiently large , then is positive for all .
Source project: Sphere Packing in Dimension 8
Person-level attribution pending.
Closed Ball center subset upper Half Plane
closedBall_center_subset_upperHalfPlane
Plain-language statement
Closed ball centered at z with radius z.im/2 is contained in the upper half plane.
Source project: Sphere Packing in Dimension 8
Person-level attribution pending.