I need to plot the polar equation
$\theta=\frac{\pi}{6}$
My question has two parts.
Is it a line? I'm pretty sure it is, since the angle theta in the polar equation is a constant, but since I was not able to plot this on wolframalpha, I'm not 100% sure and I would like to confirm this.
How do I plot this on WolframAlpha? For example, I know that I can write polar plot $r=\sin(\theta)$, and this will give me a circle, as it should. But if $\theta = \pi/6$ is a line, writing polar plot $\theta=\pi/6$ gives me the wrong answer.
Wolfram Alpha seems to want Cartesian coordinates. The closest I've gotten while still mentioning a polar coordinate is to type
plot x=rcos(pi/6), y=rsin(pi/6), which gives the full line $y=x/\sqrt{3}$ rather than just its $x\ge0$ ray. The desired ray can be obtained withplot y=x/sqrt(3) from 0 to infinity.