PolarA17.mws

PolarA17.mws

>    restart;

##################################################################

>    f := sin;         ##  r = f(theta)

f := sin

>    trg := 0..Pi;     ##  parameter interval

trg := 0 .. Pi

>    plot([f(t), t, t=trg]);  ## Cartesian Plot

[Maple Plot]

>    plot([f(t),t,t=trg],coords=polar);

[Maple Plot]

################################################################

>    f := t  -> sin(4*t);  ##  r = f(theta)

f := t -> sin(4*t)

>    trg := 0..2*Pi;       ##  parameter interval

trg := 0 .. 2*Pi

>    plot([f(t),t,t=trg]); ##  Cartesian plot

[Maple Plot]

>    plot([f(t),t,t=trg],coords=polar);

[Maple Plot]

###############################################################

>    f := t  -> 1 + 2*cos(t/2);  ##  Problem 46

f := t -> 1+2*cos(1/2*t)

>    trg := 0..4*Pi;       ##  parameter interval

trg := 0 .. 4*Pi

>    plot([f(t),t,t=trg],coords=polar);

[Maple Plot]

>    #######################################################

>