Mathematica notebooks consist of sequences of cells, which can be nested. The hierarchy of cells serves as a structure for organizing information in a notebook as well as ...
Package
(Mathematica Import/Export Format) Registered MIME type: application/vnd.wolfram.mathematica.package Mathematica package source format. Used for storing and exchanging Mathematica programs, packages, and data. ...
Accuracy[x] gives the effective number of digits to the right of the decimal point in the number x.
f' represents the derivative of a function f of one argument. Derivative[n_1, n_2, ...][f] is the general form, representing a function obtained from f by differentiating n_1 ...
FromDigits[list] constructs an integer from the list of its decimal digits. FromDigits[list, b] takes the digits to be given in base b. FromDigits["string"] constructs an ...
ParallelProduct[expr, {i, i_max}] evaluates the product \[Product]i = 1 i_max expr in parallel.ParallelProduct[expr, {i, i_min, i_max}] starts with i = ...
ParallelSum[expr, {i, i_max}] evaluates in parallel the sum \[Sum]i = 1 i_max expr.ParallelSum[expr, {i, i_min, i_max}] starts with i = i min.ParallelSum[expr, {i, i_min, ...
lhs ^:= rhs assigns rhs to be the delayed value of lhs, and associates the assignment with symbols that occur at level one in lhs.
With
(Built-in Mathematica Symbol) With[{x = x_0, y = y_0, ...}, expr] specifies that in expr occurrences of the symbols x, y, ... should be replaced by x_0, y_0, ....