Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

504 Differential Equations with Maple V

Note that x{t) corresponds to the first part of the list s o l u t i o n , while y{t) corresponds to the
second part of s o I u t i on. To graph x{t) and y{t) for various initial conditions and values of C,
we use ρ Γ o c to define χ and y.

> x:=proc(tO,xOO,yOO,cO)
subs({t=tO,xO=xOO,yO=yOO,c=cO>,solutionC1])
end:
y:=proc(tO,xOO,yOO,cO)
subs({t=t0,x0=x00,y0=y00,c=c0>,solutionC2])
end:

For example, entering

> x(t,2,1,10);

2 2

and

> ).(t,2,1,10);

returns the solution to the initial-value problem

dt 10 10
x(0) = 2,y(0) = l

Similarly, entering

You might also like