Plotting in Polar Coordinates

Dr. K. G. TeBeest

Example 6: Plot r = 1-.5*sin(theta)

A limacon without a dimple. See Example 11 in the text.

Note how the curve fills in as the theta range is increased.

Here t is used instead of theta since t is easier to type.

> r:= 1 - 0.5 * sin( t );

r := 1-.5*sin(t)

> plot( r, t = 0 .. 1*Pi/4, coords = polar, scaling = constrained, thickness = 2);

[Maple Plot]

> plot( r, t = 0 .. 2*Pi/4, coords = polar, scaling = constrained, thickness = 2);

[Maple Plot]

> plot( r, t = 0 .. 3*Pi/4, coords = polar, scaling = constrained, thickness = 2);

[Maple Plot]

> plot( r, t = 0 .. 4*Pi/4, coords = polar, scaling = constrained, thickness = 2);

[Maple Plot]

> plot( r, t = 0 .. 5*Pi/4, coords = polar, scaling = constrained, thickness = 2);

[Maple Plot]

> plot( r, t = 0 .. 6*Pi/4, coords = polar, scaling = constrained, thickness = 2);

[Maple Plot]

> plot( r, t = 0 .. 7*Pi/4, coords = polar, scaling = constrained, thickness = 2);

[Maple Plot]

> plot( r, t = 0 .. 8*Pi/4, coords = polar, scaling = constrained, thickness = 2);

[Maple Plot]


See Example 7
Return to Section 10.3

Dr. K. G. TeBeest
Applied Mathematics
Kettering University