I am trying to plot the function $-0.5x^{\frac{4}{3}}-x^{\frac{1}{3}}+1.2x+1$ over the interval $[-2,5]$ but the graph for negative $x$ values is not plotting. How do I get the graph when $x$ is negative?
\begin{tikzpicture}
\begin{axis}[
axis lines = center,
xlabel = $x$,
ylabel = $y$,
xmin = -2.5, xmax = 4.5,
ymin = -1.5, ymax = 2.5,
xtick = {-2,-1.191,-0.103,0,0.292,1,2,4.144}]
\addplot[
domain = -5:5,
samples = 200,
smooth,
thick,
blue,
] {-0.5x^(4/3)-x^(1/3)+1.2x+1};
\end{axis}
\end{tikzpicture}


\pgfmathdeclarefunction{CubeRoot}{1}{% \pgfmathparse{ifthenelse(#1<0,-1,1)*exp((ln(abs(#1)))/3)}% }– Ungar Linski Oct 27 '21 at 00:32