solve/functions
for a variable which is used as a function name
Calling Sequence
Parameters
Description
Examples
solve(eqn, fcnname)
eqn
-
single equation (as for solve)
fcnname
single variable (as for solve)
When the unknown is a name which is only used as a function in the equation, the solver constructs a function or procedure which solves the equation.
solve⁡f⁡x−x+2,f
x↦x−2
This is more or less equivalent to:
solve⁡f⁡x−x+2,f⁡x
x−2
unapply⁡,x
This in turn is more or less equivalent to:
solve⁡y−x+2,y
More complicated inputs will generally return answers involving RootOfs
solve⁡f⁡x4−f⁡x3+x+1,f
x↦RootOf⁡_Z4−_Z3+x+1
See Also
operators[functional]
unapply
Download Help Document