Theorem 8.7 — the trigonometric functions and
ProvedRudin.ch08_trigonometric_pianalysis
and is positive on , so is the smallest positive zero of the cosine; the complex exponential has period ; and every complex number of modulus one is for a unique .
Preamble
import Mathlib import Definitions.Def_Rudin_ch08_fourier open Filter Topology
Formal statement
namespace Rudin
/-- Rudin, Theorem 8.7: the number `π` is characterized by `cos (π/2) = 0` with `cos` positive
on `[0, π/2)`; the complex exponential has period `2πi`, and `e^{iθ}` parametrizes the unit
circle. -/
theorem ch08_trigonometric_pi :
Real.cos (Real.pi / 2) = 0 ∧
(∀ x ∈ Set.Ico (0 : ℝ) (Real.pi / 2), 0 < Real.cos x) ∧
(∀ z : ℂ, Complex.exp (z + 2 * Real.pi * Complex.I) = Complex.exp z) ∧
(∀ z : ℂ, ‖z‖ = 1 → ∃ t ∈ Set.Ico (0 : ℝ) (2 * Real.pi),
z = Complex.exp (t * Complex.I)) := by sorry
end RudinSource
Walter Rudin, Principles of Mathematical Analysis, 3rd edition, McGraw-Hill, 1976, Chapter 8, p. 183, Theorem 8.7
Read-back
What the Lean code literally says, in plain math · Aristotle (Harmonic)
Four unconditional assertions, combined into one statement, about and the exponential/trigonometric functions:
- .
- For every with : . (The left endpoint is included, the right excluded.)
- For every : — periodicity with period .
- For every with there exists a real with and — every unit complex number is on the curve, with parameter in the half-open interval.
Nothing is asserted about uniqueness of in 4, about being the least positive zero of beyond what 1 and 2 say, or about .
Human review
Confirmed by the mission captain (proposal self-audit).