Using plots[display](), display the following items.

> with(plots):

x2

> display(plot(x^2,x=-10..10));

[Maple Plot]

cos(theta-pi*theta)

> display(plot(cos(theta-Pi*theta),theta=-2*Pi..2*Pi));

[Maple Plot]

lnex (To use ex, type exp(x))

> display(plot(ln(exp(x)),x=0..10));

[Maple Plot]

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]

 

Close Window