Theorems · Definition · group theory
Function.Injective.subtractionMonoid
{M₁ : Type u_1} →
{M₂ : Type u_2} →
[inst : Add M₁] →
[inst_1 : Zero M₁] →
[inst_2 : SMul ℕ M₁] →
[inst_3 : Neg M₁] →
[inst_4 : Sub M₁] →
[inst_5 : SMul ℤ M₁] →
[inst_6 : SubtractionMonoid M₂] →
(f : M₁ → M₂) →
Function.Injective f →
f 0 = 0 →
(∀ (x y : M₁), f (x + y) = f x + f y) →
(∀ (x : M₁), f (-x) = -f x) →
(∀ (x y : M₁), f (x - y) = f x - f y) →
(∀ (x : M₁) (n : ℕ), f (n • x) = n • f x) →
(∀ (x : M₁) (n : ℤ), f (n • x) = n • f x) → SubtractionMonoid M₁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.
- Defined in
- Mathlib.Algebra.Group.InjSurj
- Cited by
- 0 results in Mathlib
- Foundations
- Depth 18 from the axioms · uses no axioms
Around this declaration
Dashed lines are statement dependencies; solid lines are citations in proofs.
Cites6
Mathlib declarations this one mentions in its statement or cites explicitly in its proof. Plumbing is filtered out.
- SubtractionMonoidstatement and proof · cited by 208
- InvolutiveNegproof · cited by 151
- SubNegMonoidproof · cited by 79
- InvolutiveNeg.neg_negproof · cited by 1
- Function.Injective.subNegMonoidproof · cited by 0
- Function.Injective.involutiveNegproof · cited by 0
Cited by3
Results whose statement or proof uses this declaration.
- Finset.subtractionMonoidproof · cited by 0
- FunLike.subtractionMonoidproof · cited by 0
- Function.Injective.subtractionCommMonoidproof · cited by 0