English
If f and g satisfy the quadrant IV hypotheses and agree on the boundary, then they agree on the closed fourth quadrant.
Русский
Если f и g удовлетворяют условиям квадранта IV и совпадают на границе, то совпадают на всей закрытой четвертой четверти.
LaTeX
$$$$\\forall z \\in \\{ \\Re z \\ge 0, \\Im z \\le 0 \\}, \\ f(z) = g(z).$$$$
Lean4
/-- **Phragmen-Lindelöf principle** in the fourth quadrant. Let `f : ℂ → E` be a function such that
* `f` is differentiable in the open fourth quadrant and is continuous on its closure;
* `‖f z‖` is bounded from above by `A * exp(B * ‖z‖ ^ c)` on the open fourth quadrant
for some `A`, `B`, and `c < 2`;
* `f` is equal to zero on the boundary of the fourth quadrant.
Then `f` is equal to zero on the closed fourth quadrant. -/
theorem eq_zero_on_quadrant_IV (hd : DiffContOnCl ℂ f (Ioi 0 ×ℂ Iio 0))
(hB : ∃ c < (2 : ℝ), ∃ B, f =O[cobounded ℂ ⊓ 𝓟 (Ioi 0 ×ℂ Iio 0)] fun z => expR (B * ‖z‖ ^ c))
(hre : ∀ x : ℝ, 0 ≤ x → f x = 0) (him : ∀ x : ℝ, x ≤ 0 → f (x * I) = 0) : EqOn f 0 {z | 0 ≤ z.re ∧ z.im ≤ 0} :=
fun _z hz =>
norm_le_zero_iff.1 <|
quadrant_IV hd hB (fun x hx => norm_le_zero_iff.2 <| hre x hx) (fun x hx => norm_le_zero_iff.2 <| him x hx) hz.1
hz.2