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

Online Help

All Products    Maple    MapleSim


Solving Exact Linear ODEs

 

Description

Examples

Description

• 

The general form of the exact, linear ODE is given by the following:

exact_linear_ode := diff(linear_ODE(x),x) = 0;

exact_linear_odeⅆⅆxlinear_ODEx=0

(1)
  

where linearODE(x) is a linear ODE of any differential order; see Murphy, "Ordinary Differential Equations and their Solutions", p. 221. The order of these exact linear ODEs can be reduced since they are the total derivative of an ODE of one order lower. The reduced ODE is:

linear_ODE(x) + _C1;

linear_ODEx+_C1

(2)

Examples

The most general exact linear non-homogeneous ODE of second order; this case is solvable.

withDEtools,odeadvisor

odeadvisor

(3)

ODEdiffdiffyx,x=Axyx+Bx,x

ODEⅆ2ⅆx2yx=ⅆⅆxAxyx+Axⅆⅆxyx+ⅆⅆxBx

(4)

odeadvisorODE,yx

_2nd_order,_exact,_linear,_nonhomogeneous

(5)

dsolveODE,yx

yx=c__2+c__1+BxⅇAxⅆxⅆxⅇAxⅆx

(6)

The general exact linear ODE of fourth order which can be reduced to an exact linear ODE of third order; this can be reduced to a second order ODE and the answer is expressed using DESol

ODEdiffdiffyx,x,x=Axyx+Bxdiffyx,x+Fx,x,x

ODEⅆ4ⅆx4yx=ⅆ2ⅆx2Axyx+2ⅆⅆxAxⅆⅆxyx+Axⅆ2ⅆx2yx+ⅆ2ⅆx2Bxⅆⅆxyx+2ⅆⅆxBxⅆ2ⅆx2yx+Bxⅆ3ⅆx3yx+ⅆ2ⅆx2Fx

(7)

odeadvisorODE,yx

_high_order,_exact,_linear,_nonhomogeneous

(8)

dsolveODE,yx

yx=DESolAx_YxBxⅆⅆx_Yx+ⅆ2ⅆx2_Yxc__2c__1xFx,_Yx

(9)

The general exact linear ODE of fifth order which can be reduced to a first order linear ODE. This ODE can be solved to the end.

ODEdiffdiffyx,x=Axyx+Bx,x,x,x,x

ODEⅆ5ⅆx5yx=ⅆ4ⅆx4Axyx+4ⅆ3ⅆx3Axⅆⅆxyx+6ⅆ2ⅆx2Axⅆ2ⅆx2yx+4ⅆⅆxAxⅆ3ⅆx3yx+Axⅆ4ⅆx4yx+ⅆ4ⅆx4Bx

(10)

odeadvisorODE,yx

_high_order,_fully,_exact,_linear

(11)

ansdsolveODE,yx

ansyx=c__5+4c__1x3+3c__2x2+2c__3x+c__4+BxⅇAxⅆxⅆxⅇAxⅆx

(12)

odetestans,ODE

0

(13)

See Also

DEtools

odeadvisor

dsolve

quadrature

missing

reducible

linear_ODEs

exact_linear

exact_nonlinear

odeadvisor,types