Commit 2024-06-25 13:18 c4f1cc8b
View on Github →feat(Data/Real/EReal): add simp theorems involving the sum of ⊤
and x
(#14102)
- Add the theorem
top_add_of_ne_bot
which states that for any extended real numberx
which is not⊥
, the sum of⊤
andx
is equal to⊤
. - Add the theorem
add_top_of_ne_bot
which states that for any extended real numberx
which is not⊥
, the sum ofx
and⊤
is equal to⊤
. - Add the theorem
add_pos
which states that for any two extended real numbersa
andb
, if botha
andb
are greater than0
, then their sum is also greater than0
. - Add the theorem
mul_pos
which states that the product of two positive extended real numbers is positive. - Add the theorem
add_top_iff_ne_bot
which states that for any extended real numberx
, the sum ofx
and⊤
is equal to⊤
if and only ifx
is not⊥
. - Add the theorem
top_add_iff_ne_bot
which states that for any extended real numberx
, the sum of⊤
andx
is equal to⊤
if and only ifx
is not⊥
.