Series
(Built-in Mathematica Symbol) Series[f, {x, x_0, n}] generates a power series expansion for f about the point x = x_0 to order (x - x_0) n. Series[f, {x, x_0, n_x}, {y, y_0, n_y}, ...] successively finds ...
When summarizing data, it is often useful to analyze it by subgroup. For example, crop yields could be categorized by seed variety, or average patient recovery time by ...
In any interactive session, Mathematica effectively operates in a loop. It waits for your input, processes the input, prints the result, then goes back to waiting for input ...
CellBracketOptions -> {opt_1 -> val_1, opt_2 -> val_2, ...} is an option for cells that specifies settings for cell brackets.
ParametricPlot[{f_x, f_y}, {u, u_min, u_max}] generates a parametric plot of a curve with x and y coordinates f_x and f_y as a function of u. ParametricPlot[{{f_x, f_y}, ...
Mathematica provides access to information on infinite families of groups, as well as sporadic groups of relevance, like the famous 26 sporadic simple groups (27 if the Tits ...
CellSize is an option for cells that specifies the width and height of an inline cell.
ListContourPlot[array] generates a contour plot from an array of height values. ListContourPlot[{{x_1, y_1, f_1}, {x_2, y_2, f_2}, ...}] generates a contour plot from values ...
VectorDensityPlot[{{v_x, v_y}, s}, {x, x_min, x_max}, {y, y_min, y_max}] generates a vector plot of the vector field {v_x, v_y} as a function of x and y, superimposed on a ...
This section is designed to discuss how to make compiled functions run efficiently. It will cover features that make them run faster, as well as problems that can make them ...