I want to find the Slopefield curve for the ODE
\begin{equation} y'=y^{2/3} \end{equation}
at the points given under.
In[72]:= ClearAll
In[77]:= initvalues1 = {{0, 0}, {-1, 3}, {3, 3}}
Out[77]= {{0, 0}, {-1, 3}, {3, 3}}
In[78]:= SlopeField[Evaluate[y' == 2 y^(2/3)], {y, -6., 6.}, {x, -6., 6.}, initvalues1]
Out[78]= SlopeField[
1/27 (6 C[1]^2 + 24 C[1] #1 + 24 #1^2) & == 2 y^(2/3), {y, -6., 6.}, {x, -6.,
6.}, {{0, 0}, {-1, 3}, {3, 3}}]
But I get no plot at all.
Any ideas why?
Thanks



Table[y^(2/3), {y, -1., 1., 0.5}]with that ofTable[CubeRoot[y^2], {y, -1., 1., 0.5}]– Bob Hanlon Sep 02 '22 at 14:27SlopeFieldis missing. 2. Even if the definition is added, this is probably a duplicate of https://mathematica.stackexchange.com/q/3886/1871 – xzczd Oct 31 '22 at 12:04ClearAllwon't do what you're imagining, please read the document carefully. One correct wayto "clear all" isClear@"`*". – xzczd Oct 31 '22 at 12:05