Using plots[display](), display the following items.
> with(plots):
x2
> display(plot(x^2,x=-10..10));
![[Maple Plot]](../images/plot-02a1.gif)
cos(theta-pi*theta)
> display(plot(cos(theta-Pi*theta),theta=-2*Pi..2*Pi));
![[Maple Plot]](../images/plot-02a2.gif)
lnex (To use ex, type exp(x))
> display(plot(ln(exp(x)),x=0..10));
![[Maple Plot]](../images/plot-02a3.gif)
Bonus: Display a circle with radius 1 and center 0,0. You may not use implicit plotting.
> with(plottools):
> display(circle([0,0],1),scaling=constrained); #We'll go into plottools[circle]() later when we learn about animations.
![[Maple Plot]](../images/plot-02a4.gif)