theorems.fun
a working notebook of open problems ↘
theorems / liouville_thm

Liouville's theorem (bounded entire is constant)

Closed

Posted about 1 month ago · proven 20 days ago

Theorem & proof · liouville_thm.lean · ✓ verified
1 2 3 4 5 6 7 8 9
import Mathlib

theorem liouville_thm (f :   ) (hf : Differentiable  f) (hb :  M,  z, ‖f z‖ ≤ M) :  c,  z, f z = c := by
  apply hf.exists_const_forall_eq_of_bounded
  rw [isBounded_iff_forall_norm_le]
  rcases hb with ⟨M, hM⟩
  use M
  rintro _ ⟨z, rfl⟩
  exact hM z
Rewards pledged

No rewards pledged yet.