|
SOLUTIONS
|
BUILT-IN MATHEMATICA SYMBOL
TransformationFunctions
TransformationFunctions
is an option for Simplify and FullSimplify which gives the list of functions to apply to try to transform parts of an expression.
DetailsDetails
- The default setting TransformationFunctions->Automatic uses a built-in collection of transformation functions.
- TransformationFunctions->{f1, f2, ...} uses only the functions
. - TransformationFunctions->{Automatic, f1, f2, ...} uses built-in transformation functions together with the functions
.
ExamplesExamplesopen allclose all
Basic Examples (2)Basic Examples (2)
Specify that Simplify should use
as the only transformation:
| In[1]:= |
| In[2]:= |
| Out[2]= |
Here Simplify uses both
and all built-in transformations:
| In[3]:= |
| Out[3]= |
By default FullSimplify does not use Reduce:
| In[1]:= |
| Out[1]= |
Specify that FullSimplify should use Reduce with respect to
over the real domain:
| In[2]:= |
| In[3]:= |
| Out[3]= |
New in 4
Mathematica 9 is now available!
New to Mathematica?
Find your learning path »
Have a question?
Ask support »
