Invertible elements #
This file defines a typeclass Invertible a
for elements a
with a two-sided
multiplicative inverse.
The intent of the typeclass is to provide a way to write e.g. ⅟2
in a ring
like ℤ[1/2]
where some inverses exist but there is no general ⁻¹
operator;
or to specify that a field has characteristic ≠ 2
.
It is the Type
-valued analogue to the Prop
-valued IsUnit
.
For constructions of the invertible element given a characteristic, see
Algebra/CharP/Invertible
and other lemmas in that file.
Notation #
⅟a
isInvertible.invOf a
, the inverse ofa
Implementation notes #
The Invertible
class lives in Type
, not Prop
, to make computation easier.
If multiplication is associative, Invertible
is a subsingleton anyway.
The simp
normal form tries to normalize ⅟a
to a ⁻¹
. Otherwise, it pushes
⅟
inside the expression as much as possible.
Since Invertible a
is not a Prop
(but it is a Subsingleton
), we have to be careful about
coherence issues: we should avoid having multiple non-defeq instances for Invertible a
in the
same context. This file plays it safe and uses def
rather than instance
for most definitions,
users can choose which instances to use at the point of use.
For example, here's how you can use an Invertible 1
instance:
variable {α : Type*} [Monoid α]
def something_that_needs_inverses (x : α) [Invertible x] := sorry
section
attribute [local instance] invertibleOne
def something_one := something_that_needs_inverses 1
end
Typeclass search vs. unification for simp
lemmas #
Note that since typeclass search searches the local context first, an instance argument like
[Invertible a]
might sometimes be filled by a different term than the one we'd find by
unification (i.e., the one that's used as an implicit argument to ⅟
).
This can cause issues with simp
. Therefore, some lemmas are duplicated, with the @[simp]
versions using unification and the user-facing ones using typeclass search.
Since unification can make backwards rewriting (e.g. rw [← mylemma]
) impractical, we still want
the instance-argument versions; therefore the user-facing versions retain the instance arguments
and the original lemma name, whereas the @[simp]
/unification ones acquire a '
at the end of
their name.
We modify this file according to the above pattern only as needed; therefore, most @[simp]
lemmas
here are not part of such a duplicate pair. This is not (yet) intended as a permanent solution.
See Zulip: [https://leanprover.zulipchat.com/#narrow/stream/287929-mathlib4/topic/Invertible.201.20simps/near/320558233]
Tags #
invertible, inverse element, invOf, a half, one half, a third, one third, ½, ⅓
invOf a
is a left inverse of a
invOf a
is a right inverse of a
The inverse of an Invertible
element
Equations
- «term⅟_» = Lean.ParserDescr.node `term⅟_ 1024 (Lean.ParserDescr.binary `andthen (Lean.ParserDescr.symbol "⅟") (Lean.ParserDescr.cat `term 1024))
Instances For
Alias of invOf_mul_cancel_left'
.
Alias of invOf_mul_cancel_left
.
Alias of mul_invOf_cancel_left'
.
Alias of mul_invOf_cancel_left
.
Alias of invOf_mul_cancel_right'
.
Alias of invOf_mul_cancel_right
.
Alias of mul_invOf_cancel_right'
.
Alias of mul_invOf_cancel_right
.
Equations
- ⋯ = ⋯
If a
is invertible and a = b
, then ⅟a = ⅟b
.
If r
is invertible and s = r
and si = ⅟r
, then s
is invertible with ⅟s = si
.
Equations
- hr.copy' s si hs hsi = { invOf := si, invOf_mul_self := ⋯, mul_invOf_self := ⋯ }
Instances For
If r
is invertible and s = r
, then s
is invertible.
Instances For
Each element of a group is invertible.
Equations
- invertibleOfGroup a = { invOf := a⁻¹, invOf_mul_self := ⋯, mul_invOf_self := ⋯ }
Instances For
1
is the inverse of itself
Equations
- invertibleOne = { invOf := 1, invOf_mul_self := ⋯, mul_invOf_self := ⋯ }
Instances For
a
is the inverse of ⅟a
.
Equations
- invertibleInvOf = { invOf := a, invOf_mul_self := ⋯, mul_invOf_self := ⋯ }
⅟b * ⅟a
is the inverse of a * b
Equations
- invertibleMul a b = { invOf := ⅟b * ⅟a, invOf_mul_self := ⋯, mul_invOf_self := ⋯ }
Instances For
A copy of invertibleMul
for dot notation.
Equations
- x✝.mul x = invertibleMul a b