DOCUMENTATION CENTER SEARCH
Mathematica
>
Built-in
Mathematica
Symbol
Equations and Inequalities over Domains
Tutorials »
|
C
Unique
Module
See Also »
GeneratedParameters
GeneratedParameters
is an option which specifies how parameters generated to represent the results of various symbolic operations should be named.
MORE INFORMATION
The typical default setting is
GeneratedParameters->
C
.
The setting
GeneratedParameters->
f
specifies that successive generated parameters should be named
f
[1]
,
f
[2]
,
...
.
In typical cases, the
f
[
i
]
are used to parameterize families of solutions to equations.
The
f
[
i
]
usually correspond to free parameters, but are also sometimes used to represent arbitrary functions.
The
f
[
i
]
have indices that start at 1 for each invocation of a particular symbolic operation.
GeneratedParameters->(
Module
[{
C
},
C
]&)
guarantees that parameters are unique, even across different invocations of a function.
GeneratedParameters
is an option to such functions as
DSolve
,
RSolve
and
Reduce
.
EXAMPLES
CLOSE ALL
Basic Examples
(3)
General solution of algebraic equation:
In[1]:=
Out[1]=
General solution of differential equation:
In[1]:=
Out[1]=
General solution of difference equation:
In[1]:=
Out[1]=
Scope
(5)
SEE ALSO
C
Unique
Module
TUTORIALS
Equations and Inequalities over Domains
New in 5
© 2008 Wolfram Research, Inc.