Wolfram Language Fast Introduction for Math Students
Get Started »

More Plots in 2D

Use ParametricPlot to plot a set of parametric equations:

In[1]:=
Click for copyable input
ParametricPlot[{2 Cos[t] - Cos[2 t], 2 Sin[t] - Sin[2 t]}, {t, 0, 
  2 Pi}]
Out[1]=

Make a ContourPlot of a function in multiple variables:

In[1]:=
Click for copyable input
ContourPlot[Sqrt[x^2 + y^2], {x, -1, 1}, {y, -1, 1}]
Out[1]=

Use DensityPlot for a continuous version:

In[2]:=
Click for copyable input
DensityPlot[Sqrt[x^2 + y^2], {x, -1, 1}, {y, -1, 1}]
Out[2]=

QUICK REFERENCE: Function Visualization »