2) Plots

Implicit Plots

> restart;

> with(plots):

> implicitplot(x^2-y^2=1,x=-3..3,y=-3..3);

> implicitplot3d( (x-1)^2 + (y+1)^2 + z^2 = 4,x=-1..3,y=-3..1,z=-2..2,
color=blue);

e.g. Power function

> with(plots):

To plot the power function starting at n=0 with increment powers of .5 we can write the simple Maple procedure (program)

> for n from 0 by .5 to 3 do

> P[n] := x^n

> plot(P[n],x = -1 .. 1)

> od:

all the functions plotted together gives

> plot({P[0],P[.5],P[1.0],P[1.5],P[2.0],P[2.5],P[3.0]},x=-1..1);

> animate( x^k,x=-1..1,k=0..3,frames=7,color=blue);