ODE Steps for Systems of ODEs
Overview
Examples
This help page gives a few examples of using the command ODESteps to solve systems of ordinary differential equations.
See Student[ODEs][ODESteps] for a general description of the command ODESteps and its calling sequence.
with⁡Student:-ODEs:
high_order_ode1≔diff⁡y⁡x,x,x,x+3⁢diff⁡y⁡x,x,x+4⁢diff⁡y⁡x,x+2⁢y⁡x=0
high_order_ode1≔ⅆ3ⅆx3y⁡x+3⁢ⅆ2ⅆx2y⁡x+4⁢ⅆⅆxy⁡x+2⁢y⁡x=0
ODESteps⁡high_order_ode1
macro⁡Y=y1⁡x,y2⁡x:
sys2≔diff⁡Y,x=`%.`⁡Matrix⁡7,1,`-`⁡4,3,Y
sys2≔ⅆⅆxy1⁡xⅆⅆxy2⁡x=71−43·y1⁡xy2⁡x
ODESteps⁡sys2
sys3≔diff⁡Y,x=Matrix⁡1,2,3,2·Y+1,exp⁡x
sys3≔ⅆⅆxy1⁡xⅆⅆxy2⁡x=y1⁡x+2⁢y2⁡x+13⁢y1⁡x+2⁢y2⁡x+ⅇx
ODESteps⁡sys3
sys4≔diff⁡w⁡x,x=w⁡x+2⁢z⁡x,diff⁡z⁡x,x=3⁢w⁡x+2⁢z⁡x+exp⁡x
sys4≔ⅆⅆxw⁡x=w⁡x+2⁢z⁡x,ⅆⅆxz⁡x=3⁢w⁡x+2⁢z⁡x+ⅇx
ODESteps⁡sys4
See Also
diff
Int
Student
Student[ODEs]
Student[ODEs][ODESteps]
Download Help Document