Question: Plot of solution of ODE

Dear all;

Thanks in advance for helping me to plot the solution of this second order ode.

 

with(plots):
ode := diff(y(x), x, x) = x*y(x)+x^(17/12);
ics := y(1000) = 0, y(1001) = 1;
 dsolve({ics,ode}):

How can I plot the solution obtained in the range (1000, 1001).

Thanks

Please Wait...