Table
(Built-in Mathematica Symbol) Table[expr, {i_max}] generates a list of i_max copies of expr. Table[expr, {i, i_max}] generates a list of the values of expr when i runs from 1 to i_max. Table[expr, {i, ...
CounterStyleMenuListing is an option for cells that specifies what counter styles are listed in the Counter popup menu of the Create Automatic Numbering Object dialog box.
Long viewed as an important theoretical idea, functional programming finally became truly convenient and practical with the introduction of Mathematica's symbolic language. ...
FindList["file", " text"] gives a list of lines in the file that contain the specified string. FindList["file", {"text_1", "text_2", ...}] gives a list of all lines that ...
FactorSquareFreeList[poly] gives a list of square-free factors of a polynomial, together with their exponents.
Tensors are mathematical objects that give generalizations of vectors and matrices. In Mathematica, a tensor is represented as a set of lists, nested to a certain number of ...
Part
(Built-in Mathematica Symbol) expr[[i]] or Part[expr, i] gives the i\[Null]^th part of expr. expr[[-i]] counts from the end. expr[[i, j, ...]] or Part[expr, i, j, ...] is equivalent to expr[[i]][[j]] .... ...
Mathematica contains some powerful primitives for making structural changes to expressions. You can use these primitives both to implement mathematical properties such as ...
Most
(Built-in Mathematica Symbol) Most[expr] gives expr with the last element removed.
PermutationListQ[expr] returns True if expr is a valid permutation list and False otherwise.