All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Iterated Deriv tanh const mul

iteratedDeriv_tanh_const_mul

Plain-language statement

Iterated derivative for scaled tanh

Exact Lean statement

lemma iteratedDeriv_tanh_const_mul (n : ℕ) (κ : ℝ) : ∀ x : ℝ,
    iteratedDeriv n (fun y => Real.tanh (κ * y)) x = κ^n * (iteratedDeriv n Real.tanh) (κ * x)

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma iteratedDeriv_tanh_const_mul (n : ) (κ : ) :  x : ,    iteratedDeriv n (fun y => Real.tanh* y)) x = κ^n * (iteratedDeriv n Real.tanh) (κ * x) := by  induction n with  | zero =>    rw [iteratedDeriv_zero]    field_simp    simp  | succ n ih =>    rw [iteratedDeriv_succ]    have h' : iteratedDeriv n (fun y => tanh (κ * y)) =        fun x => κ ^ n * iteratedDeriv n tanh (κ * x) := by      funext x      rw [ih]    rw [h']    simp only [deriv_const_mul_field']    have h'': (fun x => iteratedDeriv n tanh (κ * x)) =        (iteratedDeriv n tanh) ∘ (fun x => κ * x) := by      funext x      simp    rw [h'']    intro x    rw [deriv_comp,  iteratedDeriv_succ]    have h''': deriv (fun x => κ * x) = fun x => κ := by      funext x      rw [deriv_const_mul,  Function.id_def]      field_simp      simp only [deriv_id', mul_one]      apply differentiable_id    rw [h''']    field_simp    ring    apply iteratedDeriv_tanh_differentiable    fun_prop
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/Mathematics/Trigonometry/Tanh.lean:174-206

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