Built with Alectryon, running Coq+SerAPI v8.15.0+0.15.0. Bubbles () indicate interactive fragments: hover for details, tap to reveal contents. Use Ctrl+↑Ctrl+↓ to navigate, Ctrl+🖱️ to focus. On Mac, use ⌘ instead of Ctrl.
Notation"[ rel _ _ | _ ]" was already used in scope
fun_scope. [notation-overridden,parsing]
Notation"[ rel _ _ : _ | _ ]" was already used in
scope fun_scope. [notation-overridden,parsing]
Notation"[ rel _ _ in _ & _ | _ ]" was already used
in scope fun_scope. [notation-overridden,parsing]
Notation"[ rel _ _ in _ & _ ]" was already used in
scope fun_scope. [notation-overridden,parsing]
Notation"[ rel _ _ in _ | _ ]" was already used in
scope fun_scope. [notation-overridden,parsing]
Notation"[ rel _ _ in _ ]" was already used in scope
fun_scope. [notation-overridden,parsing]
Notation"_ + _" was already used in scope nat_scope.
[notation-overridden,parsing]
Notation"_ - _" was already used in scope nat_scope.
[notation-overridden,parsing]
Notation"_ <= _" was already used in scope nat_scope.
[notation-overridden,parsing]
Notation"_ < _" was already used in scope nat_scope.
[notation-overridden,parsing]
Notation"_ >= _" was already used in scope nat_scope.
[notation-overridden,parsing]
Notation"_ > _" was already used in scope nat_scope.
[notation-overridden,parsing]
Notation"_ <= _ <= _" was already used in scope
nat_scope. [notation-overridden,parsing]
Notation"_ < _ <= _" was already used in scope
nat_scope. [notation-overridden,parsing]
Notation"_ <= _ < _" was already used in scope
nat_scope. [notation-overridden,parsing]
Notation"_ < _ < _" was already used in scope
nat_scope. [notation-overridden,parsing]
Notation"_ * _" was already used in scope nat_scope.
[notation-overridden,parsing]
(** In this section, we define the notion of monotonicity for functions. *)SectionMonotoneFunction.(** Consider a type [T], a relation [R] over type [T], and a function [f : T -> T]. *)Context {T : Type}.VariableR : rel T.Variablef : T -> T.(** We say that function [f] is monotone with respect to relation [R], iff [R x y] implies [R (f x) (f y)] for any [x y : T]. *)Definitionmonotone :=
forallxy, R x y -> R (f x) (f y).EndMonotoneFunction.(** In this section, we define some properties of relations on lists. *)SectionOrder.(** Consider a type [T], a relation [R] over type [T], and a sequence [xs]. *)Context {T : eqType}.VariableR : T -> T -> bool.Variablexs : seq T.(** Relation [R] is total over list [xs], iff for any [x1 x2 \in xs], either [R x1 x2] or [R x2 x1] holds. *)Definitiontotal_over_list :=
forallx1x2,
x1 \in xs ->
x2 \in xs ->
R x1 x2 \/ R x2 x1.(** Relation [R] is antisymmetric over list [xs], iff for any [x1 x2 \in xs], [R x1 x2] and [R x2 x1] imply that [x1 = x2]. *)Definitionantisymmetric_over_list :=
forallx1x2,
x1 \in xs ->
x2 \in xs ->
R x1 x2 ->
R x2 x1 ->
x1 = x2.EndOrder.