Star subalgebras #
A *-subalgebra is a subalgebra of a *-algebra which is closed under *.
The centralizer of a *-closed set is a *-subalgebra.
A *-subalgebra is a subalgebra of a *-algebra which is closed under *.
Instances For
The carrier
is closed under the star
operation.
Equations
- StarSubalgebra.setLike = { coe := fun (S : StarSubalgebra R A) => S.carrier, coe_injective' := ⋯ }
Equations
- ⋯ = ⋯
Equations
- ⋯ = ⋯
Equations
- ⋯ = ⋯
Equations
- ⋯ = ⋯
Equations
- s.starRing = StarRing.mk ⋯
Equations
- s.algebra = s.algebra'
Equations
- ⋯ = ⋯
Copy of a star subalgebra with a new carrier
equal to the old one. Useful to fix definitional
equalities.
Equations
- S.copy s hs = { toSubalgebra := S.copy s hs, star_mem' := ⋯ }
Instances For
Embedding of a subalgebra into the algebra.
Equations
- S.subtype = { toFun := Subtype.val, map_one' := ⋯, map_mul' := ⋯, map_zero' := ⋯, map_add' := ⋯, commutes' := ⋯, map_star' := ⋯ }
Instances For
The inclusion map between StarSubalgebra
s given by Subtype.map id
as a StarAlgHom
.
Equations
- StarSubalgebra.inclusion h = { toFun := Subtype.map id h, map_one' := ⋯, map_mul' := ⋯, map_zero' := ⋯, map_add' := ⋯, commutes' := ⋯, map_star' := ⋯ }
Instances For
Transport a star subalgebra via a star algebra homomorphism.
Equations
- StarSubalgebra.map f S = { toSubalgebra := Subalgebra.map f.toAlgHom S.toSubalgebra, star_mem' := ⋯ }
Instances For
Preimage of a star subalgebra under a star algebra homomorphism.
Equations
- StarSubalgebra.comap f S = { toSubalgebra := Subalgebra.comap f.toAlgHom S.toSubalgebra, star_mem' := ⋯ }
Instances For
The centralizer, or commutant, of the star-closure of a set as a star subalgebra.
Equations
- StarSubalgebra.centralizer R s = { toSubalgebra := Subalgebra.centralizer R (s ∪ star s), star_mem' := ⋯ }
Instances For
The star closure of a subalgebra #
The pointwise star
of a subalgebra is a subalgebra.
Equations
- Subalgebra.involutiveStar = InvolutiveStar.mk ⋯
The star operation on Subalgebra
commutes with Algebra.adjoin
.
The StarSubalgebra
obtained from S : Subalgebra R A
by taking the smallest subalgebra
containing both S
and star S
.
Instances For
The star subalgebra generated by a set #
The minimal star subalgebra that contains s
.
Equations
- StarAlgebra.adjoin R s = { toSubalgebra := Algebra.adjoin R (s ∪ star s), star_mem' := ⋯ }
Instances For
Galois insertion between adjoin
and coe
.
Equations
- StarAlgebra.gi = { choice := fun (s : Set A) (hs : ↑(StarAlgebra.adjoin R s) ≤ s) => (StarAlgebra.adjoin R s).copy s ⋯, gc := ⋯, le_l_u := ⋯, choice_eq := ⋯ }
Instances For
If some predicate holds for all x ∈ (s : Set A)
and this predicate is closed under the
algebraMap
, addition, multiplication and star operations, then it holds for a ∈ adjoin R s
.
The difference with StarSubalgebra.adjoin_induction
is that this acts on the subtype.
If all elements of s : Set A
commute pairwise and also commute pairwise with elements of
star s
, then StarSubalgebra.adjoin R s
is commutative. See note [reducible non-instances].
Equations
- StarAlgebra.adjoinCommSemiringOfComm R hcomm hcomm_star = CommSemiring.mk ⋯
Instances For
If all elements of s : Set A
commute pairwise and also commute pairwise with elements of
star s
, then StarSubalgebra.adjoin R s
is commutative. See note [reducible non-instances].
Equations
- StarAlgebra.adjoinCommRingOfComm R hcomm hcomm_star = CommRing.mk ⋯
Instances For
The star subalgebra StarSubalgebra.adjoin R {x}
generated by a single x : A
is commutative
if x
is normal.
Equations
The star subalgebra StarSubalgebra.adjoin R {x}
generated by a single x : A
is commutative
if x
is normal.
Equations
Complete lattice structure #
Equations
- StarSubalgebra.completeLattice = CompleteLattice.mk ⋯ ⋯ ⋯ ⋯ ⋯ ⋯
The equalizer of two star R
-algebra homomorphisms.
Equations
- StarAlgHom.equalizer f g = { toSubalgebra := AlgHom.equalizer ↑f ↑g, star_mem' := ⋯ }
Instances For
Range of a StarAlgHom
as a star subalgebra.
Equations
- φ.range = { toSubalgebra := φ.range, star_mem' := ⋯ }
Instances For
Restriction of the codomain of a StarAlgHom
to a star subalgebra containing the range.
Equations
- f.codRestrict S hf = { toAlgHom := f.codRestrict S.toSubalgebra hf, map_star' := ⋯ }
Instances For
Restriction of the codomain of a StarAlgHom
to its range.
Equations
- f.rangeRestrict = f.codRestrict f.range ⋯
Instances For
The StarAlgEquiv
onto the range corresponding to an injective StarAlgHom
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- StarAlgHom.restrictScalars R f = { toAlgHom := AlgHom.restrictScalars R f.toAlgHom, map_star' := ⋯ }
Instances For
Equations
- StarAlgEquiv.restrictScalars R f = { toFun := ⇑f, invFun := f.invFun, left_inv := ⋯, right_inv := ⋯, map_mul' := ⋯, map_add' := ⋯, map_star' := ⋯, map_smul' := ⋯ }