Error, (in dsolve) required a specification of the indeterminate function
Description
Examples
This error occurs when the unknown of the differential equation (indeterminate function) is not indicated and more than one function of one variable is being differentiated.
By default, if only one function is being differentiated and the indeterminate function was not specified, the differentiated unknown is used as the indeterminate function. However, if more than one such function is present, you must indicate the unknown of the problem.
Example 1
In this example, the indeterminate function could be either yx or zx; however, no indeterminate function has been specified.
dsolvediffyx,x−diffzx,x;
Error, (in dsolve) Required a specification of the indeterminate function
Solution:
Specifying the indeterminate function, in this case, yx, corrects the error.
dsolvediffyx,x−diffzx,x,yx;
y⁡x=z⁡x+_C1
Example 2
In this example, the indeterminate function gy is incorrectly specified as g.
dsolve⁡ⅆⅆx⁢f⁡x⁢ⅆⅆy⁢g⁡y=1,g
Specifying the indeterminate function as gy corrects this error.
dsolve⁡ⅆⅆx⁢f⁡x⁢ⅆⅆy⁢g⁡y=1,g⁡y
g⁡y=yⅆⅆx⁢f⁡x+_C1
See Also
dsolve/details
Download Help Document