The covering relation #
This file defines the covering relation in an order. b
is said to cover a
if a < b
and there
is no element in between. We say that b
weakly covers a
if a ≤ b
and there is no element
between a
and b
. In a partial order this is equivalent to a ⋖ b ∨ a = b
, in a preorder this
is equivalent to a ⋖ b ∨ (a ≤ b ∧ b ≤ a)
Notation #
a ⋖ b
means thatb
coversa
.a ⩿ b
means thatb
weakly coversa
.
Notation for WCovBy a b
.
Equations
- «term_⩿_» = Lean.ParserDescr.trailingNode `term_⩿_ 50 50 (Lean.ParserDescr.binary `andthen (Lean.ParserDescr.symbol " ⩿ ") (Lean.ParserDescr.cat `term 51))
Instances For
Alias of wcovBy_of_le_of_le
.
Alias of the reverse direction of toDual_wcovBy_toDual_iff
.
Alias of the reverse direction of ofDual_wcovBy_ofDual_iff
.
An iff
version of WCovBy.eq_or_eq
and wcovBy_of_eq_or_eq
.
Notation for CovBy a b
.
Equations
- «term_⋖_» = Lean.ParserDescr.trailingNode `term_⋖_ 50 50 (Lean.ParserDescr.binary `andthen (Lean.ParserDescr.symbol " ⋖ ") (Lean.ParserDescr.cat `term 51))
Instances For
Alias of the forward direction of not_covBy_iff
.
Alias of the forward direction of not_covBy_iff
.
If a < b
, then b
does not cover a
iff there's an element in between.
Alias of denselyOrdered_iff_forall_not_covBy
.
Alias of the reverse direction of toDual_covBy_toDual_iff
.
Alias of the reverse direction of ofDual_covBy_ofDual_iff
.
Equations
- ⋯ = ⋯
Alias of the forward direction of wcovBy_iff_covBy_or_eq
.
Alias of the forward direction of wcovBy_iff_eq_or_covBy
.
An iff
version of CovBy.eq_or_eq
and covBy_of_eq_or_eq
.
If a
, b
, c
are consecutive and a < x < c
then x = b
.
If a < b
then there exist a' > a
and b' < b
such that Set.Iio a'
is strictly to the left
of Set.Ioi b'
.