BinarySubsets[l] gives all subsets of l ordered according to the binary string defining each subset. For any positive integer n, BinarySubsets[n] gives all subsets of {1, 2, ...
CirculantGraph[n, l] constructs a circulant graph on n vertices, meaning the i\[Null]^th vertex is adjacent to the (i + j)\[Null]^th and (i - j)\[Null]^th vertices, for each ...
DominationLattice[n] returns a Hasse diagram of the partially ordered set on integer partitions of n in which p < q if q dominates p. The function takes two options: Type and ...
FieldInd[e] gives the value of the discrete logarithm of e.
HighlightLevel is an option for DendrogramPlot that specifies the level at which to highlight the dendrogram.
Extract
(Built-in Mathematica Symbol) Extract[expr, list] extracts the part of expr at the position specified by list. Extract[expr, {list_1, list_2, ...}] extracts a list of parts of expr. Extract[expr, list, h] ...
x++ increases the value of x by 1, returning the old value of x.
--x decreases the value of x by 1, returning the new value of x.
++x increases the value of x by 1, returning the new value of x.
Quit
(Built-in Mathematica Symbol) Quit[] terminates a Mathematica kernel session.