You can use lists as tables of values. You can generate the tables, for example, by evaluating an expression for a sequence of different parameter values. This gives a table ...
If you make a definition such as f[x_]:=value, Mathematica will use the value you give for any f function it encounters. In some cases, however, you may want to define a ...
When Mathematica transforms an expression such as x+x into 2x, it is treating the variable x in a purely symbolic or formal fashion. In such cases, x is a symbol which can ...
OwnValues[x] gives the rule corresponding to any ownvalue defined for the symbol x.
Modules in Mathematica allow you to treat the names of variables as local. Sometimes, however, you want the names to be global, but values to be local. You can do this in ...
DynamicModuleValues is an option for DynamicModule that stores downvalues of local symbols.
When you make a function definition using :=, the value of the function is recomputed every time you ask for it. In some kinds of calculations, you may end up asking for the ...
When you ask for the square root s of a number a, you are effectively asking for the solution to the equation s^2a. This equation, however, in general has two different ...
The shooting method works by considering the boundary conditions as a multivariate function of initial conditions at some point, reducing the boundary value problem to ...
ValueQ
(Built-in Mathematica Symbol) ValueQ[expr] gives True if a value has been defined for expr, and gives False otherwise.