calculating various cuts of a circle

530 Views Asked by At

im trying to find some sort of formula to calculate lines within a circle.

Circle devided by lines

I need to find the length of the various lines within the circle from which I only know the diameter. Is there some sort of formula that uses the dropoff of a circles side from the center?

Thanks, Martijn

2

There are 2 best solutions below

4
On BEST ANSWER

If $h$ is the distance of the line from the center and $r$ the radius of the circle, the length of the line is given by: $$l=2\sqrt{r^2-h^2}$$

0
On

There are 2 equations to find the chord length of a circle depending on the information given (ie, the things that you know about the circle)


1) Given the radius and central angle: circ1

$$l = 2\cdot r\cdot sin(\theta / 2)$$

where r is the radius of the circle
and $\theta$ is the angle subtended at the center by the chord
Use this formula if you know the radius and central angle of the circle.


2) Given the radius and distance to center: circ2

$$l = 2\cdot\sqrt {r^{2} - h^{2}}$$


where r is the radius of the circle
and h is the perpendicular distance from the chord to the circle center
This is a formula for the length of a chord if you know the radius and the perpendicular distance from the chord to the circle center.
This formula is the result of a simple application of Pythagoras' Theorem.