Solving Differential Equations

bongiman's picture

How do i solve differential equations using Maple.

For example:

dx/dt+(1-cos(t))*x = exp(sin(t))

Robert Israel's picture

dsolve

> de := diff(x(t),t) + (1-cos(t))*x(t)=exp(sin(t));

> dsolve(de);

x(t) = exp(sin(t))+exp(-t+sin(t))*_C1

See the help page ?dsolve for more options (there are many...)

 

bongiman's picture

Thanks

Of course...now i remeber!

Thanks a million Robert

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.
}