Segment of a circle calculation

  • Thread starter Thread starter bergie7isu
  • Start date Start date
  • Tags Tags
    Calculation Circle
AI Thread Summary
The discussion revolves around calculating the central angle of a segment of a circle given a predetermined area, using the formula for the area of a segment. The equation presented is A = r²/2*(π/180*C - sin(C)), where r is the radius and C is the central angle. Participants note that finding a finite expression for the angle is not possible, and iterative approximation methods are suggested instead. A power series expansion is mentioned as a potential approach for approximating solutions, although it may not be applicable in all cases. Ultimately, the conversation highlights the challenges of deriving a precise angle from a finite segment area and the necessity of numerical methods for practical calculations.
bergie7isu
Messages
2
Reaction score
0
I'm working to calculate the cross-sectional area of a lathe turned feature machined with a radiused insert. My calculations have essentially led me to the equation for the area of a segment of a circle.

Area=r^2/2*(∏/180*C-sin(C))

where r is the circle's radius and C is the central angle of the associated sector.

In this particular case, I have a predetermined area and need to determine the central angle. How do I solve for C?

In it's most basic form, I have:

y=x+sin(x)
Solve for x.


Any help is appreciated. Thanks!
 
Mathematics news on Phys.org
Basically, you can't find a finite expression for the inverse here.
However, various appoximative techniques might be used.

IF, for example, y is "sufficiently close to 0", a power series expansion about x=0 might zoom onto the solution fairly quickly.

To show how this might be done:
We have:
y=x+x-\frac{x^{3}}{3!}+\frac{x^{5}}{5!}+++
when expanding the sine function in its power series (a finite segment of that highly accurate when x is close to zero)

We now invert the power series, by assuming:
x=a_{1}y+a_{2}y^{2}+a_{3}y^{3}+++
where the solution x(y) of the original equation boils down to determining the a's.

Inserting the latter in the former, we get:
y=2*(a_{1}y+a_{2}y^{2}+a_{3}y^{3}+a_{4}y^{4}+a_{5}y^{5}+++)-\frac{1}{6}(a_{1}^{3}y^{3}+3a_{1}^{2}a_{2}y^{4}+3a_{1}^{2}a_{3}y^{5}+3a_{2}^{2}a_{1}y^{5})+\frac{1}{30}a_{1}^{5}y^{5}++
where terms of higher orders in y than 5 are dropped.
Now, we simply compare coefficients in each power to "y", to determine the a's.
We get:
a_{1}=\frac{1}{2}, a_{2}=0, a_{3}=-\frac{1}{48}, a_{4}=0, a_{5}=\frac{1}{640}

Thus, to fifth order accuracy, you have:
x=\frac{1}{2}y-\frac{1}{48}y^{3}+\frac{1}{640}y^{5}
 
Hmm, my coefficients were wrong.
We have:
a_{3}=\frac{1}{96}
a_{5}=-\frac{1}{4800}
or, I hope..:shy:
You'd better check for yourself.
 
arildno, I appreciate the response! Unfortunately, I can't assume y is close to zero in this situation. I agree with your guidance that a finite solution for x isn't possible. It seems that only ordered pairs are achievable (set a value for y, guess a value for x, and iterate until x converges on a solution). I generated a spreadsheet that does the iteration automatically. Thanks again for the help!

This situation is still a little tough to wrap my head around. It would seem that, with a finite area of a segment, I should be able to calculate the central angle. I've yet to intuitively explain why I can't calculate this feature when I have a real, finite, pre-defined segment area that I can measure.

#continuouseducation
 
