How can I plot theta = pi/4 in sage?
I tried doing the following
p4 = polar_plot(lambda x: pi/4, 0, 2*pi, rgbcolor=hue(0.6))
p4.show()
but it doesn't show the desired figure.
p4 = polar_plot(lambda x: x, 0, 2*pi, rgbcolor=hue(0.6))
p4.show()
shows archimedes spiral. It seems that lambda x is r.