All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Polynomial tanh bounded

polynomial_tanh_bounded

Plain-language statement

For a polynomial P, show that P (tanh x) is bounded on the real line

Exact Lean statement

lemma polynomial_tanh_bounded (P : Polynomial ℝ) :
    ∃ C : ℝ, ∀ x : ℝ, |P.eval (Real.tanh x)| ≤ C

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma polynomial_tanh_bounded (P : Polynomial ) :     C : ,  x : , |P.eval (Real.tanh x)|  C := by  -- Since tanh maps to (-1, 1), it maps to [-1+ε, 1-ε] for any ε > 0  -- But more directly, tanh maps to (-1, 1) ⊆ [-1, 1]  have h_range :  x : , Real.tanh x  Set.Icc (-1) 1 := by    intro x    constructor    · exact le_of_lt (neg_one_lt_tanh x)    · exact le_of_lt (tanh_lt_one x)  -- Apply polynomial boundedness on [-1, 1]  obtain M, hM := polynomial_bounded_on_interval P (-1) 1  use M  intro x  exact hM (Real.tanh x) (h_range x)
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/Mathematics/Trigonometry/Tanh.lean:109-122

Reuse this declaration

Bring the exact result into your workflow

The import identifies the source module. Your project still needs the pinned package dependency shown on this page.

What this badge means

This completion status comes from the project or community source. It has not yet been represented here as an independent rebuild and axiom audit.

Continue in this project

Related declarations

Project-declaredLean 4.32.0

Adiabatic relation log

adiabatic_relation_log

Plain-language statement

Adiabatic relation in logarithmic form: If S(Ua,Va,N) = S(Ub,Vb,N) with N fixed, then c * log (Ua/Ub) + log (Va/Vb) = 0.

physicsquantum field theoryrelativity

Source project: Physlib

Person-level attribution pending.

View proof record
Project-declaredLean 4.32.0

Adiabatic relation Ua Ub Va Vb

adiabatic_relation_UaUbVaVb

Plain-language statement

Adiabatic relation in product form: If S(Ua,Va,N) = S(Ub,Vb,N) with N fixed, then (Ua/Ub)^c * (Va/Vb) = 1.

physicsquantum field theoryrelativity

Source project: Physlib

Person-level attribution pending.

View proof record