English
A self-adjoint element gives rise to a nonunital continuous functional calculus with spectrum constraints.
Русский
Самосопряженный элемент задаёт ненулевой непереходящий функциональный калькулятор с ограничениями по спектру.
LaTeX
$$$$ \\text{Selfadjoint CFC existence} $$$$
Lean4
/-- An element in a non-unital C⋆-algebra is selfadjoint if and only if it is normal and its
quasispectrum is contained in `ℝ`. -/
theorem isSelfAdjoint_iff_isStarNormal_and_quasispectrumRestricts {a : A} :
IsSelfAdjoint a ↔ IsStarNormal a ∧ QuasispectrumRestricts a Complex.reCLM :=
by
refine ⟨fun ha ↦ ⟨ha.isStarNormal, ⟨fun x hx ↦ ?_, Complex.ofReal_re⟩⟩, ?_⟩
· have := eqOn_of_cfcₙ_eq_cfcₙ <| (cfcₙ_star (id : ℂ → ℂ) a).symm ▸ (cfcₙ_id ℂ a).symm ▸ ha.star_eq
exact Complex.conj_eq_iff_re.mp (by simpa using this hx)
· rintro ⟨ha₁, ha₂⟩
rw [isSelfAdjoint_iff]
nth_rw 2 [← cfcₙ_id ℂ a]
rw [← cfcₙ_star_id a (R := ℂ)]
refine cfcₙ_congr fun x hx ↦ ?_
obtain ⟨x, -, rfl⟩ := ha₂.algebraMap_image.symm ▸ hx
exact Complex.conj_ofReal _