required specification of indeterminate function - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : System : Error Message Guide : required specification of indeterminate function

Error, (in dsolve) required a specification of the indeterminate function

 

Description

Examples

Description

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.

Examples

 

Example 1

In this example, the indeterminate function could be either yx or zx; however, no indeterminate function has been specified.

 

dsolvediffyx,xdiffzx,x;

Error, (in dsolve) Required a specification of the indeterminate function

 

Solution:

Specifying the indeterminate function, in this case, yx, corrects the error.

 

dsolvediffyx,xdiffzx,x,yx;

yx=zx+_C1

(2.1)

Example 2

In this example, the indeterminate function gy is incorrectly specified as g.

 

dsolveⅆⅆxfxⅆⅆygy=1,g

Error, (in dsolve) Required a specification of the indeterminate function

 

Solution:

Specifying the indeterminate function as gy corrects this error.

 

dsolveⅆⅆxfxⅆⅆygy=1,gy

gy=yⅆⅆxfx+_C1

(2.2)

See Also

dsolve/details