Adjoining a zero/one to semigroups and related algebraic structures #
This file contains different results about adjoining an element to an algebraic structure which then
behaves like a zero or a one. An example is adjoining a one to a semigroup to obtain a monoid. That
this provides an example of an adjunction is proved in
Mathlib.Algebra.Category.MonCat.Adjunctions
.
Another result says that adjoining to a group an element zero
gives a GroupWithZero
. For more
information about these structures (which are not that standard in informal mathematics, see
Mathlib.Algebra.GroupWithZero.Basic
)
Porting notes #
In Lean 3, we use id
here and there to get correct types of proofs. This is required because
WithOne
and WithZero
are marked as irreducible
at the end of
Mathlib.Algebra.Group.WithOne.Defs
, so proofs that use Option α
instead of WithOne α
no
longer typecheck. In Lean 4, both types are plain def
s, so we don't need these id
s.
TODO #
WithOne.coe_mul
and WithZero.coe_mul
have inconsistent use of implicit parameters
Equations
- WithOne.instReprWithZero = { reprPrec := fun (o : WithZero α) (x : ℕ) => match o with | none => Std.Format.text "0" | some a => Std.Format.text "↑" ++ repr a }
Equations
- WithZero.instRepr = { reprPrec := fun (o : WithZero α) (x : ℕ) => match o with | none => Std.Format.text "1" | some a => Std.Format.text "↑" ++ repr a }
Equations
- WithOne.instRepr = { reprPrec := fun (o : WithOne α) (x : ℕ) => match o with | none => Std.Format.text "1" | some a => Std.Format.text "↑" ++ repr a }
Equations
- WithZero.add = { add := Option.liftOrGet fun (x1 x2 : α) => x1 + x2 }
Equations
- WithOne.mul = { mul := Option.liftOrGet fun (x1 x2 : α) => x1 * x2 }
Equations
- WithZero.neg = { neg := fun (a : WithZero α) => Option.map Neg.neg a }
Equations
- WithOne.inv = { inv := fun (a : WithOne α) => Option.map Inv.inv a }
Equations
- WithZero.negZeroClass = NegZeroClass.mk ⋯
Equations
- WithOne.invOneClass = InvOneClass.mk ⋯
Recursor for WithZero
using the preferred forms 0
and ↑a
.
Equations
- WithZero.recZeroCoe h₁ h₂ none = h₁
- WithZero.recZeroCoe h₁ h₂ (some a) = h₂ a
Instances For
Recursor for WithOne
using the preferred forms 1
and ↑a
.
Equations
- WithOne.recOneCoe h₁ h₂ none = h₁
- WithOne.recOneCoe h₁ h₂ (some a) = h₂ a
Instances For
Deconstruct an x : WithZero α
to the underlying value in α
, given a proof that x ≠ 0
.
Equations
- WithZero.unzero x_3 = x_2
Instances For
Deconstruct an x : WithOne α
to the underlying value in α
, given a proof that x ≠ 1
.
Equations
- WithOne.unone x_3 = x_2
Instances For
Equations
- WithZero.addZeroClass = AddZeroClass.mk ⋯ ⋯
Equations
- WithOne.mulOneClass = MulOneClass.mk ⋯ ⋯
Equations
- WithZero.addMonoid = AddMonoid.mk ⋯ ⋯ nsmulRecAuto ⋯ ⋯
Equations
- WithZero.addCommMonoid = AddCommMonoid.mk ⋯
Equations
- WithOne.commMonoid = CommMonoid.mk ⋯