Theorem 8.6 — properties of the exponential function
ProvedRudin.ch08_exp_propertiesanalysis
The exponential function satisfies ; it is its own derivative; it is strictly increasing and positive on with as and as ; and for every , so grows faster than every power.
Preamble
import Mathlib import Definitions.Def_Rudin_ch08_fourier open Filter Topology
Formal statement
namespace Rudin
/-- Rudin, Theorem 8.6: the exponential function satisfies the addition formula, is its own
derivative, is positive and strictly increasing on the real line with limits `+∞` and `0` at
`±∞`, and grows faster than every power. -/
theorem ch08_exp_properties :
(∀ z w : ℂ, Complex.exp (z + w) = Complex.exp z * Complex.exp w) ∧
(∀ x : ℝ, HasDerivAt Real.exp (Real.exp x) x) ∧
StrictMono Real.exp ∧
Tendsto Real.exp atTop atTop ∧
Tendsto Real.exp atBot (𝓝 0) ∧
(∀ n : ℕ, Tendsto (fun x : ℝ => x ^ n * Real.exp (-x)) atTop (𝓝 0)) := by sorry
end RudinSource
Walter Rudin, Principles of Mathematical Analysis, 3rd edition, McGraw-Hill, 1976, Chapter 8, p. 180, Theorem 8.6
Read-back
What the Lean code literally says, in plain math · Aristotle (Harmonic)
Six unconditional assertions about the exponential function, combined into one statement:
- Addition formula (complex). For all : .
- Derivative (real). For every , the real exponential is differentiable at with derivative .
- Strict monotonicity. The real exponential is strictly increasing: .
- Limit at . as .
- Limit at . as .
- Dominance over powers. For every natural number : as .
Positivity of is not stated explicitly. Item 6 includes .
Human review
Confirmed by the mission captain (proposal self-audit).