CharacteristicFunction[dist, t] gives the characteristic function for the symbolic distribution dist as a function of the variable t.CharacteristicFunction[dist, {t_1, t_2, ...
DateListLogPlot[{{date_1, v_1}, {date_2, v_2}, ...}] makes a log plot with values v_i at a sequence of dates.DateListLogPlot[{v_1, v_2, ...}, datespec] makes a log plot with ...
FactorialMoment[list, r] gives the r\[Null]^th moment of the elements in the list.FactorialMoment[dist, r] gives the r\[Null]^th moment of the symbolic distribution ...
Function[body] or body & is a pure function. The formal parameters are # (or #1), #2, etc. Function[x, body] is a pure function with a single formal parameter x. ...
x >= y or x >= y yields True if x is determined to be greater than or equal to y. x_1 >= x_2 >= x_3 yields True if the x_i form a non-increasing sequence.
Greater
(Built-in Mathematica Symbol) x > y yields True if x is determined to be greater than y. x_1 > x_2 > x_3 yields True if the x_i form a strictly decreasing sequence.
IntegerPartitions[n] gives a list of all possible ways to partition the integer n into smaller integers. IntegerPartitions[n, k] gives partitions into at most k integers. ...
x <= y or x <= y yields True if x is determined to be less than or equal to y. x_1 <= x_2 <= x_3 yields True if the x TraditionalForm\`i form a nondecreasing sequence.
Less
(Built-in Mathematica Symbol) x < y yields True if x is determined to be less than y. x_1 < x_2 < x_3 yields True if the x_i form a strictly increasing sequence.
RegularExpression["regex"] represents the generalized regular expression specified by the string " regex".