How can I show that the Euler method fails to approximate the exact solution $$y(x)=(2x/3)^{3/2}$$ to the IVP $$y'=y^\frac{1}{3}$$ $$y(0)=0$$
Here we have $f(t,y)= y^\frac{1}{3}$, $y_0=0$ and so $f(t_0,y_0)=f(0,0)=0$ and $$y_{n+1}=y_n +h f(t_n,y_n)$$ Thus $$y_1=0 \\ y_2=0 \\ \vdots\\ y_n=0$$
So, I can't understand why it fails. Could you help me?