Question: graphing a second order differential

I'm trying to graph this differential f''(x) + x/f(x)=0 where y(0)=y'(1)=0 and x is in the range of (0,1) so far I have > de := diff(y(x),x,x)+x/y(x)=0; > ics := y(0)=0, D(y)(1)=0; > dsolve({de,ics}); / 2 \ | d | x de := |---- y(x)| + ---- = 0 | 2 | y(x) \ dx / ics := y(0) = 0, D(y)(1) = 0 it is not solving. Is there anything I' doing wrong?
Please Wait...