Piecewise[{{val_1, cond_1}, {val_2, cond_2}, ...}] represents a piecewise function with values val_i in the regions defined by the conditions cond_i. Piecewise[{{val_1, ...
Maximize[f, x] maximizes f with respect to x.Maximize[f, {x, y, ...}] maximizes f with respect to x, y, .... Maximize[{f, cons}, {x, y, ...}] maximizes f subject to the ...
Mathematica can connect to many outside programs. You can use Mathematica 's rich programming language to read and write to other supported programming languages. Mathematica ...
Interval[{min, max}] represents the range of values between min and max. Interval[{min_1 , max_1}, {min_2 , max_2}, ...] represents the union of the ranges min_1 to max_1, ...
The functions FindMinimum, FindMaximum, and FindRoot have the HoldAll attribute and so have special semantics for evaluation of their arguments. First, the variables are ...
Mathematica provides functions for the aesthetic drawing of graphs. Algorithms implemented include spring embedding, spring-electrical embedding, high-dimensional embedding, ...
Element
(Built-in Mathematica Symbol) Element[x, dom] or x \[Element] dom asserts that x is an element of the domain dom. Element[{x_1, x_2, ...}, dom] asserts that all the x_i are elements of dom. Element[patt, ...
Integers represents the domain of integers, as in x \[Element] Integers.
Mathematica allows you to use special notation for many common operators. For example, although internally Mathematica represents a sum of two terms as Plus[x,y], you can ...
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 ...