ConstantArray[c, n] generates a list of n copies of the element c.ConstantArray[c, {n_1, n_2, ...}] generates an n_1*n_2*... array of nested lists containing copies of the ...
LetterQ
(Built-in Mathematica Symbol) LetterQ[string] yields True if all the characters in the string are letters, and yields False otherwise.
ListDeconvolve[ker, list] gives a deconvolution of list using kernel ker.
Median
(Built-in Mathematica Symbol) Median[list] gives the median of the elements in list. Median[dist] gives the median of the symbolic distribution dist.
Permutations[list] generates a list of all possible permutations of the elements in list. Permutations[list, n] gives all permutations containing at most n ...
Position[expr, pattern] gives a list of the positions at which objects matching pattern appear in expr. Position[expr, pattern, levelspec] finds only objects that appear on ...
PossibleZeroQ[expr] gives True if basic symbolic and numerical methods suggest that expr has value zero, and gives False otherwise.
Quartiles[list] gives a list of the 1/4, 1/2, and 3/4 quantiles of the elements in list.Quartiles[dist] gives a list of the 1/4, 1/2, and 3/4 quantiles of the symbolic ...
RandomSample[{e_1, e_2, ...}, n] gives a pseudorandom sample of n of the e_i.RandomSample[{w_1, w_2, ...} -> {e_1, e_2, ...}, n] gives a pseudorandom sample of n of the e_i ...
Select
(Built-in Mathematica Symbol) Select[list, crit] picks out all elements e_i of list for which crit[e_i] is True. Select[list, crit, n] picks out the first n elements for which crit[e_i] is True.