Ordered scalar product #
In this file we define
OrderedSMul R M
: an ordered additive commutative monoidM
is anOrderedSMul
over anOrderedSemiring
R
if the scalar product respects the order relation on the monoid and on the ring. There is a correspondence between this structure and convex cones, which is proven inAnalysis/Convex/Cone.lean
.
Implementation notes #
- We choose to define
OrderedSMul
as aProp
-valued mixin, so that it can be used for actions, modules, and algebras (the axioms for an "ordered algebra" are exactly that the algebra is ordered as a module). - To get ordered modules and ordered vector spaces, it suffices to replace the
OrderedAddCommMonoid
and theOrderedSemiring
as desired.
References #
- https://en.wikipedia.org/wiki/Ordered_module
Tags #
ordered module, ordered scalar, ordered smul, ordered action, ordered vector space
Scalar multiplication by positive elements preserves the order.
If
c • a < c • b
for some positivec
, thena < b
.
The ordered scalar product property is when an ordered additive commutative monoid with a partial order has a scalar multiplication which is compatible with the order.
Instances
Equations
- OrderDual.OrderDual.instSMulWithZero = let src := OrderDual.instSMul; SMulWithZero.mk (_ : ∀ (m : Mᵒᵈ), 0 • m = 0)
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Alias of the reverse direction of smul_pos_iff_of_pos
.
To prove that a linear ordered monoid is an ordered module, it suffices to verify only the first
axiom of OrderedSMul
.
Equations
Equations
To prove that a vector space over a linear ordered field is ordered, it suffices to verify only
the first axiom of OrderedSMul
.
Equations
- One or more equations did not get rendered due to their size.
Equations
Equations
Equations
Left scalar multiplication as an order isomorphism.
Equations
- One or more equations did not get rendered due to their size.