CellularAutomaton[rule, init, t] generates a list representing the evolution of the cellular automaton with the specified rule from initial condition init for t steps. ...
TraditionalForm differs from StandardForm, the default format for input and output. It is important to understand that TraditionalForm expressions cannot always be provided ...
PowerModList[a, s/r, m] gives a list of all x modulo m for which x^r \[Congruent] a^s mod m.
The basis for a nonlinear conjugate gradient method is to effectively apply the linear conjugate gradient method, where the residual is replaced by the gradient. A model ...
InverseGammaRegularized[a, s] gives the inverse of the regularized incomplete gamma function.
SetPrecision[expr, p] yields a version of expr in which all numbers have been set to have precision p.
Newton's method for nonlinear equations is based on a linear approximation so the Newton step is found simply by setting M_k(p)=0, Near a root of the equations, Newton's ...
The complete collection of Greek letters in Mathematica. You can use Greek letters as the names of symbols. The only Greek letter with a built-in meaning in StandardForm is ...
Sum
(Built-in Mathematica Symbol) Sum[f, {i, i_max}] evaluates the sum \[Sum]i = 1 i_max f. Sum[f, {i, i_min, i_max}] starts with i = i_min. Sum[f, {i, i_min, i_max, di}] uses steps d i. Sum[f, {i, {i_1, i_2, ...
A Mathematica script is simply a file containing Mathematica commands that you would normally evaluate sequentially in a Mathematica session. Writing a script is useful if ...