firtest - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


DEtools

  

firtest

  

test a given first integral

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

firtest(first_int, ODE, y(x))

Parameters

first_int

-

first integral

ODE

-

ordinary differential equation

y(x)

-

(optional) indeterminate function of the ODE

Description

• 

The firtest command checks whether a given expression is a first integral of a given ODE. Similar to odetest, firtest returns 0 when the result is valid, or an algebraic expression obtained after simplifying the PDE for the first integral associated with the given ODE (see odepde). Among other things, firtest can be used to test the results obtained using the command firint.

• 

If the result returned by firtest is not zero, the expression might nevertheless be a first integral. Sometimes, with further simplification, you can obtain the desired 0 using commands such as expand, combine, and so on.

• 

This function is part of the DEtools package, and so it can be used in the form firtest(..) only after executing the command with(DEtools). However, it can always be accessed through the long form of the command by using DEtools[firtest](..).

Examples

A first order ODE

withDEtools:

ODEdiffyx,x=yxax

ODEⅆⅆxyx=yxax

(1)

An integrating factor for ODE above

ΜintfactorODE

Μⅇaxⅆx

(2)

A related (to Mu) first integral for ODE above

ansfirintΜODE

ansⅇaxⅆxyx+_C1=0

(3)

Testing the first integral

firtestans,ODE

0

(4)

A second order ODE example

ODEdiffyx,x,x=22diffyx,x+5xyx2+2x2yxdiffyx,xx

ODEⅆ2ⅆx2yx=22ⅆⅆxyx+5xyx2+2x2yxⅆⅆxyxx

(5)

first_int2x5yx2+x4diffyx,x+_C1=0

first_int2x5yx2+x4ⅆⅆxyx+_C1=0

(6)

firtestfirst_int,ODE

0

(7)

See Also

DEtools

dsolve

firint

intfactor

PDEtools

redode