All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Chain rule T beta

Temperature.chain_rule_T_beta

Plain-language statement

Chain rule for β(T) : d/dT F(β(T)) = F'(β(T)) * (-1 / (kB * T^2)), within Ioi 0.

Exact Lean statement

lemma chain_rule_T_beta {F : ℝ → ℝ} {F' : ℝ}
    (T : Temperature) (hT_pos : 0 < T.val)
    (hF_deriv : HasDerivWithinAt F F' (Set.Ioi 0) (T.β : ℝ)) :
    HasDerivWithinAt (fun t : ℝ => F (betaFromReal t))
      (F' * (-1 / (kB * (T.val : ℝ)^2))) (Set.Ioi 0) (T.val : ℝ)

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma chain_rule_T_beta {F :   } {F' : }    (T : Temperature) (hT_pos : 0 < T.val)    (hF_deriv : HasDerivWithinAt F F' (Set.Ioi 0) (T.β : )) :    HasDerivWithinAt (fun t :  => F (betaFromReal t))      (F' * (-1 / (kB * (T.val : )^2))) (Set.Ioi 0) (T.val : ) := by  have h_map : Set.MapsTo betaFromReal (Set.Ioi 0) (Set.Ioi 0) := by    intro t ht    show 0 < betaFromReal t    rw [beta_fun_T_eq_on_Ioi ht]    exact one_div_pos.mpr (mul_pos kB_pos ht)  have h_beta_at_T : betaFromReal (T.val : ) = (T.β : ) := by    rw [beta_fun_T_eq_on_Ioi (show (T.val : )  Set.Ioi 0 from hT_pos), β_toReal]    rfl  have hF_deriv' : HasDerivWithinAt F F' (Set.Ioi 0) (betaFromReal (T.val : )) := by    rw [h_beta_at_T]    exact hF_deriv  exact hF_deriv'.comp (T.val : ) (deriv_beta_wrt_T (T := T) hT_pos) h_map
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/Thermodynamics/Temperature/Basic.lean:217-233

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