Basic properties of group actions #
This file primarily concerns itself with orbits, stabilizers, and other objects defined in terms of
actions. Despite this file being called basic
, low-level helper lemmas for algebraic manipulation
of •
belong elsewhere.
Main definitions #
Equations
- AddAction.instAddActionElemOrbit = AddAction.mk (_ : ∀ (m : ↑(AddAction.orbit M a)), 0 +ᵥ m = m) (_ : ∀ (m m' : M) (a' : ↑(AddAction.orbit M a)), m + m' +ᵥ a' = m +ᵥ (m' +ᵥ a'))
Equations
- MulAction.instMulActionElemOrbit = MulAction.mk (_ : ∀ (m : ↑(MulAction.orbit M a)), 1 • m = m) (_ : ∀ (m m' : M) (a' : ↑(MulAction.orbit M a)), (m * m') • a' = m • m' • a')
Equations
- (_ : motive x) = (_ : motive x)
Instances For
The stabilizer of a point a
as an additive submonoid of M
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
The submonoid of elements fixed under the whole action.
Equations
- One or more equations did not get rendered due to their size.
Instances For
The subgroup of elements fixed under the whole action.
Equations
- α^*M = let src := FixedPoints.submonoid M α; { toSubmonoid := src, inv_mem' := (_ : ∀ {x : α}, x ∈ (FixedPoints.submonoid M α).toSubsemigroup.carrier → ∀ (x_1 : M), x_1 • x⁻¹ = x⁻¹) }
Instances For
The notation for FixedPoints.subgroup
, chosen to resemble αᴹ
.
Equations
- «term_^*_» = Lean.ParserDescr.trailingNode `term_^*_ 1022 0 (Lean.ParserDescr.binary `andthen (Lean.ParserDescr.symbol "^*") (Lean.ParserDescr.cat `term 51))
Instances For
The additive submonoid of elements fixed under the whole action.
Equations
- One or more equations did not get rendered due to their size.
Instances For
The additive subgroup of elements fixed under the whole action.
Equations
- One or more equations did not get rendered due to their size.
Instances For
The notation for FixedPoints.addSubgroup
, chosen to resemble αᴹ
.
Equations
- «term_^+_» = Lean.ParserDescr.trailingNode `term_^+_ 1022 0 (Lean.ParserDescr.binary `andthen (Lean.ParserDescr.symbol "^+") (Lean.ParserDescr.cat `term 51))
Instances For
smul
by a k : M
over a ring is injective, if k
is not a zero divisor.
The general theory of such k
is elaborated by IsSMulRegular
.
The typeclass that restricts all terms of M
to have this property is NoZeroSMulDivisors
.
The action of an additive group on an orbit is transitive.
Equations
- (_ : AddAction.IsPretransitive G ↑(AddAction.orbit G a)) = (_ : AddAction.IsPretransitive G ↑(AddAction.orbit G a))
The action of a group on an orbit is transitive.
Equations
- (_ : MulAction.IsPretransitive G ↑(MulAction.orbit G a)) = (_ : MulAction.IsPretransitive G ↑(MulAction.orbit G a))
Equations
- (_ : motive x) = (_ : motive x)
Instances For
The relation 'in the same orbit'.
Equations
- AddAction.orbitRel G α = { r := fun (a b : α) => a ∈ AddAction.orbit G b, iseqv := (_ : Equivalence fun (a b : α) => a ∈ AddAction.orbit G b) }
Instances For
The relation 'in the same orbit'.
Equations
- MulAction.orbitRel G α = { r := fun (a b : α) => a ∈ MulAction.orbit G b, iseqv := (_ : Equivalence fun (a b : α) => a ∈ MulAction.orbit G b) }
Instances For
The quotient by AddAction.orbitRel
, given a name to enable dot notation.
Equations
Instances For
The quotient by MulAction.orbitRel
, given a name to enable dot notation.
Equations
Instances For
An action is pretransitive if and only if the quotient by MulAction.orbitRel
is a
subsingleton.
The orbit corresponding to an element of the quotient by AddAction.orbitRel
Equations
- AddAction.orbitRel.Quotient.orbit x = Quotient.liftOn' x (AddAction.orbit G) (_ : ∀ (x x_1 : α), x ∈ AddAction.orbit G x_1 → AddAction.orbit G x = AddAction.orbit G x_1)
Instances For
The orbit corresponding to an element of the quotient by MulAction.orbitRel
Equations
- MulAction.orbitRel.Quotient.orbit x = Quotient.liftOn' x (MulAction.orbit G) (_ : ∀ (x x_1 : α), x ∈ MulAction.orbit G x_1 → MulAction.orbit G x = MulAction.orbit G x_1)
Instances For
Note that hφ = Quotient.out_eq'
is a useful choice here.
Note that hφ = Quotient.out_eq'
is a useful choice here.
Decomposition of a type X
as a disjoint union of its orbits under an additive group action.
This version is expressed in terms of AddAction.orbitRel.Quotient.orbit
instead of
AddAction.orbit
, to avoid mentioning Quotient.out'
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Decomposition of a type X
as a disjoint union of its orbits under a group action.
This version is expressed in terms of MulAction.orbitRel.Quotient.orbit
instead of
MulAction.orbit
, to avoid mentioning Quotient.out'
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Decomposition of a type X
as a disjoint union of its orbits under an additive group
action.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Decomposition of a type X
as a disjoint union of its orbits under a group action.
Equations
- One or more equations did not get rendered due to their size.
Instances For
The stabilizer of an element under an action, i.e. what sends the element to itself. An additive subgroup.
Equations
- AddAction.stabilizer G a = let src := AddAction.stabilizerAddSubmonoid G a; { toAddSubmonoid := src, neg_mem' := (_ : ∀ {m : G}, m +ᵥ a = a → -m +ᵥ a = a) }
Instances For
The stabilizer of an element under an action, i.e. what sends the element to itself. A subgroup.
Equations
- MulAction.stabilizer G a = let src := MulAction.stabilizerSubmonoid G a; { toSubmonoid := src, inv_mem' := (_ : ∀ {m : G}, m • a = a → m⁻¹ • a = a) }
Instances For
Equations
If the stabilizer of a
is S
, then the stabilizer of g • a
is gSg⁻¹
.
A bijection between the stabilizers of two elements in the same orbit.
Equations
- One or more equations did not get rendered due to their size.
Instances For
If the stabilizer of x
is S
, then the stabilizer of g +ᵥ x
is g + S + (-g)
.
A bijection between the stabilizers of two elements in the same orbit.
Equations
- One or more equations did not get rendered due to their size.