Comment on page
Terms
This page describes the notion of term. Its subpages provide several interpretations of terms, all of which are valid so you can use each interpretation at your own discretion.
The purpose of a term is to compute pairs that constitute a relation. We use operators to assemble terms from smaller terms, to express in formal language precisely what is meant in the natural language of the business. The smallest term is a single relation.
We noticed that our readers have different backgrounds. They have different preferences about the way we explain the operators in Ampersand. Some prefer an explanation in logic, others in algebra, and still others in set theory. So we decided to explain the operators in many different ways simultaneously, hoping that one of them suits your preference.
A term is a combination of operators and relations. Its meaning is a set of pairs, which is in fact a newly created relation. The word "expression" may be used as a synonym for "term" in the context of Ampersand.
owner
r;s~
I /\ goalkeeper;goalkeeper~
destination;"Algarve" |- spoken;"Portugese"
Every term is built out of relations, which are combined by operators. An term has one of the following 8 syntactic structures
<Term> <BinaryOperator> <Term>
<UnaryOpPre> <Term>
<Term> <UnaryOpPost>
<RelationRef> <type>?
I <type>?
V <type>?
<atom>
( <Term> )
The operators come in families. We advise novices to study only the rule operators, boolean operators and relational operators. There is a wealth of things you can express with just these operators. The residual operators seem harder to learn and the Kleene operators are not fully implemented yet. You can click the hyperlink to navigate to the semantics of each family.
Family | binary operators | binding power | unary operators | binding power |
rules | and | 1 (weakest) | | |
, , and | 2 | | prefix | |
, , and | 4 | | postfix | |
, , and | 3 | | | |
Kleene | | | and | postfix |
Operators with different binding power may be used in the same term without brackets, because the binding power tells how it is interpreted. For example,
means
because
has a higher binding power than
.
Operators with the same binding power must be used unambiguously. For example:
means something different than
. In such cases Ampersand insists on the use of brackets, so readers without knowledge of the binding powers of the operators can read a term unambiguously.
Repeated uses of an associative operator does not require brackets. So
is allowed because
is associative.
When coding in Ampersand, these operators are typed with characters on the keyboard. The following table shows the operators in math and their equivalent in code:
operator name | code | math | remark | |
equivalence (equal) | = | | use only in a rule | |
inclusion | |- | | | use only in a rule |
intersect | /\ | | associative, commutative, idempotent | |
union | \/ | | associative, commutative, idempotent | |
difference (minus) | - | | | |
complement | - | | in code: Prefix; in math: Overline | |
compose | ; | | associative | |
converse (flip) | ~ | | postfix | |
left residual | / | | | |
right residual | \ | | | |
diamond | <> | | | |
relational product | ! | | associative | |
cartesian product | # | | deprecated | |
reflexive transitive closure | * | | in code: not implemented; in math: Postfix | |
transitive closure | + | | in code: not implemented; in math: Postfix | |
Last modified 1yr ago