ParametricPlot[{cos[t], -sin[t]}, {t, 0,10 Pi}]
i know its basic but when I evaluate this, the graph comes up blank. Can someone tell me if I'm making a mistake somewhere? Thank You
Just capitalize the names of the functions:
ParametricPlot[{Cos[t], -Sin[t]}, {t, 0, 10 Pi}]
All built-in functions start with a capital letter.
Thank You! I knew it was something small like that.