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

Online Help

All Products    Maple    MapleSim


Student[ODEs]

  

Integrate

  

integrate an exact ODE

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

Integrate(ODE, y(x))

Integrate:-Apply(ODE, y(x))

Integrate:-Evaluate(eq)

Parameters

ODE

-

a first order ordinary differential equation

y

-

name; the dependent variable

x

-

name; the independent variable

Description

• 

Integrate(ODE, y(x)) applies an integral to both sides of an exact ODE, and then performs the integration, thereby obtaining a solution to the ODE.

• 

Integrate:-Apply(ODE, y(x)) applies an integral to both sides of an exact ODE, without performing the integration.

• 

Integrate:-Evaluate(ODE) tries to evaluate any unevaluated integrals in the expression ODE, if possible.

Examples

withStudentODEs:

ode1diffzt,tzt+1zt2=t2t1

ode1ⅆⅆtztzt2zt+1=t2t1

(1)

Integrateode1,zt

zt22zt+lnzt+1=t22tlnt1+_C1

(2)

eq2Integrate:-Applyode1,zt

eq2ⅆⅆtztzt2zt+1ⅆt=t2t1ⅆt+_C1

(3)

Integrate:-Evaluateeq2

zt22zt+lnzt+1=t22tlnt1+_C1

(4)

Compatibility

• 

The Student[ODEs][Integrate] command was introduced in Maple 2021.

• 

For more information on Maple 2021 changes, see Updates in Maple 2021.

See Also

dsolve

int

Student

Student[ODEs]