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.
Injective #
A type endowed with + is an additive semigroup, if it admits an
injective map that preserves + to an additive semigroup.
Equations
- Function.Injective.addSemigroup f hf mul = let src := inst; AddSemigroup.mk (_ : ∀ (x y z : M₁), x + y + z = x + (y + z))
Instances For
A type endowed with * is a semigroup, if it admits an injective map that preserves * to
a semigroup. See note [reducible non-instances].
Equations
- Function.Injective.semigroup f hf mul = let src := inst; Semigroup.mk (_ : ∀ (x y z : M₁), x * y * z = x * (y * z))
Instances For
A type endowed with + is an additive commutative semigroup,if it admits
an injective map that preserves + to an additive commutative semigroup.
Equations
- Function.Injective.addCommSemigroup f hf mul = let src := Function.Injective.addSemigroup f hf mul; AddCommSemigroup.mk (_ : ∀ (x y : M₁), x + y = y + x)
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].
Equations
- Function.Injective.commSemigroup f hf mul = let src := Function.Injective.semigroup f hf mul; CommSemigroup.mk (_ : ∀ (x y : M₁), x * y = y * x)
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.
Equations
- Function.Injective.addLeftCancelSemigroup f hf mul = let src := Function.Injective.addSemigroup f hf mul; AddLeftCancelSemigroup.mk (_ : ∀ (x y z : M₁), x + y = x + z → y = z)
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].
Equations
- Function.Injective.leftCancelSemigroup f hf mul = let src := Function.Injective.semigroup f hf mul; LeftCancelSemigroup.mk (_ : ∀ (x y z : M₁), x * y = x * z → y = z)
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.
Equations
- Function.Injective.addRightCancelSemigroup f hf mul = let src := Function.Injective.addSemigroup f hf mul; AddRightCancelSemigroup.mk (_ : ∀ (x y z : M₁), x + y = z + y → x = z)
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].
Equations
- Function.Injective.rightCancelSemigroup f hf mul = let src := Function.Injective.semigroup f hf mul; RightCancelSemigroup.mk (_ : ∀ (x y z : M₁), x * y = z * y → x = z)
Instances For
A type endowed with 0 and + is an AddZeroClass, if it admits an
injective map that preserves 0 and + to an AddZeroClass.
Equations
- Function.Injective.addZeroClass f hf one mul = let src := inst; let src_1 := inst; AddZeroClass.mk (_ : ∀ (x : M₁), 0 + x = x) (_ : ∀ (x : M₁), x + 0 = x)
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].
Equations
- Function.Injective.mulOneClass f hf one mul = let src := inst; let src_1 := inst; MulOneClass.mk (_ : ∀ (x : M₁), 1 * x = x) (_ : ∀ (x : M₁), x * 1 = x)
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
- One or more equations did not get rendered due to their size.
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
- One or more equations did not get rendered due to their size.
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
- Function.Injective.addMonoidWithOne f hf zero one add nsmul nat_cast = let src := Function.Injective.addMonoid f hf zero add nsmul; AddMonoidWithOne.mk
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.
Equations
- One or more equations did not get rendered due to their size.
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].
Equations
- One or more equations did not get rendered due to their size.
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.
Equations
- One or more equations did not get rendered due to their size.
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].
Equations
- One or more equations did not get rendered due to their size.
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.
Equations
- One or more equations did not get rendered due to their size.
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].
Equations
- One or more equations did not get rendered due to their size.
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.
Equations
- One or more equations did not get rendered due to their size.
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].
Equations
- One or more equations did not get rendered due to their size.
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
- One or more equations did not get rendered due to their size.
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.
Equations
- One or more equations did not get rendered due to their size.
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].
Equations
- One or more equations did not get rendered due to their size.
Instances For
A type has an involutive negation if it admits a surjective map that
preserves - to a type which has an involutive negation.
Equations
- Function.Injective.involutiveNeg f hf inv = InvolutiveNeg.mk (_ : ∀ (x : M₁), - -x = x)
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]
Equations
- Function.Injective.involutiveInv f hf inv = InvolutiveInv.mk (_ : ∀ (x : M₁), x⁻¹⁻¹ = x)
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.
Equations
- Function.Injective.negZeroClass f hf one inv = let src := inst; let src_1 := inst; NegZeroClass.mk (_ : -0 = 0)
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].
Equations
- Function.Injective.invOneClass f hf one inv = let src := inst; let src_1 := inst; InvOneClass.mk (_ : 1⁻¹ = 1)
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
- One or more equations did not get rendered due to their size.
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
- One or more equations did not get rendered due to their size.
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.
Equations
- One or more equations did not get rendered due to their size.
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].
Equations
- One or more equations did not get rendered due to their size.
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
- One or more equations did not get rendered due to their size.
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]
Equations
- One or more equations did not get rendered due to their size.
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
- One or more equations did not get rendered due to their size.
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
- One or more equations did not get rendered due to their size.
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.
Equations
- Function.Injective.addGroup f hf one mul inv div npow zpow = let src := Function.Injective.subNegMonoid f hf one mul inv div npow zpow; AddGroup.mk (_ : ∀ (x : M₁), -x + x = 0)
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].
Equations
- Function.Injective.group f hf one mul inv div npow zpow = let src := Function.Injective.divInvMonoid f hf one mul inv div npow zpow; Group.mk (_ : ∀ (x : M₁), x⁻¹ * x = 1)
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
- One or more equations did not get rendered due to their size.
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.
Equations
- One or more equations did not get rendered due to their size.
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].
Equations
- One or more equations did not get rendered due to their size.
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
- One or more equations did not get rendered due to their size.
Instances For
Surjective #
A type endowed with + is an additive semigroup, if it admits a
surjective map that preserves + from an additive semigroup.
Equations
- Function.Surjective.addSemigroup f hf mul = let src := inst; AddSemigroup.mk (_ : ∀ (y₁ y₂ y₃ : M₂), y₁ + y₂ + y₃ = y₁ + (y₂ + y₃))
Instances For
A type endowed with * is a semigroup, if it admits a surjective map that preserves * from a
semigroup. See note [reducible non-instances].
Equations
- Function.Surjective.semigroup f hf mul = let src := inst; Semigroup.mk (_ : ∀ (y₁ y₂ y₃ : M₂), y₁ * y₂ * y₃ = y₁ * (y₂ * y₃))
Instances For
A type endowed with + is an additive commutative semigroup, if it admits
a surjective map that preserves + from an additive commutative semigroup.
Equations
- Function.Surjective.addCommSemigroup f hf mul = let src := Function.Surjective.addSemigroup f hf mul; AddCommSemigroup.mk (_ : ∀ (y₁ y₂ : M₂), y₁ + y₂ = y₂ + y₁)
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].
Equations
- Function.Surjective.commSemigroup f hf mul = let src := Function.Surjective.semigroup f hf mul; CommSemigroup.mk (_ : ∀ (y₁ y₂ : M₂), y₁ * y₂ = y₂ * y₁)
Instances For
A type endowed with 0 and + is an AddZeroClass, if it admits a
surjective map that preserves 0 and + to an AddZeroClass.
Equations
- Function.Surjective.addZeroClass f hf one mul = let src := inst; let src_1 := inst; AddZeroClass.mk (_ : ∀ (y : M₂), 0 + y = y) (_ : ∀ (y : M₂), y + 0 = y)
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].
Equations
- Function.Surjective.mulOneClass f hf one mul = let src := inst; let src_1 := inst; MulOneClass.mk (_ : ∀ (y : M₂), 1 * y = y) (_ : ∀ (y : M₂), y * 1 = y)
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
- One or more equations did not get rendered due to their size.
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
- One or more equations did not get rendered due to their size.
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
- Function.Surjective.addMonoidWithOne f hf zero one add nsmul nat_cast = let src := Function.Surjective.addMonoid f hf zero add nsmul; AddMonoidWithOne.mk
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.
Equations
- One or more equations did not get rendered due to their size.
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].
Equations
- One or more equations did not get rendered due to their size.
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
- One or more equations did not get rendered due to their size.
Instances For
A type has an involutive negation if it admits a surjective map that
preserves - to a type which has an involutive negation.
Equations
- Function.Surjective.involutiveNeg f hf inv = InvolutiveNeg.mk (_ : ∀ (y : M₂), - -y = y)
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]
Equations
- Function.Surjective.involutiveInv f hf inv = InvolutiveInv.mk (_ : ∀ (y : M₂), y⁻¹⁻¹ = y)
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
- One or more equations did not get rendered due to their size.
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
- One or more equations did not get rendered due to their size.
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.
Equations
- Function.Surjective.addGroup f hf one mul inv div npow zpow = let src := Function.Surjective.subNegMonoid f hf one mul inv div npow zpow; AddGroup.mk (_ : ∀ (y : M₂), -y + y = 0)
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].
Equations
- Function.Surjective.group f hf one mul inv div npow zpow = let src := Function.Surjective.divInvMonoid f hf one mul inv div npow zpow; Group.mk (_ : ∀ (y : M₂), y⁻¹ * y = 1)
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
- One or more equations did not get rendered due to their size.
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.
Equations
- One or more equations did not get rendered due to their size.
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].
Equations
- One or more equations did not get rendered due to their size.
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].
Equations
- One or more equations did not get rendered due to their size.