D
(Built-in Mathematica Symbol) D[f, x] gives the partial derivative \[PartialD]f/\[PartialD]x. D[f, {x, n}] gives the multiple derivative \[PartialD]^n f/\[PartialD]x^n. D[f, x, y, ...] differentiates f ...
EngineeringForm[expr] prints with all real numbers in expr given in engineering notation. EngineeringForm[expr, n] prints with numbers given to n-digit precision.
FindClusters[{e_1, e_2, ...}] partitions the e i into clusters of similar elements. FindClusters[{e_1 -> v_1, e_2 -> v_2, ...}] returns the v_i corresponding to the e i in ...
NestWhileList[f, expr, test] generates a list of the results of applying f repeatedly, starting with expr, and continuing until applying test to the result no longer yields ...
ParallelSubmit[expr] submits expr for evaluation on the next available parallel kernel and returns an EvaluationObject expression representing the submitted ...
Point
(Built-in Mathematica Symbol) Point[coords] is a graphics primitive that represents a point. Point[{coords_1, coords_2, ...}] represents a collection of points.
ScientificForm[expr] prints with all real numbers in expr given in scientific notation. ScientificForm[expr, n] prints with numbers given to n-digit precision.
SymmetricReduction[f, {x_1, ..., x_n}] gives a pair of polynomials {p, q} in x_1, ..., x_n such that f == p + q, where p is the symmetric part and q is the ...
The differential equations that arise in practice are of two types. Here is an example of the first type. Here is an example of the second type. This equation has a symbolic ...
There are a number of important interactions in Mathematica between evaluation and pattern matching. The first observation is that pattern matching is usually done on ...