Struggling to figure out why the errors in the maple system

1. y''+4y'+5y=0  IV= y(pi/2)=1/2 and y'(pi/2)=-2  I can get to the dsolve and than I run into errors.

2.y''+2ty'+3y=0,  t=0 is an ordinary point of the equation and how is it possible to find a power series solution?

3. Is it possible to solve a problem like this is maple?

A mass weighing 32lbs stretches a spring 2 ft, the mass is initially relesed from a point 1 foot above equilibrium position with an upward velocity of 2ft/s/

 A. Find amplitude and period of motion

b. how many complete cycles will the mass have complieted at the end of 4pi seconds?

 

 

Also, is it possible to map out all of the steps? Any advice will help.

Thanks

alec's picture

2nd problem

I've answered to Problem 1 in another thread. Here is the solution of Problem 2.

dsolve({diff(y(t),t,t)+2*t*diff(y(t),t)+3*y(t)},y(t),
    series);
                                      2                3
  y(t) = y(0) + D(y)(0) t - 3/2 y(0) t  - 5/6 D(y)(0) t  + 7/8 y(0)

         4                5      6
        t  + 3/8 D(y)(0) t  + O(t )

Alec

Comment viewing options

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