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

AI Thread Summary
To calculate the radius of an arc using arc length (L), chord length (C), and segment angle (A), the formula R = L / (A in radians) can be applied. The angle A must be converted from degrees to radians using the formula A * π / 180. A user successfully implemented this in Ruby code to find the radius after clarifying their understanding of radians. The discussion highlights the importance of grasping basic geometric concepts to solve problems effectively. Understanding the relationship between degrees and radians simplifies the process of calculating the radius from the given parameters.
Alaskan Son
Messages
13
Reaction score
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
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 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 : )
 
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:
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.
 
Suppose ,instead of the usual x,y coordinate system with an I basis vector along the x -axis and a corresponding j basis vector along the y-axis we instead have a different pair of basis vectors ,call them e and f along their respective axes. I have seen that this is an important subject in maths My question is what physical applications does such a model apply to? I am asking here because I have devoted quite a lot of time in the past to understanding convectors and the dual...
Fermat's Last Theorem has long been one of the most famous mathematical problems, and is now one of the most famous theorems. It simply states that the equation $$ a^n+b^n=c^n $$ has no solutions with positive integers if ##n>2.## It was named after Pierre de Fermat (1607-1665). The problem itself stems from the book Arithmetica by Diophantus of Alexandria. It gained popularity because Fermat noted in his copy "Cubum autem in duos cubos, aut quadratoquadratum in duos quadratoquadratos, et...
Insights auto threads is broken atm, so I'm manually creating these for new Insight articles. In Dirac’s Principles of Quantum Mechanics published in 1930 he introduced a “convenient notation” he referred to as a “delta function” which he treated as a continuum analog to the discrete Kronecker delta. The Kronecker delta is simply the indexed components of the identity operator in matrix algebra Source: https://www.physicsforums.com/insights/what-exactly-is-diracs-delta-function/ by...

Similar threads

Back
Top