[Tex/LaTex] Help to plot a surface

asymptotetikz-pgf

I would like to plot the surface

$S=\{(x,y,z)\in\mathbb{R}^3\ z=xy\}$

for an exercise of affine geometry but I am a novice in graphics!
Can I use GeoGebra? or TikZ or Asymptote?

Best Answer

You can use the pgfplots package at will. Please check the manual for lots of other possibilities such as view angle, shader types etc.

\documentclass{article}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[grid=both]
\addplot3[surf,shader=faceted] {x*y};
\end{axis}
\end{tikzpicture}
\end{document}

enter image description here