First, your geometry is a little off. A true arc length both points should
lie on the circle which means X & Y should both be the same length. With a
right triangle If X if on the circle, Y will extend out past the circle. If
Y is on the circle, X will be inside the circle and you would have to extend
X to intersect the circle.
Arc length is the circumference times (angle of arc/360)
circumference = 2 *pi*radius
Your case where X is on the circle
Radius is X
circumference = 2 * pi * X
angle of arc (radians) = tan(Y/X)
angle of arc (degrees) = (pi/180) * tan(Y/X)
Arc Length = (2 * pi * X) * (pi/180) * tan(Y/X)
The answer could also be if Y is on the circle
Arc Length = (2 * pi * Y) * (pi/180) * tan(Y/X)
"Eric" wrote:
> In a 60 degree right triangle, x-axis = 1 and y-axis = Sqrt(3).
> In degree mode, Tan(60) = Sqrt(3).
> In radian mode, Tan(60 x Pi / 180) = Sqrt(3)
> 60 x Pi / 180 is the arc length between 60 degree angle.
> Therefore, there is a direct relationship between arc length and x & y
> length for each triangle.
> Given with any x and y lengths for a right triangle, I would like to
> determine the arc length based on this relationship.
> Does anyone have any suggestions on how to determine the formula to
> calculate the arc length?
> In this example, x =1 in cell A1 and y = Sqrt(3) in cell B1, I would like to
> determine the arc length = Pi / 3 in cell C1.
> Does anyone have any suggestions?
> Thanks in advance for any suggestions
> Eric
|