ArgMinUnique(f(x), ForElement(x, S)), rendered x∈Sargmin*f(x), represents the unique value x∈S
such that f(x)=s∈Sminf(s). This operation is only defined if such a unique value exists.
ArgMinUnique(f(x), ForElement(x, S), P(x)), rendered x∈S,P(x)argmin*f(x), represents the unique value x∈S
satisfying P(x)
and such that f(x)=s∈Sminf(s). This operation is only defined if such a unique value exists.
ArgMinUnique(f(x, y), For(Tuple(x, y)), P(x, y)) represents the unique tuple (x,y)
satisfying P(x,y)
such that f(x,y)=P(s,t)minf(s,t), and similarly for any number n≥2
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 P(x)
must define the domain of x
unambiguously; that is, it must include a statement such as x∈S
where S
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 P(x,y), P(x,y,z), etc.
Definitions:
Fungrim symbol | Notation | Short description |
---|---|---|
ArgMinUnique | x∈Sargmin*f(x) | Unique location of minimum value |
Minimum | x∈Sminf(x) | Minimum value of a set or function |
Source code for this entry:
Entry(ID("f4fbb8"), SymbolDefinition(ArgMinUnique, ArgMinUnique(f(x), ForElement(x, S)), "Unique location of minimum value"), Description(SourceForm(ArgMinUnique(f(x), ForElement(x, S))), ", rendered", ArgMinUnique(f(x), ForElement(x, S)), ", ", "represents the unique value", Element(x, S), "such that", Equal(f(x), Minimum(f(s), ForElement(s, S))), ". This operation is only defined if such a unique value exists."), Description(SourceForm(ArgMinUnique(f(x), ForElement(x, S), P(x))), ", rendered", ArgMinUnique(f(x), ForElement(x, S), P(x)), ", ", "represents the unique value", Element(x, S), "satisfying", P(x), "and", "such that", Equal(f(x), Minimum(f(s), ForElement(s, S))), ". This operation is only defined if such a unique value exists."), Description(SourceForm(ArgMinUnique(f(x, y), For(Tuple(x, y)), P(x, y))), "represents the unique tuple", Tuple(x, y), "satisfying", P(x, y), "such that", Equal(f(x, y), Minimum(f(s, t), For(Tuple(s, t)), P(s, t))), ", 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."))