Theorems about invertible elements in rings #
def
invertibleNeg
{R : Type u}
[Mul R]
[One R]
[HasDistribNeg R]
(a : R)
[Invertible a]
:
Invertible (-a)
-⅟a
is the inverse of -a
Equations
- invertibleNeg a = { invOf := -⅟ a, invOf_mul_self := ⋯, mul_invOf_self := ⋯ }
Instances For
@[simp]
theorem
invOf_neg
{R : Type u}
[Monoid R]
[HasDistribNeg R]
(a : R)
[Invertible a]
[Invertible (-a)]
:
@[simp]
theorem
pos_of_invertible_cast
{R : Type u}
[NonAssocSemiring R]
[Nontrivial R]
(n : ℕ)
[Invertible ↑n]
:
A version of inv_sub_inv'
for invOf
.