$PrePrint is a global variable whose value, if set, is applied to every expression before it is printed.
The simplest way to mix text and formulas in a Mathematica notebook is to put each kind of material in a separate cell. Sometimes, however, you may want to embed a formula ...
In Mathematica, dialog boxes are customized notebooks used to provide users with information and/or request user input. There are two properties associated with dialogs. ...
Two decades of intense R&D at Wolfram Research have given Mathematica by far the world's broadest and deepest coverage of special functions—and greatly expanded the whole ...
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, ...
Mathematica has a general mechanism for handling messages generated during computations. Many built-in Mathematica functions use this mechanism to produce error and warning ...
Conjugate[z] or z\[Conjugate] gives the complex conjugate of the complex number z.
Mod
(Built-in Mathematica Symbol) Mod[m, n] gives the remainder on division of m by n. Mod[m, n, d] uses an offset d.
Throw
(Built-in Mathematica Symbol) Throw[value] stops evaluation and returns value as the value of the nearest enclosing Catch. Throw[value, tag] is caught only by Catch[expr, form] where form is a pattern ...
lhs := rhs assigns rhs to be the delayed value of lhs. rhs is maintained in an unevaluated form. When lhs appears, it is replaced by rhs, evaluated afresh each time.