All proofs
Project-declaredLean 4.32.0 ยท mathlib@81a5d257c8e4

Thermodynamic Entropy eq shannon Entropy

CanonicalEnsemble.thermodynamicEntropy_eq_shannonEntropy

Plain-language statement

In the finite, nonempty case the thermodynamic and Shannon entropies coincide. All semi-classical correction factors vanish (dof = 0, phaseSpaceUnit = 1), so the absolute thermodynamic entropy reduces to the discrete Shannon form.

Exact Lean statement

theorem thermodynamicEntropy_eq_shannonEntropy [MeasurableSingletonClass ฮน] [IsFinite ๐“’]
    (T : Temperature) :-- (hT : 0 < T.val) :
    ๐“’.thermodynamicEntropy T = ๐“’.shannonEntropy T

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
theorem thermodynamicEntropy_eq_shannonEntropy [MeasurableSingletonClass ฮน] [IsFinite ๐“’]    (T : Temperature) :-- (hT : 0 < T.val) :    ๐“’.thermodynamicEntropy T = ๐“’.shannonEntropy T := by  have h_thermo_eq_diff :      ๐“’.thermodynamicEntropy T = ๐“’.differentialEntropy T := by    unfold CanonicalEnsemble.thermodynamicEntropy      CanonicalEnsemble.differentialEntropy    have h_log :        (fun i => Real.log (๐“’.physicalProbability T i))          = (fun i => Real.log (๐“’.probability T i)) := by      funext i      simp [CanonicalEnsemble.physicalProbability,            IsFinite.dof_eq_zero (๐“’:=๐“’),            IsFinite.phase_space_unit_eq_one (๐“’:=๐“’)]    simp_all only [physicalProbability_def]  have h_shannon :      ๐“’.shannonEntropy T = ๐“’.differentialEntropy T :=    (shannonEntropy_eq_differentialEntropy (๐“’:=๐“’) T)  calc    ๐“’.thermodynamicEntropy T        = ๐“’.differentialEntropy T := h_thermo_eq_diff    _ = ๐“’.shannonEntropy T := h_shannon.symm
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/StatisticalMechanics/CanonicalEnsemble/Finite.lean:284-305

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