Transfer algebraic structures across Equiv
s #
In this file we prove theorems of the following form: if β
has a
group structure and α ≃ β
then α
has a group structure, and
similarly for monoids, semigroups, rings, integral domains, fields and
so on.
Note that most of these constructions can also be obtained using the transport
tactic.
Implementation details #
When adding new definitions that transfer type-classes across an equivalence, please use
abbrev
. See note [reducible non-instances].
Tags #
equiv, group, ring, field, module, algebra
Equations
Equations
Equations
Equations
Equations
Equations
Equations
Equations
An equivalence e : α ≃ β
gives a multiplicative equivalence α ≃* β
where
the multiplicative structure on α
is the one obtained by transporting a multiplicative structure
on β
back along e
.
Equations
- e.mulEquiv = { toEquiv := e, map_mul' := ⋯ }
Instances For
An equivalence e : α ≃ β
gives an additive equivalence α ≃+ β
where
the additive structure on α
is the one obtained by transporting an additive structure
on β
back along e
.
Equations
- e.addEquiv = { toEquiv := e, map_add' := ⋯ }
Instances For
Shrink α
to a smaller universe preserves multiplication.
Equations
Instances For
Shrink α
to a smaller universe preserves addition.
Equations
Instances For
An equivalence e : α ≃ β
gives a ring equivalence α ≃+* β
where the ring structure on α
is
the one obtained by transporting a ring structure on β
back along e
.
Equations
- e.ringEquiv = { toEquiv := e, map_mul' := ⋯, map_add' := ⋯ }
Instances For
Shrink α
to a smaller universe preserves ring structure.
Instances For
Equations
Equations
Transfer SemigroupWithZero
across an Equiv
Instances For
Equations
Transfer AddCommSemigroup
across an Equiv
Instances For
Equations
Equations
Equations
Equations
Equations
Transfer MulZeroOneClass
across an Equiv
Instances For
Equations
Equations
Equations
Equations
Equations
Equations
Equations
Equations
Equations
Transfer NonUnitalNonAssocSemiring
across an Equiv
Instances For
Transfer NonUnitalSemiring
across an Equiv
Instances For
Equations
Transfer AddMonoidWithOne
across an Equiv
Instances For
Equations
Transfer AddGroupWithOne
across an Equiv
Instances For
Equations
Transfer NonAssocSemiring
across an Equiv
Instances For
Equations
Transfer Semiring
across an Equiv
Equations
- e.semiring = Function.Injective.semiring ⇑e ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯
Instances For
Equations
Transfer NonUnitalCommSemiring
across an Equiv
Instances For
Equations
Transfer NonUnitalNonAssocRing
across an Equiv
Instances For
Equations
Transfer NonAssocRing
across an Equiv
Equations
- e.nonAssocRing = Function.Injective.nonAssocRing ⇑e ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯
Instances For
Equations
Equations
Transfer NonUnitalCommRing
across an Equiv
Instances For
Equations
Transfer CommRing
across an Equiv
Equations
- e.commRing = Function.Injective.commRing ⇑e ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯
Instances For
Equations
Transfer Nontrivial
across an Equiv
Equations
Equations
Transfer DivisionRing
across an Equiv
Equations
- e.divisionRing = Function.Injective.divisionRing ⇑e ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯
Instances For
Equations
Equations
Transfer DistribMulAction
across an Equiv
Instances For
Transfer Module
across an Equiv
Equations
- @Equiv.module α β R inst✝¹ e inst✝ = fun [Module R β] => let __src := Equiv.distribMulAction R e; Module.mk ⋯ ⋯
Instances For
An equivalence e : α ≃ β
gives a linear equivalence α ≃ₗ[R] β
where the R
-module structure on α
is
the one obtained by transporting an R
-module structure on β
back along e
.
Equations
- Equiv.linearEquiv R e = { toFun := e.addEquiv.toFun, map_add' := ⋯, map_smul' := ⋯, invFun := e.addEquiv.invFun, left_inv := ⋯, right_inv := ⋯ }
Instances For
Shrink α
to a smaller universe preserves module structure.
Instances For
Transfer Algebra
across an Equiv
Instances For
An equivalence e : α ≃ β
gives an algebra equivalence α ≃ₐ[R] β
where the R
-algebra structure on α
is
the one obtained by transporting an R
-algebra structure on β
back along e
.
Equations
- Equiv.algEquiv R e = { toEquiv := e.ringEquiv.toEquiv, map_mul' := ⋯, map_add' := ⋯, commutes' := ⋯ }
Instances For
Shrink α
to a smaller universe preserves algebra structure.
Instances For
Transport a module instance via an isomorphism of the underlying abelian groups.
This has better definitional properties than Equiv.module
since here
the abelian group structure remains unmodified.
Instances For
The module instance from AddEquiv.module
is compatible with the R
-module structures,
if the AddEquiv
is induced by an R
-module isomorphism.