Spectral Radius Equals Norm for Self-Adjoint Operators #
For a self-adjoint operator T on a complex Hilbert space L²(Ω, μ), the spectral radius satisfies r(T) = ‖T‖.
Main result #
spectralRadius_eq_nnnorm_of_selfAdjoint : For a self-adjoint bounded operator on
Lp ℂ 2 μ, the spectral radius (over ℂ) equals the operator norm.
Implementation notes #
The statement is formulated over ℂ (rather than ℝ) because:
- The C⋆-algebra structure on
E →L[ℂ] Eis available in Mathlib, givingIsSelfAdjoint.spectralRadius_eq_nnnormdirectly. - Over ℝ,
E →L[ℝ] Elacks aCStarAlgebrainstance (which requiresNormedAlgebra ℂ), and the Gelfand formula for the spectral radius is only proved for complex Banach algebras in Mathlib. - The positivity-preserving hypothesis from JentzschProof.lean is orthogonal to this result — it is self-adjointness alone that implies r(T) = ‖T‖.
For the ℝ case, one can complexify (extend T to Lp ℂ 2 μ) and apply this result; the complexified operator preserves self-adjointness and has the same norm and spectral radius.
References #
- Reed–Simon I, Theorem VI.6
- Simon, Trace Ideals, Ch. 2
For a self-adjoint bounded operator T on a complex L² space, the spectral radius equals the operator norm: r(T) = ‖T‖.
This is a direct consequence of the general C⋆-algebra result
IsSelfAdjoint.spectralRadius_eq_nnnorm, since E →L[ℂ] E is
a C⋆-algebra when E is a complex Hilbert space.
The IsPositivityPreserving hypothesis used elsewhere in the Jentzsch
proof is not needed here — self-adjointness suffices.