This will plot a curve given by $x=f(t)$ and $y=g(t)$. Just type in the functions below, and then adjust the bounds as needed.
<sagecell> var('x,y,t') x=cos(t) y=sin(t)
parametric_plot((x,y),(t,0,2*pi)) </sagecell>
{{page>get_sage}}
This will plot a curve given by $x=f(t)$ and $y=g(t)$. Just type in the functions below, and then adjust the bounds as needed. <sagecell> var('x,y,t') x=cos(t) y=sin(t) parametric_plot((x,y),(t,0,2*pi)) </sagecell> {{page>get_sage}} |
||