NevilleThetaD[z, m] gives the Neville theta function \[CurlyTheta]_d (z \[VerticalSeparator] m).
FindMaxValue[f, x] gives the value at a local maximum of f.FindMaxValue[f, {x, x_0}] gives the value at a local maximum of f, found by a search starting from the point x = ...
FindMinValue[f, x] gives the value at a local minimum of f.FindMinValue[f, {x, x_0}] gives the value at a local minimum of f, found by a search starting from the point x = ...
BinaryRead[stream] reads one byte of raw binary data from an input stream, and returns an integer from 0 to 255. BinaryRead[stream, type] reads an object of the specified ...
GoldenRatio is the golden ratio \[Phi] = 1/2 (Sqrt[5] + 1), with numerical value \[TildeEqual] 1.61803.
NMaxValue[f, x] gives the maximum value of f with respect to x.NMaxValue[f, {x, y, ...}] gives the maximum value of f with respect to x, y, .... NMaxValue[{f, cons}, {x, y, ...
NMinValue[f, x] gives the minimum value of f with respect to x.NMinValue[f, {x, y, ...}] gives the minimum value of f with respect to x, y, .... NMinValue[{f, cons}, {x, y, ...
O
(Built-in Mathematica Symbol) O[x]^n represents a term of order x^n. O[x]^n is generated to represent omitted higher-order terms in power series. O[x, x_0]^n represents a term of order (x - x_0) n.
The replacement operator /. allows you to apply transformation rules to a specific expression. Often, however, you want to have transformation rules automatically applied ...
EventHandler[expr, {"event_1" :> action_1, "event_2" :> action_2, ...}] displays as expr, evaluating action_i whenever "event_i" occurs in connection with expr.