More operations on subalgebras #
In this file we relate the definitions in Mathlib/RingTheory/Ideal/Operations.lean to subalgebras.
The contents of this file are somewhat random since both
Mathlib/Algebra/Algebra/Subalgebra/Basic.lean and Mathlib/RingTheory/Ideal/Operations.lean are
somewhat of a grab-bag of definitions, and this is whatever ends up in the intersection.
Suppose we are given ∑ i, lᵢ * sᵢ = 1 ∈ S, and S' a subalgebra of S that contains
lᵢ and sᵢ. To check that an x : S falls in S', we only need to show that
sᵢ ^ n • x ∈ S' for some n for each sᵢ.
Alias of Subalgebra.mem_of_finsetSum_eq_one_of_pow_smul_mem.
Suppose we are given ∑ i, lᵢ * sᵢ = 1 ∈ S, and S' a subalgebra of S that contains
lᵢ and sᵢ. To check that an x : S falls in S', we only need to show that
sᵢ ^ n • x ∈ S' for some n for each sᵢ.
The set of fixed points under a group action, as a subring.
Equations
- FixedPoints.subsemiring B' G = { carrier := (FixedPoints.addSubmonoid G B').carrier, mul_mem' := ⋯, one_mem' := ⋯, add_mem' := ⋯, zero_mem' := ⋯ }
Instances For
The set of fixed points under a group action, as a subring.
Equations
Instances For
The set of fixed points under a group action, as a subalgebra.
Equations
- FixedPoints.subalgebra A B' G = { toSubsemiring := FixedPoints.subsemiring B' G, algebraMap_mem' := ⋯ }