I want to plot the next parametric curves in polar coordinates
r(t)=sin(r(t))
phi(t)=t
How can I make it in Mathematica?
I want to plot the next parametric curves in polar coordinates
r(t)=sin(r(t))
phi(t)=t
How can I make it in Mathematica?
Try
r[t_] = Sin[t];
PolarPlot[r[t], {t, 0, 2 π}]