Absolute values in ordered groups #
The absolute value of an element in a group which is also a lattice is its supremum with its
negation. This generalizes the usual absolute value on real numbers (|x| = max x (-x)
).
Notations #
|a|
: The absolute value of an elementa
of an additive lattice ordered group|a|ₘ
: The absolute value of an elementa
of a multiplicative lattice ordered group
mabs a
is the absolute value of a
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
abs a
is the absolute value of a
Equations
- One or more equations did not get rendered due to their size.
Instances For
Unexpander for the notation |a|ₘ
for mabs a
.
Tries to add discretionary parentheses in unparseable cases.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Unexpander for the notation |a|
for abs a
.
Tries to add discretionary parentheses in unparseable cases.
Equations
- One or more equations did not get rendered due to their size.
Instances For
The absolute value satisfies the triangle inequality.
The triangle inequality in LinearOrderedAddCommGroup
s.
|a - b| ≤ n
if 0 ≤ a ≤ n
and 0 ≤ b ≤ n
.
|a - b| < n
if 0 ≤ a < n
and 0 ≤ b < n
.
A set s
in a lattice ordered group is solid if for all x ∈ s
and all y ∈ α
such that
|y| ≤ |x|
, then y ∈ s
.
Equations
- LatticeOrderedAddCommGroup.IsSolid s = ∀ ⦃x : α⦄, x ∈ s → ∀ ⦃y : α⦄, |y| ≤ |x| → y ∈ s
Instances For
The solid closure of a subset s
is the smallest superset of s
that is solid.
Equations
- LatticeOrderedAddCommGroup.solidClosure s = {y : α | ∃ (x : α), x ∈ s ∧ |y| ≤ |x|}
Instances For
Alias of neg_le_abs
.
Alias of neg_abs_le
.