More lemmas about group actions #
This file contains lemmas about group actions that require more imports than
Mathlib.Algebra.Group.Action.Defs
offers.
Given an action of a group α
on β
, each g : α
defines a permutation of β
.
Equations
- MulAction.toPerm a = { toFun := fun (x : β) => a • x, invFun := fun (x : β) => a⁻¹ • x, left_inv := ⋯, right_inv := ⋯ }
Instances For
Given an action of an additive group α
on β
, each g : α
defines a permutation of β
.
Equations
- AddAction.toPerm a = { toFun := fun (x : β) => a +ᵥ x, invFun := fun (x : β) => -a +ᵥ x, left_inv := ⋯, right_inv := ⋯ }
Instances For
MulAction.toPerm
is injective on faithful actions.
AddAction.toPerm
is injective on faithful actions.
Given an action of a group α
on a set β
, each g : α
defines a permutation of β
.
Equations
- MulAction.toPermHom α β = { toFun := MulAction.toPerm, map_one' := ⋯, map_mul' := ⋯ }
Instances For
Given an action of an additive group α
on a set β
, each g : α
defines a permutation of
β
.
Equations
Instances For
The tautological action by Equiv.Perm α
on α
.
This generalizes Function.End.applyMulAction
.
Equiv.Perm.applyMulAction
is faithful.
If G
acts on A
, then it acts also on A → B
, by (g • F) a = F (g⁻¹ • a)
.
Equations
- arrowAction = MulAction.mk ⋯ ⋯
Instances For
If G
acts on A
, then it acts also on A → B
, by (g +ᵥ F) a = F (g⁻¹ +ᵥ a)