The power functions that i'm trying to plot isn't showing up fully, i've tried changing the domains and stuff but to no avail, can i get some help here please?
\documentclass{article}
\usepackage{amsmath}
\usepackage{pgfplots}
\pgfplotsset{compat=1.13}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
axis lines = center,
xlabel = $x$,
ylabel = {$y$},
xmax = {4},
xmin = {-1},
ymax = {2},
ymin = {-2},
legend pos = outer north east
]
\addplot [
domain=-10:10,
samples=100,
color=black,
]
{x^(1/2)};
\addlegendentry{$y=\sqrt{x}$}
\addplot [
domain=-5:5,
samples=100,
color=blue,
]
{x^(1/4)};
\addlegendentry{$y=x^{\frac{1}{4}}$}
\end{axis}
\end{tikzpicture}
\begin{tikzpicture}
\begin{axis}[
axis lines = center,
xlabel = $x$,
ylabel = {$y$},
xmax = {4},
xmin = {-4},
ymax = {2},
ymin = {-2},
legend pos = north west
]
\addplot [
domain=-10:10,
samples=100,
color=black,
]
{x^(1/3)};
\addlegendentry{$y=x^{\frac{1}{3}}$}
\addplot [
domain=-10:10,
samples=100,
color=blue,
]
{x^(1/5)};
\addlegendentry{$y=x^{\frac{1}{5}}$}
\end{axis}
\end{tikzpicture}
\end{document}

\documentclassand the appropriate packages so that those trying to help don't have to recreate it. I would recommend you use(x)instead of justx. Otherwise I get two graphs output. Also, please clarify what you mean by "showing up fully". – Peter Grill Feb 08 '16 at 04:25(x)instead ofxand PGF Math Function to compute cube root may be of help. – Peter Grill Feb 08 '16 at 05:12expl3solutions I am using. Similarly, when it comes to expansion issues. Also, there was a bizarre issue of the 2nd plot needing a\hspace*{-23.5cm}to be able to see it -- see the edit history. Jake rescued me on that one so no longer an issue. – Peter Grill Feb 08 '16 at 22:01