Ask Your Question
0

Plot a polar curve given the radius?

asked 11 years ago

bxdin gravatar image

updated 10 years ago

FrédéricC gravatar image

Essentially, a question reads: Graph the polar curve r = 4cos(2?), where ? is a radian angle.

The graph of the curve looks like a 4 leafed clover.

The following function, r=3cos(?), looks like a circle centered at (3/2, 0).

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
3

answered 11 years ago

tmonteil gravatar image

updated 11 years ago

You can use the polar_plot() function as follows:

sage: polar_plot(3*cos(2*x), (x, 0, 2*pi))

or

sage: polar_plot(3*cos(x), (x, 0, 2*pi)

See

sage: polar_plot?

for more deatils. Also, note that polar_plot(XXX) is just a shortcut for plot(XXX, polar=True).

Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 11 years ago

Seen: 329 times

Last updated: Sep 07 '13