I have a circle (if that would even be the correct name for this shape), with a radius function equal to $R=\frac 2\theta + 1$, where $\theta$ is the angle in radians. The domain is between $\theta = 0.25$ and $\theta = 2\pi$.
How do I calculate the total outside perimeter of this shape? I tried to divide it into individual sectors, and find the arc length, but couldn't find a way due to the two radii (in each sector) being different.
The main question is what is a generalised method that could be used to calculate the perimeter of the shape, with an increasing radius (which increases with the angle relative to a starting direction)? The exact function isn't too important.

Remember how one derives the formula for the arc length for $y=f(x)$: $$L=\int_{x_1,f(x_1)}^{x_2, f(x_2)}dl=\int_{x_1,f(x_1)}^{x_2, f(x_2)}\sqrt{(dx)^2+(dy)^2}=\int_{x_1}^{x_2}\sqrt{1+\left(\frac{dy}{dx}\right)^2}dx$$ We can start with the same formula, but we switch to polar coordinates: $$x=r\cos\theta\\y=r\sin\theta$$ Since our integration variable is $\theta$, you get $$\frac{dx}{d\theta}=\frac{dr}{d\theta}\cos\theta-r\sin\theta\\\frac{dy}{d\theta}=\frac{dr}{d\theta}\sin\theta+r\cos\theta$$ Square the above equations and add the together. Then you get $$\left(\frac{dx}{d\theta}\right)^2+\left(\frac{dy}{d\theta}\right)^2=r^2+\left(\frac{dr}{d\theta}\right)^2$$ Then $$L=\int_{\theta_1}^{\theta_2}\sqrt{r^2+\left(\frac{dr}{d\theta}\right)^2} d\theta$$