Formula to find arc radius using arc length, chord length, and/or segment angle

In summary, @Klaas van Aarsen explained that the angle A in radians is the arc length L divided by the radius R.
  • #1
Alaskan Son
13
0
I'm attempting to write some code using the Ruby programming language that will give me the radius of an arc but the only pieces of information I have to work with are the arc length (L), the chord length (C), and the circular segment angle in degrees (A):
Arc.jpg


I'm hoping someone can show me how to insert L, C, and A into a formula that I can use in my code. I'm working with a CAD program that opens up access to certain pieces of information about each arc, but unfortunately radius isn't one of them, so I need to use the information I do have to find the radius.

Thanks so much for your time.
 
Last edited:
Mathematics news on Phys.org
  • #2
Let R be the radius of the arc.
Then the angle A in radians is defined as the arc length L divided by the radius R.
In other words:
$$A = \frac L R\implies R=\frac{L}{A}$$
 
  • #3
Klaas van Aarsen said:
Let R be the radius of the arc.
Then the angle A in radians is defined as the arc length L divided by the radius R.
In other words:
$$A = \frac L R\implies R=\frac{L}{A}$$

@Klaas van Aarsen Thank you! I was able to use your answer to write my desired code section. I just needed to add some language to convert degrees to radians (degrees*pi/180). My finished section of Ruby code looks like this:
Ruby:
arc_length/(arc_angle * Math::PI / 180)

Thanks so much for the help : )
 
  • #4
Pretty elementary I know, but just in case this helps anyone else:
I feel a little silly in retrospect. I searched all over the place online before posting here. My problem was that I didn't until today understand what a radian was. A radian is essentially defined as the circular segment angle at which the arc length is equal to the radius. I've attempted to illustrate this in the image below:
Radian.jpg


For me personally, I can then pretty easily go through all the logic like so:
  • As most people know, a circle's circumference can be measured by its radius*2*pi, therefore...
  • A full circle contains a quantity of radians that can be represented as 2*pi, therefore...
  • 360 degrees/(2*pi) or 180/pi gives me the number of degrees in a radian, therefore...
  • The inverse of 180/pi or pi/180 will give me the number of radians in a degree
  • Knowing my degrees, I therefore know exactly how many radians I'm working with...
  • Knowing my arc length, I can then simply divide that by my number of radians to get my radius
Its all quite easily understandable using things I already knew as soon as I understood what a radian was. Thanks again @Klaas van Aarsen for giving me an answer that got me looking in the right place.
 
Last edited:
  • #5
Its funny, it just occurred to me that it was right there in front of me all along. I didn't even need to know what a radian was at all. Its really more of a concept than it is a necessary number. In and of itself its pretty meaningless. It all just came back to what I learned way back in grade school:
diameter*pi = circumference. I could have easily extrapolated everything I needed from that had I thought about it a little harder.
 

1. What is the formula for finding the arc radius using arc length?

The formula for finding the arc radius using arc length is:
Radius = (Arc Length / 2π) * Circumference

2. How do I find the arc radius if I only have the chord length?

If you only have the chord length, you can use the following formula to find the arc radius:
Radius = (Chord Length / 2) * (Square Root of (4 * Arc Length2 - Chord Length2))

3. Can I find the arc radius if I know the segment angle?

Yes, you can find the arc radius if you know the segment angle by using the formula:
Radius = (Chord Length / 2) * (Cosecant of (Segment Angle / 2))

4. Is there a way to calculate the arc radius without knowing any other measurements?

No, in order to calculate the arc radius, you need to know at least one of the following measurements: arc length, chord length, or segment angle.

5. Can I use the same formula to find the arc radius for any size circle?

Yes, the formula to find the arc radius works for any size circle as long as you have the necessary measurements.

Similar threads

Replies
1
Views
1K
Replies
13
Views
2K
Replies
2
Views
1K
  • General Math
Replies
7
Views
5K
Replies
1
Views
2K
Replies
1
Views
1K
  • General Math
Replies
2
Views
1K
Replies
4
Views
4K
Replies
6
Views
1K
  • Calculus and Beyond Homework Help
Replies
26
Views
2K
Back
Top