Hello mjsmigel:
Thanks for the interesting question. I will try to answer it for you.
If I'm not quite getting what you're after, please ask me for
clarification and I'll do my best to clear things up for you.
Spirals are fascintating shapes that are typically represented (in
math) in what are called polar coordinates. That is, instead of the
typical (cartesian) coordinates, where you have an "x" and a "y"
value, you instead have an "r" value (for radial distance - distance
from the center) and a "t" or "theta" value (for angle - in radians,
as opposed to degrees). Your data is already in polar coordinates, so
that's a good start.
I used Maple (a mathematical computing program) to try to model your
data as closely as possible with a "simple mathematical function."
After several tries. the closest formula I could get to your data was:
r = 580000/t^2, as t varies from 6.46..13.45 *radians*
Again, to demonstrate that this is a pretty close approximation, I
plotted both your original set of data (the black line) and the above
formula (the green line) together on one set of axes. Have a look at:
http://www.lucidmatrix.com/uploads/spiral.jpg
Of course, if you want to produce more "loops" in the spiral, you only
need change (increase) the range over which t varies.
Now, if you want to try to reproduce this spiral in a computer
program, I'd suggest converting from polar coordinates into cartesian
coordinates. To do so, first compute the r and t values from the above
formula, then you can produce the x and y values using:
x = r Cos[t]
y = r Sin[t]
as can be seen on
Drawing Spirals on Your Computer
URL: http://mathforum.org/library/drmath/view/54401.html
I hope this information helps with your research.
If you need any clarification of the information I have provided,
please ask using the clarification feature and provide me with
additional details as to what you are looking for. As well, please
allow me to provide you with clarification(s) *before* you rate this
answer.
Thank you.
websearcher-ga
Search Strategy (on Google):
spiral formula
http://mathforum.org/library/drmath/view/54401.html |