Called with 1 argument, Maximum(S), rendered , represents the maximum element of the set . This operator is only defined if
is a subset of
and the maximum exists.
Maximum(f(x), ForElement(x, S)), rendered , represents .
Maximum(f(x), ForElement(x, S), P(x)), rendered , represents .
Maximum(f(x), For(x), P(x)), rendered , represents .
Maximum(f(x, y), For(Tuple(x, y)), P(x, y)), rendered , represents
where
is a predicate defining the range of
and , and similarly for any number
of variables.
The special expression For(x) or ForElement(x, S) declares x as a locally bound variable within the scope of the arguments to this operator. If For(x) is used instead of ForElement(x, S), the corresponding predicate
must define the domain of
unambiguously; that is, it must include a statement such as
where
is a known set. Similarly, For(Tuple(x, y)), For(Tuple(x, y, z)), etc. defines multiple locally bound variables which must be accompanied by a multivariate predicate , , etc.
Definitions:
Fungrim symbol | Notation | Short description |
---|---|---|
Maximum | Maximum value of a set or function | |
RR | Real numbers | |
Infinity | Positive infinity |
Source code for this entry:
Entry(ID("65ccf2"), SymbolDefinition(Maximum, Maximum(f(x), ForElement(x, S)), "Maximum value of a set or function"), Description("Called with 1 argument, ", SourceForm(Maximum(S)), ", rendered", Maximum(S), ", represents the maximum element of the set", S, ".", "This operator is only defined if", S, "is a subset of", Union(RR, Set(Neg(Infinity), Pos(Infinity))), " and the maximum exists."), Description(SourceForm(Maximum(f(x), ForElement(x, S))), ", rendered", Maximum(f(x), ForElement(x, S)), ", represents", Maximum(Set(f(x), ForElement(x, S))), "."), Description(SourceForm(Maximum(f(x), ForElement(x, S), P(x))), ", rendered", Maximum(f(x), ForElement(x, S), P(x)), ", represents", Maximum(Set(f(x), ForElement(x, S), P(x))), "."), Description(SourceForm(Maximum(f(x), For(x), P(x))), ", rendered", Maximum(f(x), For(x), P(x)), ", represents", Maximum(Set(f(x), For(x), P(x))), "."), Description(SourceForm(Maximum(f(x, y), For(Tuple(x, y)), P(x, y))), ", rendered", Maximum(f(x, y), For(Tuple(x, y)), P(x, y)), ", represents", Maximum(Set(f(x, y), For(Tuple(x, y)), P(x, y))), "where", P(x, y), "is a predicate defining the range of", x, "and", y, ", and similarly for any number", GreaterEqual(n, 2), "of variables."), Description("The special expression", SourceForm(For(x)), "or", SourceForm(ForElement(x, S)), "declares", SourceForm(x), "as a locally bound variable within the scope of the arguments to this operator. ", "If", SourceForm(For(x)), "is used instead of", SourceForm(ForElement(x, S)), ", the corresponding predicate", P(x), "must define the domain of", x, "unambiguously; that is, it must include a statement such as", Element(x, S), "where", S, "is a known set. Similarly,", SourceForm(For(Tuple(x, y))), ", ", SourceForm(For(Tuple(x, y, z))), ", etc.", "defines multiple locally bound variables which must be accompanied by a multivariate predicate", P(x, y), ", ", P(x, y, z), ", etc."))