Absolute value, sign, inversion and division on extended real numbers #
This file defines an absolute value and sign function on EReal
and uses them to provide a
CommMonoidWithZero
instance, based on the absolute value and sign characterising all EReal
s.
Then it defines the inverse of an EReal
as ⊤⁻¹ = ⊥⁻¹ = 0
, which leads to a
DivInvMonoid
instance and division.
Absolute value #
Sign #
@[simp]
theorem
EReal.le_iff_sign
{x y : EReal}
:
x ≤ y ↔ SignType.sign x < SignType.sign y ∨ SignType.sign x = SignType.neg ∧ SignType.sign y = SignType.neg ∧ y.abs ≤ x.abs ∨ SignType.sign x = SignType.zero ∧ SignType.sign y = SignType.zero ∨ SignType.sign x = SignType.pos ∧ SignType.sign y = SignType.pos ∧ x.abs ≤ y.abs
Equations
Min and Max #
Inverse #
Inversion and Absolute Value #
Inversion and Positivity #
Division #
Division and Multiplication #
Division and Order #
theorem
EReal.strictMono_div_right_of_pos
{b : EReal}
(h : 0 < b)
(h' : b ≠ ⊤)
:
StrictMono fun (a : EReal) => a / b
theorem
EReal.strictAnti_div_right_of_neg
{b : EReal}
(h : b < 0)
(h' : b ≠ ⊥)
:
StrictAnti fun (a : EReal) => a / b