Group actions applied to various types of group #
This file contains lemmas about SMul
on GroupWithZero
, and Group
.
AddMonoid.toAddAction
is faithful on additive cancellative monoids.
Equations
- ⋯ = ⋯
Monoid.toMulAction
is faithful on cancellative monoids.
Equations
- ⋯ = ⋯
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
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
AddAction.toPerm
is injective on faithful actions.
MulAction.toPerm
is injective on faithful actions.
Given an action of a group α
on a set β
, each g : α
defines a permutation of β
.
Equations
- MulAction.toPermHom α β = { toOneHom := { 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
- AddAction.toPermHom β α = MonoidHom.toAdditive'' (MulAction.toPermHom (Multiplicative α) β)
Instances For
Equiv.Perm.applyMulAction
is faithful.
Equations
- ⋯ = ⋯
Monoid.toMulAction
is faithful on nontrivial cancellative monoids with zero.
Equations
- ⋯ = ⋯
Right scalar multiplication as an order isomorphism.
Equations
- Equiv.smulRight ha = { toFun := fun (b : β) => a • b, invFun := fun (b : β) => a⁻¹ • b, left_inv := ⋯, right_inv := ⋯ }
Instances For
Each element of the group defines an additive monoid isomorphism.
This is a stronger version of MulAction.toPerm
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Each element of the group defines an additive monoid isomorphism.
This is a stronger version of MulAction.toPermHom
.
Equations
- DistribMulAction.toAddAut α β = { toOneHom := { toFun := DistribMulAction.toAddEquiv β, map_one' := ⋯ }, map_mul' := ⋯ }
Instances For
Each non-zero element of a GroupWithZero
defines an additive monoid isomorphism of an
AddMonoid
on which it acts distributively.
This is a stronger version of DistribMulAction.toAddMonoidHom
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Each element of the group defines a multiplicative monoid isomorphism.
This is a stronger version of MulAction.toPerm
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Each element of the group defines a multiplicative monoid isomorphism.
This is a stronger version of MulAction.toPermHom
.
Equations
- MulDistribMulAction.toMulAut α β = { toOneHom := { toFun := MulDistribMulAction.toMulEquiv β, map_one' := ⋯ }, map_mul' := ⋯ }
Instances For
If G
acts on A
, then it acts also on A → B
, by (g +ᵥ F) a = F (g⁻¹ +ᵥ a)
Equations
- arrowAddAction = AddAction.mk ⋯ ⋯
Instances For
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
When B
is a monoid, ArrowAction
is additionally a MulDistribMulAction
.
Equations
- arrowMulDistribMulAction = MulDistribMulAction.mk ⋯ ⋯