InverseBetaRegularized[s, a, b] gives the inverse of the regularized incomplete beta function.
Map
(Built-in Mathematica Symbol) Map[f, expr] or f /@ expr applies f to each element on the first level in expr. Map[f, expr, levelspec] applies f to parts of expr specified by levelspec.
When you do long calculations, it is often convenient to give names to your intermediate results. Just as in standard mathematics, or in other computer languages, you can do ...
NMinimize[f, x] minimizes f numerically with respect to x.NMinimize[f, {x, y, ...}] minimizes f numerically with respect to x, y, .... NMinimize[{f, cons}, {x, y, ...}] ...
Fit
(Built-in Mathematica Symbol) Fit[data, funs, vars] finds a least-squares fit to a list of data as a linear combination of the functions funs of variables vars.
WeierstrassInvariants[{\[Omega], \[Omega]^\[Prime]}] gives the invariants {g_2, g_3} for Weierstrass elliptic functions corresponding to the half-periods {\[Omega], ...
Many calculations involve solving systems of linear equations. In many cases, you will find it convenient to write down the equations explicitly, and then solve them using ...
Mathematica has a general mechanism for handling messages generated during computations. Many built-in Mathematica functions use this mechanism to produce error and warning ...
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 ...
Definitions such as f[x_]=x^2 specify values for functions. Sometimes, however, you need to specify general properties of functions, without necessarily giving explicit ...