PopupView[{expr_1, expr_2, ...}] represents an object which displays as a popup menu whose items are the expr_i.PopupView[{expr_1, expr_2, ...}, i] makes the i\[Null]^th ...
Functions for grouping together elements of lists. Here is a list. This groups the elements of the list in pairs, throwing away the single element left at the end.
AbsoluteDashing[{d_1, d_2, ...}] is a graphics directive which specifies that lines which follow are to be drawn dashed, with successive segments having absolute lengths d_1, ...
Permutations[list] generates a list of all possible permutations of the elements in list. Permutations[list, n] gives all permutations containing at most n ...
Plus
(Built-in Mathematica Symbol) x + y + z represents a sum of terms.
Correlation[v_1, v_2] gives the correlation between the vectors v_1 and v_2.Correlation[m] gives the correlation matrix for the matrix m.Correlation[m_1, m_2] gives the ...
Different kinds of vector and matrix multiplication. This multiplies each element of the vector by the scalar k. The "dot" operator gives the scalar product of two vectors.
Item
(Built-in Mathematica Symbol) Item[expr, options] represents an item within constructs such as Grid, Overlay, and Manipulate that displays with expr as the content, and with the specified options applied ...
Insert
(Built-in Mathematica Symbol) Insert[list, elem, n] inserts elem at position n in list. If n is negative, the position is counted from the end. Insert[expr, elem, {i, j, ...}] inserts elem at position {i, ...
FoldList[f, x, {a, b, ...}] gives {x, f[x, a], f[f[x, a], b], ...}.