Absolute value #
This file defines a notational class has_abs which adds the unary operator abs and the notation
|.|. The concept of an absolute value occurs in lattice ordered groups and in GL and GM spaces.
Mathematical structures possessing an absolute value often also possess a unique decomposition of
elements into "positive" and "negative" parts which are in some sense "disjoint" (e.g. the Jordan
decomposition of a measure). This file also defines has_pos_part and has_neg_part classes
which add unary operators pos and neg, representing the maps taking an element to its positive
and negative part respectively along with the notation ⁺ and ⁻.
Notations #
The following notation is introduced:
|.|for the absolute value;.⁺for the positive part;.⁻for the negative part.
Tags #
absolute
- abs : α → α
Absolute value is a unary operator with properties similar to the absolute value of a real number.
Instances
- pos : α → α
The positive part of an element admiting a decomposition into positive and negative parts.
- neg : α → α
The negative part of an element admiting a decomposition into positive and negative parts.