InputForm[expr] prints as a version of expr suitable for input to Mathematica.
Integrate[f, x] gives the indefinite integral \[Integral]f d x. Integrate[f, {x, x_min, x_max}] gives the definite integral \[Integral]_x_min^x_max\ f\ d x. Integrate[f, {x, ...
JacobiCS[u, m] gives the Jacobi elliptic function cs(u | m).
JacobiSC[u, m] gives the Jacobi elliptic function sc(u | m).
LaplaceTransform[expr, t, s] gives the Laplace transform of expr. LaplaceTransform[expr, {t_1, t_2, ...}, {s_1, s_2, ...}] gives the multidimensional Laplace transform of ...
Likelihood[dist, {x_1, x_2, ...}] gives the likelihood function for observations x_1, x_2, ... from the distribution dist.
MapThread[f, {{a_1, a_2, ...}, {b_1, b_2, ...}, ...}] gives {f[a_1, b_1, ...], f[a_2, b_2, ...], ...}. MapThread[f, {expr_1, expr_2, ...}, n] applies f to the parts of the ...
NDSolve
(Built-in Mathematica Symbol) NDSolve[eqns, y, {x, x_min, x_max}] finds a numerical solution to the ordinary differential equations eqns for the function y with the independent variable x in the range ...
NestWhile[f, expr, test] starts with expr, then repeatedly applies f until applying test to the result no longer yields True. NestWhile[f, expr, test, m] supplies the most ...
NormalDistribution[\[Mu], \[Sigma]] represents a normal (Gaussian) distribution with mean \[Mu] and standard deviation \[Sigma].NormalDistribution[] represents a normal ...