NLimit
(Numerical Calculus Package Symbol) NLimit[expr, z -> z_0] numerically finds the limiting value of expr as z approaches z_0.
NSum
(Built-in Mathematica Symbol) NSum[f, {i, i_min, i_max}] gives a numerical approximation to the sum \[Sum]i = i_min i_max f.NSum[f, {i, i_min, i_max, di}] uses a step di in the sum.
DiagonalMatrix[list] gives a matrix with the elements of list on the leading diagonal, and 0 elsewhere. DiagonalMatrix[list, k] gives a matrix with the elements of list on ...
DiscreteConvolve[f, g, n, m] gives the convolution with respect to n of the expressions f and g. DiscreteConvolve[f, g, {n_1, n_2, ...}, {m_1, m_2, ...}] gives the ...
FourierSequenceTransform[expr, n, \[Omega]] gives the Fourier sequence transform of expr.FourierSequenceTransform[expr, {n_1, n_2, ...}, {\[Omega]_1, \[Omega]_2, ...}] gives ...
NProbability[pred, x \[Distributed] dist] gives the numerical probability for an event that satisfies the predicate pred under the assumption that x follows the probability ...
There are many situations where one wants to find a formula that best fits a given set of data. One way to do this in Mathematica is to use Fit. Basic linear fitting. Here is ...
The Mathematica function DSolve finds symbolic solutions to differential equations. (The Mathematica function NDSolve, on the other hand, is a general numerical differential ...
NDSolve uses norms of error estimates to determine when solutions satisfy error tolerances. In nearly all cases the norm has been weighted, or scaled, such that it is less ...
Floor
(Built-in Mathematica Symbol) Floor[x] gives the greatest integer less than or equal to x. Floor[x, a] gives the greatest multiple of a less than or equal to x.