Update firstMain.lean
This commit is contained in:
parent
dce2f57135
commit
c6e72864c8
@ -1,21 +1,14 @@
|
|||||||
import Mathlib.Analysis.Analytic.Meromorphic
|
import Nevanlinna.divisor
|
||||||
import Nevanlinna.holomorphic_JensenFormula
|
|
||||||
|
|
||||||
open Real
|
open Real
|
||||||
|
|
||||||
variable (f : ℂ → ℂ)
|
|
||||||
variable {h₁f : MeromorphicOn f ⊤}
|
|
||||||
variable {h₂f : f 0 ≠ 0}
|
|
||||||
|
|
||||||
|
noncomputable def Divisor.Nevanlinna.n
|
||||||
|
(D : Divisor ⊤) :
|
||||||
|
ℝ → ℤ :=
|
||||||
|
fun r ↦ ∑ᶠ z ∈ Metric.ball (0 : ℂ) r, D z
|
||||||
|
|
||||||
|
noncomputable def Divisor.Nevanlinna.integratedCounting
|
||||||
noncomputable def Nevanlinna.n : ℝ → ℤ := by
|
(D : Divisor ⊤) :
|
||||||
intro r
|
ℝ → ℝ :=
|
||||||
have : MeromorphicAt f z := by
|
fun r ↦ ∑ᶠ z ∈ Metric.ball (0 : ℂ) r, (D z) * log (r * ‖z‖⁻¹)
|
||||||
exact h₁f (sorryAx ℂ true) trivial
|
|
||||||
exact ∑ᶠ z ∈ Metric.ball (0 : ℂ) r, (h₁f z trivial).order
|
|
||||||
|
|
||||||
noncomputable def integratedCounting : ℝ → ℝ := by
|
|
||||||
intro r
|
|
||||||
-- Issue here: for s on the boundary of the ball, zero comes out.
|
|
||||||
exact ∑ᶠ s, (h₁f.order s).toNat * log (r * ‖s.1‖⁻¹)
|
|
||||||
|
Loading…
Reference in New Issue
Block a user