Skip to content

Commit f199a96

Browse files
mcdollReemMelamed
authored andcommitted
chore(Analysis/InnerProductSpace): make adjointAux private (leanprover-community#40091)
1 parent e652730 commit f199a96

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

Mathlib/Analysis/InnerProductSpace/Adjoint.lean

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,6 @@ adjoint
4747
4848
-/
4949

50-
@[expose] public section
51-
5250
noncomputable section
5351

5452
open 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
7674
definition for the main definition `adjoint`, where this is bundled as a conjugate-linear isometric
7775
equivalence. -/
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†`. -/
115115
def 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+
321323
end ContinuousLinearMap
322324

325+
@[expose] public section
326+
323327
/-! ### Self-adjoint operators -/
324328

325329

0 commit comments

Comments
 (0)