Question: dsolve with "ics" not solving my arbitrary constants

Hi,

 

I'm trying to learn the dsolve command on Maple. I have a second order differential equation and two initial conditions to solve it.

I'm following maple help's procedure to solve it. But in the end i don't get my constants solved (which i do if i use Matlab i.e.)

What am i doing wrong?

restart;
ode := diff(Y(y), y, y) = 3*(1-(y/b)^2)*q/(4*k*b);
                                    /     2\  
                                    |    y |  
                                  3 |1 - --| q
                                    |     2|  
                  d  / d      \     \    b /  
                 --- |--- Y(y)| = ------------
                  dy \ dy     /      4 k b    
dsolve(ode);
                         2       4                
                    3 q y     q y                 
             Y(y) = ------ - ------- + _C1 y + _C2
                    8 b k        3                
                             16 b  k              
ics := Y(b) = Ts-Tb; (D(Y))(-b) = 0;
                         Y(b) = Ts - Tb
                          D(Y)(-b) = 0
dsolve({ics, ode});
                      2       4          
                 3 q y     q y           
          Y(y) = ------ - ------- + _C1 y
                 8 b k        3          
                          16 b  k        

               16 _C1 b k + 16 Tb k - 16 Ts k + 5 b q
             - --------------------------------------
                                16 k                 

or a screenshot:

 

 

 

 

Please Wait...