Theorems about invertible elements in a GroupWithZero
#
We intentionally keep imports minimal here as this file is used by Mathlib.Tactic.NormNum
.
theorem
nonzero_of_invertible
{α : Type u}
[MulZeroOneClass α]
(a : α)
[Nontrivial α]
[Invertible a]
:
a ≠ 0
instance
Invertible.ne_zero
{α : Type u}
[MulZeroOneClass α]
[Nontrivial α]
(a : α)
[Invertible a]
:
NeZero a
Equations
- ⋯ = ⋯
a⁻¹
is an inverse of a
if a ≠ 0
Equations
- invertibleOfNonzero h = { invOf := a⁻¹, invOf_mul_self := ⋯, mul_invOf_self := ⋯ }
Instances For
@[simp]
@[simp]
a
is the inverse of a⁻¹
Equations
- invertibleInv = { invOf := a, invOf_mul_self := ⋯, mul_invOf_self := ⋯ }