@@ -47,8 +47,6 @@ adjoint
4747
4848-/
4949
50- @[expose] public section
51-
5250noncomputable section
5351
5452open Module RCLike
@@ -75,7 +73,7 @@ variable [CompleteSpace E] [CompleteSpace G]
7573/-- The adjoint, as a continuous conjugate-linear map. This is only meant as an auxiliary
7674definition for the main definition `adjoint`, where this is bundled as a conjugate-linear isometric
7775equivalence. -/
78- noncomputable def adjointAux : (E →L[𝕜] F) →L⋆[𝕜] F →L[𝕜] E :=
76+ def adjointAux : (E →L[𝕜] F) →L⋆[𝕜] F →L[𝕜] E :=
7977 (ContinuousLinearMap.compSL _ _ _ _ _ ((toDual 𝕜 E).symm : StrongDual 𝕜 E →L⋆[𝕜] E)).comp
8078 (toSesqForm : (E →L[𝕜] F) →L[𝕜] F →L⋆[𝕜] StrongDual 𝕜 E)
8179
@@ -110,6 +108,8 @@ theorem adjointAux_norm (A : E →L[𝕜] F) : ‖adjointAux A‖ = ‖A‖ := b
110108 rw [adjointAux_apply, LinearIsometryEquiv.norm_map]
111109 exact toSesqForm_apply_norm_le
112110
111+ public section
112+
113113/-- The adjoint of a bounded operator `A` from a Hilbert space `E` to another Hilbert space `F`,
114114 denoted as `A†`. -/
115115def adjoint : (E →L[𝕜] F) ≃ₗᵢ⋆[𝕜] F →L[𝕜] E :=
@@ -318,8 +318,12 @@ lemma _root_.InnerProductSpace.rankOne_comp {E G : Type*} [SeminormedAddCommGrou
318318 rankOne 𝕜 x y ∘L f = rankOne 𝕜 x (adjoint f y) := by
319319 simp_rw [rankOne_def', comp_assoc, innerSL_apply_comp]
320320
321+ end
322+
321323end ContinuousLinearMap
322324
325+ @[expose] public section
326+
323327/-! ### Self-adjoint operators -/
324328
325329
0 commit comments