Lifting algebraic data classes along injective/surjective maps #
This file provides definitions that are meant to deal with situations such as the following:
Suppose that G
is a group, and H
is a type endowed with
One H
, Mul H
, and Inv H
.
Suppose furthermore, that f : G → H
is a surjective map
that respects the multiplication, and the unit elements.
Then H
satisfies the group axioms.
The relevant definition in this case is Function.Surjective.group
.
Dually, there is also Function.Injective.group
.
And there are versions for (additive) (commutative) semigroups/monoids.
Implementation note #
The nsmul
and zsmul
assumptions on any transfer definition for an algebraic structure involving
both addition and multiplication (eg AddMonoidWithOne
) is ∀ n x, f (n • x) = n • f x
, which is
what we would expect.
However, we cannot do the same for transfer definitions built using to_additive
(eg AddMonoid
)
as we want the multiplicative versions to be ∀ x n, f (x ^ n) = f x ^ n
.
As a result, we must use Function.swap
when using additivised transfer definitions in
non-additivised ones.
Injective #
A type endowed with *
is a semigroup, if it admits an injective map that preserves *
to
a semigroup. See note [reducible non-instances].
Instances For
A type endowed with +
is an additive semigroup, if it admits an
injective map that preserves +
to an additive semigroup.
Instances For
A type endowed with *
is a commutative magma, if it admits a surjective map that preserves
*
from a commutative magma.
Instances For
A type endowed with +
is an additive commutative semigroup, if it admits
a surjective map that preserves +
from an additive commutative semigroup.
Instances For
A type endowed with *
is a commutative semigroup, if it admits an injective map that
preserves *
to a commutative semigroup. See note [reducible non-instances].
Instances For
A type endowed with +
is an additive commutative semigroup,if it admits
an injective map that preserves +
to an additive commutative semigroup.
Instances For
A type endowed with *
is a left cancel semigroup, if it admits an injective map that
preserves *
to a left cancel semigroup. See note [reducible non-instances].
Instances For
A type endowed with +
is an additive left cancel
semigroup, if it admits an injective map that preserves +
to an additive left cancel semigroup.
Instances For
A type endowed with *
is a right cancel semigroup, if it admits an injective map that
preserves *
to a right cancel semigroup. See note [reducible non-instances].
Instances For
A type endowed with +
is an additive right
cancel semigroup, if it admits an injective map that preserves +
to an additive right cancel
semigroup.
Instances For
A type endowed with 1
and *
is a MulOneClass
, if it admits an injective map that
preserves 1
and *
to a MulOneClass
. See note [reducible non-instances].
Instances For
A type endowed with 0
and +
is an AddZeroClass
, if it admits an
injective map that preserves 0
and +
to an AddZeroClass
.
Instances For
A type endowed with 1
and *
is a monoid, if it admits an injective map that preserves 1
and *
to a monoid. See note [reducible non-instances].
Equations
Instances For
A type endowed with 0
and +
is an additive monoid, if it admits an
injective map that preserves 0
and +
to an additive monoid. See note
[reducible non-instances].
Equations
Instances For
A type endowed with 0
, 1
and +
is an additive monoid with one,
if it admits an injective map that preserves 0
, 1
and +
to an additive monoid with one.
See note [reducible non-instances].
Equations
Instances For
A type endowed with 1
and *
is a left cancel monoid, if it admits an injective map that
preserves 1
and *
to a left cancel monoid. See note [reducible non-instances].
Instances For
A type endowed with 0
and +
is an additive left cancel monoid, if it
admits an injective map that preserves 0
and +
to an additive left cancel monoid.
Instances For
A type endowed with 1
and *
is a right cancel monoid, if it admits an injective map that
preserves 1
and *
to a right cancel monoid. See note [reducible non-instances].
Instances For
A type endowed with 0
and +
is an additive left cancel monoid,if it
admits an injective map that preserves 0
and +
to an additive left cancel monoid.
Instances For
A type endowed with 1
and *
is a cancel monoid, if it admits an injective map that preserves
1
and *
to a cancel monoid. See note [reducible non-instances].
Instances For
A type endowed with 0
and +
is an additive left cancel monoid,if it
admits an injective map that preserves 0
and +
to an additive left cancel monoid.
Instances For
A type endowed with 1
and *
is a commutative monoid, if it admits an injective map that
preserves 1
and *
to a commutative monoid. See note [reducible non-instances].
Instances For
A type endowed with 0
and +
is an additive commutative monoid, if it
admits an injective map that preserves 0
and +
to an additive commutative monoid.
Instances For
A type endowed with 0
, 1
and +
is an additive commutative monoid with one, if it admits an
injective map that preserves 0
, 1
and +
to an additive commutative monoid with one.
See note [reducible non-instances].
Equations
Instances For
A type endowed with 1
and *
is a cancel commutative monoid, if it admits an injective map
that preserves 1
and *
to a cancel commutative monoid. See note [reducible non-instances].
Instances For
A type endowed with 0
and +
is an additive cancel commutative monoid,
if it admits an injective map that preserves 0
and +
to an additive cancel commutative monoid.
Instances For
A type has an involutive inversion if it admits a surjective map that preserves ⁻¹
to a type
which has an involutive inversion. See note [reducible non-instances]
Instances For
A type has an involutive negation if it admits a surjective map that
preserves -
to a type which has an involutive negation.
Instances For
A type endowed with 1
and ⁻¹
is a InvOneClass
, if it admits an injective map that
preserves 1
and ⁻¹
to a InvOneClass
. See note [reducible non-instances].
Instances For
A type endowed with 0
and unary -
is an NegZeroClass
, if it admits an
injective map that preserves 0
and unary -
to an NegZeroClass
.
Instances For
A type endowed with 1
, *
, ⁻¹
, and /
is a DivInvMonoid
if it admits an injective map
that preserves 1
, *
, ⁻¹
, and /
to a DivInvMonoid
. See note [reducible non-instances].
Equations
Instances For
A type endowed with 0
, +
, unary -
, and binary -
is a
SubNegMonoid
if it admits an injective map that preserves 0
, +
, unary -
, and binary -
to
a SubNegMonoid
. This version takes custom nsmul
and zsmul
as [SMul ℕ M₁]
and [SMul ℤ M₁]
arguments.
Equations
Instances For
A type endowed with 1
, *
, ⁻¹
, and /
is a DivInvOneMonoid
if it admits an injective
map that preserves 1
, *
, ⁻¹
, and /
to a DivInvOneMonoid
. See note
[reducible non-instances].
Instances For
A type endowed with 0
, +
, unary -
, and binary -
is a
SubNegZeroMonoid
if it admits an injective map that preserves 0
, +
, unary -
, and binary
-
to a SubNegZeroMonoid
. This version takes custom nsmul
and zsmul
as [SMul ℕ M₁]
and
[SMul ℤ M₁]
arguments.
Instances For
A type endowed with 1
, *
, ⁻¹
, and /
is a DivisionMonoid
if it admits an injective map
that preserves 1
, *
, ⁻¹
, and /
to a DivisionMonoid
. See note [reducible non-instances]
Instances For
A type endowed with 0
, +
, unary -
, and binary -
is a SubtractionMonoid
if it admits an injective map that preserves 0
, +
, unary -
, and
binary -
to a SubtractionMonoid
. This version takes custom nsmul
and zsmul
as [SMul ℕ M₁]
and [SMul ℤ M₁]
arguments.
Equations
Instances For
A type endowed with 1
, *
, ⁻¹
, and /
is a DivisionCommMonoid
if it admits an
injective map that preserves 1
, *
, ⁻¹
, and /
to a DivisionCommMonoid
.
See note [reducible non-instances].
Equations
Instances For
A type endowed with 0
, +
, unary -
, and binary
-
is a SubtractionCommMonoid
if it admits an injective map that preserves 0
, +
, unary -
,
and binary -
to a SubtractionCommMonoid
. This version takes custom nsmul
and zsmul
as
[SMul ℕ M₁]
and [SMul ℤ M₁]
arguments.
Equations
Instances For
A type endowed with 1
, *
and ⁻¹
is a group, if it admits an injective map that preserves
1
, *
and ⁻¹
to a group. See note [reducible non-instances].
Instances For
A type endowed with 0
and +
is an additive group, if it admits an
injective map that preserves 0
and +
to an additive group.
Instances For
A type endowed with 0
, 1
and +
is an additive group with one, if it admits an injective
map that preserves 0
, 1
and +
to an additive group with one. See note
[reducible non-instances].
Equations
Instances For
A type endowed with 1
, *
and ⁻¹
is a commutative group, if it admits an injective map that
preserves 1
, *
and ⁻¹
to a commutative group. See note [reducible non-instances].
Instances For
A type endowed with 0
and +
is an additive commutative group, if it
admits an injective map that preserves 0
and +
to an additive commutative group.
Instances For
A type endowed with 0
, 1
and +
is an additive commutative group with one, if it admits an
injective map that preserves 0
, 1
and +
to an additive commutative group with one.
See note [reducible non-instances].
Equations
Instances For
Surjective #
A type endowed with *
is a semigroup, if it admits a surjective map that preserves *
from a
semigroup. See note [reducible non-instances].
Instances For
A type endowed with +
is an additive semigroup, if it admits a
surjective map that preserves +
from an additive semigroup.
Instances For
A type endowed with *
is a commutative semigroup, if it admits a surjective map that preserves
*
from a commutative semigroup. See note [reducible non-instances].
Instances For
A type endowed with +
is an additive commutative semigroup, if it admits
a surjective map that preserves +
from an additive commutative semigroup.
Instances For
A type endowed with *
is a commutative semigroup, if it admits a surjective map that preserves
*
from a commutative semigroup. See note [reducible non-instances].
Instances For
A type endowed with +
is an additive commutative semigroup, if it admits
a surjective map that preserves +
from an additive commutative semigroup.
Instances For
A type endowed with 1
and *
is a MulOneClass
, if it admits a surjective map that preserves
1
and *
from a MulOneClass
. See note [reducible non-instances].
Instances For
A type endowed with 0
and +
is an AddZeroClass
, if it admits a
surjective map that preserves 0
and +
to an AddZeroClass
.
Instances For
A type endowed with 1
and *
is a monoid, if it admits a surjective map that preserves 1
and *
to a monoid. See note [reducible non-instances].
Equations
Instances For
A type endowed with 0
and +
is an additive monoid, if it admits a
surjective map that preserves 0
and +
to an additive monoid. This version takes a custom nsmul
as a [SMul ℕ M₂]
argument.
Equations
Instances For
A type endowed with 0
, 1
and +
is an additive monoid with one, if it admits a surjective
map that preserves 0
, 1
and *
from an additive monoid with one. See note
[reducible non-instances].
Equations
Instances For
A type endowed with 1
and *
is a commutative monoid, if it admits a surjective map that
preserves 1
and *
from a commutative monoid. See note [reducible non-instances].
Instances For
A type endowed with 0
and +
is an additive commutative monoid, if it
admits a surjective map that preserves 0
and +
to an additive commutative monoid.
Instances For
A type endowed with 0
, 1
and +
is an additive monoid with one,
if it admits a surjective map that preserves 0
, 1
and *
from an additive monoid with one.
See note [reducible non-instances].
Equations
Instances For
A type has an involutive inversion if it admits a surjective map that preserves ⁻¹
to a type
which has an involutive inversion. See note [reducible non-instances]
Instances For
A type has an involutive negation if it admits a surjective map that
preserves -
to a type which has an involutive negation.
Instances For
A type endowed with 1
, *
, ⁻¹
, and /
is a DivInvMonoid
if it admits a surjective map
that preserves 1
, *
, ⁻¹
, and /
to a DivInvMonoid
. See note [reducible non-instances].
Equations
Instances For
A type endowed with 0
, +
, unary -
, and binary -
is a
SubNegMonoid
if it admits a surjective map that preserves 0
, +
, unary -
, and binary -
to
a SubNegMonoid
.
Equations
Instances For
A type endowed with 1
, *
and ⁻¹
is a group, if it admits a surjective map that preserves
1
, *
and ⁻¹
to a group. See note [reducible non-instances].
Instances For
A type endowed with 0
and +
is an additive group, if it admits a
surjective map that preserves 0
and +
to an additive group.
Instances For
A type endowed with 0
, 1
, +
is an additive group with one,
if it admits a surjective map that preserves 0
, 1
, and +
to an additive group with one.
See note [reducible non-instances].
Equations
Instances For
A type endowed with 1
, *
, ⁻¹
, and /
is a commutative group, if it admits a surjective
map that preserves 1
, *
, ⁻¹
, and /
from a commutative group. See note
[reducible non-instances].
Instances For
A type endowed with 0
and +
is an additive commutative group, if it
admits a surjective map that preserves 0
and +
to an additive commutative group.
Instances For
A type endowed with 0
, 1
, +
is an additive commutative group with one, if it admits a
surjective map that preserves 0
, 1
, and +
to an additive commutative group with one.
See note [reducible non-instances].