Jake's method is probably simpler, but here I have adapted the standard parametric equation for a spiral and added an offset so that the spiral does not start at the origin to yield:

Notes:
- The
440 in the denominator is to normalize the graph so that the arc ends at a y=1. - Polar equations should yield similar results with simpler equations.
- There is something wrong with the brown line (even though it is in the correct spot) as it is not ending where I think it should, but this is not related to generating the spiral.
Code:
\documentclass{article} \usepackage{pgfplots} \newcommand*{\Offset}{360}% \begin{document} \begin{tikzpicture} \begin{axis}[xmin=-2.5,xmax=2.5,ymin=-2.5,ymax=2.5, axis lines=center] \addplot[blue,densely dashed,domain=0:440,samples=200,-latex] ({(x+\Offset)*cos(x+\Offset)/(440+\Offset)}, {(x+\Offset)*sin(x+\Offset)/(440+\Offset)}); % Show the 440 degree angle \pgfmathsetmacro{\XValue}{1.0}% \pgfmathsetmacro{\YValue}{\XValue*tan(440)}% \draw [brown, thick] (axis cs: 0,0) -- (axis cs: \XValue,\YValue); \end{axis} \end{tikzpicture} \end{document}
\draw [domain=0:10,variable=\t,smooth,samples=75] plot ({\t r}: {0.05*\t+0.1});-440angle is incorrectly labelled, it should be440 degrees(not minus).