All proofs
Project-declaredLean 4.31.0 · mathlib@fabf563a7c95

Deriv res To Imag Axis eq

deriv_resToImagAxis_eq

Plain-language statement

Chain rule for restriction to imaginary axis: d/dt F(it) = -2π * (D F)(it). This connects the real derivative along the imaginary axis to the normalized derivative D. The key computation is: - The imaginary axis is parametrized by g(t) = I * t - By chain rule: d/dt F(it) = (dF/dz)(it) · (d/dt)(it) = F'(it) · I - Since D = (2πi)⁻¹ · d/dz, we have F' = 2π...

Exact Lean statement

theorem deriv_resToImagAxis_eq (F : ℍ → ℂ) (hF : MDiff F) {t : ℝ} (ht : 0 < t) :
    deriv F.resToImagAxis t = -2 * π * (D F).resToImagAxis t

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
theorem deriv_resToImagAxis_eq (F : ℍ  ℂ) (hF : MDiff F) {t : } (ht : 0 < t) :    deriv F.resToImagAxis t = -2 * π * (D F).resToImagAxis t := by  let z : ℍ := I * t, by simp [ht]  let h : ℂ := fun y => Complex.mulAux (0 : ) 1 y  let g :  := h ∘ fun s :  => (s : ℂ)  have h_eq : F.resToImagAxis =ᶠ[nhds t] ((F ∘ ofComplex) ∘ g) := by    filter_upwards [lt_mem_nhds ht] with s hs    simp only [Function.resToImagAxis_apply, ResToImagAxis, hs, ↓reduceDIte,      Function.comp_apply]    change F (I * (s : ℂ), by simp [hs] : ℍ) = F (ofComplex (g s))    rw [show g s = I * (s : ℂ) by      change Complex.mulAux (0 : ) 1 (s : ℂ) = Complex.mulAux (0 : ) 1 (s : ℂ)      rfl]    rw [ofComplex_apply_of_im_pos (by simp [hs])]  rw [show deriv F.resToImagAxis t = deriv (((F ∘ ofComplex) ∘ g)) t from h_eq.deriv_eq]  rw [show deriv (((F ∘ ofComplex) ∘ g)) t = deriv (F ∘ ofComplex) z * I by    change deriv (fun y :  => F (ofComplex (Complex.mulAux (0 : ) 1 (y : ℂ)))) t =      deriv (F ∘ ofComplex) z * I    have hF' := (MDifferentiableAt_DifferentiableAt (hF z)).hasDerivAt    have hh : HasDerivAt h I (t : ℂ) := by      change HasDerivAt (fun y : ℂ => I * y) I (t : ℂ)      simpa [id, mul_one] using (hasDerivAt_id (t : ℂ)).const_mul I    simpa [h, Function.comp_def] using (hF'.comp (t : ℂ) hh).comp_ofReal.deriv]  have hD : deriv (F ∘ ofComplex) z = 2 * π * I * D F z := by simp only [D]; field_simp  simp only [hD, Function.resToImagAxis_apply, ResToImagAxis, dif_pos ht, z]  ring_nf; simp only [I_sq]; ring
Project
Sphere Packing in Dimension 8
License
Apache-2.0
Commit
acfc6204e65a
Source
SpherePacking/ModularForms/Derivative.lean:731-756

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

Project-declaredLean 4.31.0

Anti Der Pos

antiDerPos

Plain-language statement

If FF is a modular form where F(it)F(it) is positive for sufficiently large tt (i.e. constant term is positive) and the derivative is positive, then FF is also positive.

sphere packingFourier analysismodular forms

Source project: Sphere Packing in Dimension 8

Person-level attribution pending.

View proof record
Project-declaredLean 4.31.0

Anti Serre Der Pos

antiSerreDerPos

Plain-language statement

Let F:HCF : \mathbb{H} \to \mathbb{C} be a holomorphic function where F(it)F(it) is real for all t>0t > 0. Assume that Serre derivative kF\partial_k F is positive on the imaginary axis. If F(it)F(it) is positive for sufficiently large tt, then F(it)F(it) is positive for all t>0t > 0.

sphere packingFourier analysismodular forms

Source project: Sphere Packing in Dimension 8

Person-level attribution pending.

View proof record