bergie7isu said:
This situation is still a little tough to wrap my head around. It would seem that, with a finite area of a segment, I should be able to calculate the central angle. I've yet to intuitively explain why I can't calculate this feature when I have a real, finite, pre-defined segment area that I can measure.
It is determined, but calculability is another matter. We are accustomed to treating strandard functions as exact answers. E.g. if the answer to a problem is "x = sin(π/7)" you'd accept that. But in practice, since it is irrational, you can only turn that into a number by iterative approximation. If the problem's answer is "that x for which x+sin(x) = 2", we find that less satisfying, yet in reality it is no different. If answers of that form were to crop up reguarly in some contexts we might define a new function for it, and if we want a numerical answer we iterate.
 
bergie7isu said:
arildno, I appreciate the response! Unfortunately, I can't assume y is close to zero in this situation. I agree with your guidance that a finite solution for x isn't possible. It seems that only ordered pairs are achievable (set a value for y, guess a value for x, and iterate until x converges on a solution). I generated a spreadsheet that does the iteration automatically. Thanks again for the help!

This situation is still a little tough to wrap my head around. It would seem that, with a finite area of a segment, I should be able to calculate the central angle. I've yet to intuitively explain why I can't calculate this feature when I have a real, finite, pre-defined segment area that I can measure.

#continuouseducation

It is not really that difficult to generalize to a given "y", and an "approximate" "x".
However, a general formula, converging fast to any "y"-value is not available.
(But, to any given "y", you ought to be able to find a fast converging series)
 
Last edited:
To generalize this, once you have a desired approximation X* for some "y" of yours (the closer X* is "y", the faster the convergence will be!), we may write:
x=X*+\epsilon
where epsilon is some "small function" of "y" and X*

Inserting this into your equation yields:
y=X*+\epsilon+\sin(X*+\epsilon)=X*+\sin(X*)(1-\frac{\epsilon^{2}}{2}+-+)+\cos(X*)(\epsilon-\frac{\epsilon^{3}}{3!}+-+)
Now, we arrange this to:
\frac{y-X*-\sin(X*)}{1+\cos(X*)}=\epsilon+\frac{\sin(X*)}{1+\cos(X*)}(-\frac{\epsilon^{2}}{2}+-+)+\frac{\cos(X*)}{1+\cos(X*)}(-\frac{\epsilon^{2}}{3!}+-+)
-----------------------------
Remember now that the numerator of LHS is "close to zero", by assumption that X* is an approximate solution!.
Breezing past, for now, the potential trouble of a "too small" denominator on LHS, we term LHS for "kappa", and expand "epsilon" in the power series.
\epsilon=a_{1}\kappa+a_{2}\kappa^{2}+++
Thus, we get, trivially a_{1}=1, and to second order:
0=a_{2}\kappa^{2}-\frac{3\sin(X*)+\cos(X*)}{3!(1+\cos(X*))}\kappa^{2}
that is:
a_{2}=\frac{3\sin(X*)+\cos(X*)}{3!(1+\cos(X*))}
and so on.
Agreed so far?
 
Last edited:
Is this the part where I ask if anyone's thought of using a different formula? The basic formula for the area of a segment is A_{segment} = A_{sector} - A_{triangle}.

If we know the length of the chord between the outer endpoints of the radii and the distance from the center to that chord, the area of the segment can be found by A_{segment} = \frac{x r^2}{2} - \frac{hc}{2} = \frac{x r^2 - hc}{2}, where c is the length of the chord, h is the distance of the chord from the center, and x is in radians. In this case, x = \frac{2A_{segment}+hc}{r^2}.

If we can't find c and h, would it not be reasonable to say that \displaystyle y = x + sin(x) = x + \lim_{r→\infty}\sum_{n=0}^{r} \frac{(-1)^n x^{n+1}}{(2n+1)!}? Thus, our approximation for x gets increasingly better as r approaches infinity.

Either way, remember that your answer for x will be in radians.
 

Similar threads

Replies
5
Views
2K
Replies
4
Views
1K
Replies
3
Views
3K
Replies
4
Views
2K
Replies
2
Views
4K
Replies
1
Views
2K
Replies
4
Views
4K
Back
Top