Der von geogebra exportierte Code ist leider fehlerhaft. Für das Plotten von Funktionen bietet sich das Paket [`pgfplots`][1] an:
\documentclass[margin=5mm]{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=1.9}
\definecolor{cczzqq}{rgb}{0.8,0.6,0}
\definecolor{qqzzcc}{rgb}{0,0.6,0.8}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
axis lines=middle, %x-Achse bei y=0, y-Achse bei x=0
xlabel=$x$,xlabel style={anchor=north},% Beschriftung x-Achse
ylabel=$y$,ylabel style={anchor=east},% Beschriftung y-Achse
legend style={legend pos=outer north east},% Legende außerhalb oben rechts,
legend cell align=left,% Legendeneinträge linksbündig
domain=-0.5:0.5,% Definitionsbereich
enlargelimits={rel=0.05},% enlargelimits=0.05,% Achsen 5% länger
samples=100,/tikz/smooth% samples=100,/tikz/smooth,no marks% Vorgaben für die Plots
]
\addplot[samples=100]{x^2*sin((1/(x))*180/pi)};
\addplot{x^2*sin((1/(x))*180/pi)};
\addlegendentry{$y=x^2\cdot\sin(1/x)$}
\addplot[color=qqzzcc]{-x^2};
\addlegendentry{$y=-x^2$}
\addplot[color=cczzqq]{x^2};
\addlegendentry{$y=x^2$}
\end{axis}
\end{tikzpicture}
\end{document}
![alt text][2]
[1]: http://www.ctan.org/pkg/pgfplots
[2]: http://texwelt.de/wissen/upfiles/plotgeog.PNG