Prod instances for additive and multiplicative actions #
This file defines instances for binary product of additive and multiplicative actions and provides
scalar multiplication as a homomorphism from α × β
to β
.
Main declarations #
smulMulHom
/smulMonoidHom
: Scalar multiplication bundled as a multiplicative/monoid homomorphism.
See also #
Mathlib.GroupTheory.GroupAction.Option
Mathlib.GroupTheory.GroupAction.Pi
Mathlib.GroupTheory.GroupAction.Sigma
Mathlib.GroupTheory.GroupAction.Sum
Porting notes #
The to_additive
attribute can be used to generate both the smul
and vadd
lemmas
from the corresponding pow
lemmas, as explained on zulip here:
https://leanprover.zulipchat.com/#narrow/near/316087838
This was not done as part of the port in order to stay as close as possible to the mathlib3 code.
Equations
- (_ : VAddAssocClass M N (α × β)) = (_ : VAddAssocClass M N (α × β))
Equations
- (_ : IsScalarTower M N (α × β)) = (_ : IsScalarTower M N (α × β))
Equations
- (_ : VAddCommClass M N (α × β)) = (_ : VAddCommClass M N (α × β))
Equations
- (_ : SMulCommClass M N (α × β)) = (_ : SMulCommClass M N (α × β))
Equations
- (_ : IsCentralVAdd M (α × β)) = (_ : IsCentralVAdd M (α × β))
Equations
- (_ : IsCentralScalar M (α × β)) = (_ : IsCentralScalar M (α × β))
Equations
- (_ : FaithfulVAdd M (α × β)) = (_ : FaithfulVAdd M (α × β))
Equations
- (_ : FaithfulSMul M (α × β)) = (_ : FaithfulSMul M (α × β))
Equations
- (_ : FaithfulVAdd M (α × β)) = (_ : FaithfulVAdd M (α × β))
Equations
- (_ : FaithfulSMul M (α × β)) = (_ : FaithfulSMul M (α × β))
Equations
- (_ : VAddCommClass M (N × P) (N × P)) = (_ : VAddCommClass M (N × P) (N × P))
Equations
- (_ : SMulCommClass M (N × P) (N × P)) = (_ : SMulCommClass M (N × P) (N × P))
Equations
- (_ : IsScalarTower M (N × P) (N × P)) = (_ : IsScalarTower M (N × P) (N × P))
Equations
- Prod.smulZeroClass = SMulZeroClass.mk (_ : ∀ (x : R), (x • 0.1, x • 0.2) = (0, 0))
Equations
- One or more equations did not get rendered due to their size.
Scalar multiplication as a homomorphism #
Scalar multiplication as a multiplicative homomorphism.
Equations
Instances For
Scalar multiplication as a monoid homomorphism.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Construct an AddAction
by a product monoid from AddAction
s by the factors.
This is not an instance to avoid diamonds for example when α := M × N
.
Equations
Instances For
Construct a MulAction
by a product monoid from MulAction
s by the factors.
This is not an instance to avoid diamonds for example when α := M × N
.
Equations
Instances For
Construct a DistribMulAction
by a product monoid from DistribMulAction
s by the factors.
Equations
- One or more equations did not get rendered due to their size.
Instances For
A DistribMulAction
by a product monoid is equivalent to
commuting DistribMulAction
s by the factors.
Equations
- One or more equations did not get rendered due to their size.