Sum
(Built-in Mathematica Symbol) Sum[f, {i, i_max}] evaluates the sum \[Sum]i = 1 i_max f. Sum[f, {i, i_min, i_max}] starts with i = i_min. Sum[f, {i, i_min, i_max, di}] uses steps d i. Sum[f, {i, {i_1, i_2, ...
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 ...
Cot
(Built-in Mathematica Symbol) Cot[z] gives the cotangent of z.
To run Mathematica using a network license, both the client machine and the license server must be on the network and MathLM must be running. If you do not have a MathLM ...
This constructs the sum ∑_(i=1)^7 (x^i)/(i) . You can leave out the lower limit if it is equal to 1. This makes i increase in steps of 2, so that only odd-numbered values are ...
When you have numerical data, it is often convenient to find a simple formula that approximates it. For example, you can try to "fit" a line or curve through the points in ...
Array
(Built-in Mathematica Symbol) Array[f, n] generates a list of length n, with elements f[i]. Array[f, {n_1, n_2, ...}] generates an n_1*n_2*... array of nested lists, with elements f[i_1, i_2, ...]. ...
Exp
(Built-in Mathematica Symbol) Exp[z] gives the exponential of z.
First
(Built-in Mathematica Symbol) First[expr] gives the first element in expr.
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.