I am attempting to create a parametric plot, actually two parametric plots on one axis. Nothing is coming out right and I think I need help. I admit to having less than an hour of time practicing on different plots to get the idea of how things are done but this is my first parametric plot.
I am attempting to create the following plot (without axis or labels):
I produced this plot using Mathematica and it is a plot of a circle and of another pair of parameterized equations that create the wavy line around the circle. The equations are:
x = (4+sin(12t))cos(t) and y = (4+sin(12t))sin(t)
Where t runs from 0 to 2*pi. And, also plotted is a circle whose parametric equations are {4cos(t),4sin(t)}.
I attempted to use the \addplot command guessing at plotting parametric equations but it is not working. My \addplot command is:
\addplot [domain=0:2*pi,samples=200,color=red]({(4+sin(12*x))*sin(x)},{(4+sin(12*x))*cos(x)});
Note that this one plot does not create the circle, I was going to add that with another \addplot command but got stuck making this work. The resulting plot was nothing like I expected, just sort of a slightly curved line.


