Finding the length of a spiral

6.5k Views Asked by At

I need to find the length of a spiral. The spiral start at a certain radius $R_1$ and ends at a smaller radius $R_2$. As the spiral spins inwards, the distance between each arm of the spiral decreases but not by a constant amount (as the radius decreases, the decrease in radius is smaller and smaller).

I tried using the archemedian spiral equation ($r = a + b\theta$) and making $b$ and $a$ function of $r$ (where $a$ is start radius and $2\pi b$ is the decrease in radius per revolution),and then using a standard spiral length integral formula but this seems to give the wrong answer. I think that the formula above doesn't apply to my situation, would anyone know a better way to model it?

Thanks!

2

There are 2 best solutions below

3
On

Use the formula $\int ds$

Where $ds = \sqrt{(dx)^2+(dy)^2}$

We can write $$x = r\cos\theta = (a+b\theta)\cos\theta \Rightarrow dx = b\cos\theta -(a+b\theta)\sin\theta\hspace{1mm}d\theta$$

And $$y = r\sin\theta = (a+b\theta)\sin\theta \Rightarrow dx = b\sin\theta +(a+b\theta)\cos\theta\hspace{1mm}d\theta$$

$ $

$ $

You will have $$ds = \sqrt{b^2+(a+b\theta)^2}\hspace{1mm} d\theta$$

$ $

Integrate $$\int_{\theta_1}^{\theta_2} \sqrt{b^2+(a+b\theta)^2}\hspace{1mm} d\theta$$

$ $

You need to find $\theta_1$ and $\theta_2$ as needed

0
On

Here's a thought: since your spiral has spacings between arms that are decreasing by less and less as the object spirals inwards, we can start your spiral with a formula that makes the spacings increase as a function of theta, like this: r = a +b*theta^1.1 or r = a + b*theta^1.2 Now this or some other ever-increasing formula should model the behavior just right, it won't solve nearlty as easily as the Archimedean spiral equation, given that b^2 will become something with theta. The reason the other method didn't work is that the archimedean spiral equation describes spirals with a constant spacing between spiral arms, and your spiral doesn't share this behavior.