working…

This commit is contained in:
Stefan Kebekus
2024-09-13 09:21:57 +02:00
parent dba4e2d9c4
commit 6610fd49b0
2 changed files with 30 additions and 3 deletions

17
Nevanlinna/firstMain.lean Normal file
View File

@@ -0,0 +1,17 @@
import Nevanlinna.holomorphic_JensenFormula
open Real
variable {f : }
variable {h₁f : AnalyticOn f }
variable {h₂f : f 0 0}
noncomputable def unintegratedCounting : := by
intro r
let A := h₁f.mono (by tauto : Metric.closedBall (0 : ) r )
exact z, (A.order z).toNat
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⁻¹)