Calculating Angle ACB in a Circle Given Point B and Angle from Point A

AI Thread Summary
To calculate angle ACB in a circle given point B and the angle from point A, the law of cosines can be applied. The known values include the radius of the circle (CA), the distance from the center to point B (CB), and the angle CBA. By determining the length of side BA using the law of cosines, the angle ACB can then be calculated. Additionally, the formula Math.Asin(side2 * Math.Sin(angle1) / side1) may be used to find angle CAB. This approach aims to recreate missing functions in the Google Earth API for user benefit.
JonasB
Messages
2
Reaction score
0
Hello all,
sorry if this is a trivial question, or if it's been asked before, but I'm not good with math terminology so my googling doesn't give me much info.. I'm trying to work out a problem in order to recreate some functions that are missing from the public API of Google Earth. (If this is solved I'll post the results for the benefit of other GE users)

I have circle, with a known radius (center called C), and a point B outside a circle at a known distance. I also have a known angle from the point which projects at some point A on the circle's circumference. How can I calculate the angle ACB, i.e. the angle between the circle's center to B and the circle's center to A?

I (hope I've managed to) upload an image describing the problem.

Thanks a lot,
Jonas
 

Attachments

  • Angle.gif
    Angle.gif
    2.9 KB · Views: 580
Mathematics news on Phys.org
what do you mean by projects?
 
ice109 said:
what do you mean by projects?

I think he means a line that connects B to A.

In that case, from what I understand you know the length of CB(given) and CA(radius of the circle). You know the angle CBA(given) as well. Using law of cosines, you can find the length of the other side, BA. Then using law of cosines again, you can calculate the angle you need.
 
Sesse said:
I think he means a line that connects B to A.

In that case, from what I understand you know the length of CB(given) and CA(radius of the circle). You know the angle CBA(given) as well. Using law of cosines, you can find the length of the other side, BA. Then using law of cosines again, you can calculate the angle you need.
I found this:
Math.Asin(side2 * Math.Sin(angle1) / side1)
which, according to the description, should give me the CAB angle. I don't see why exactly, but I'm happy as long as it works. Thanks anyway!
/Jonas
 
Seemingly by some mathematical coincidence, a hexagon of sides 2,2,7,7, 11, and 11 can be inscribed in a circle of radius 7. The other day I saw a math problem on line, which they said came from a Polish Olympiad, where you compute the length x of the 3rd side which is the same as the radius, so that the sides of length 2,x, and 11 are inscribed on the arc of a semi-circle. The law of cosines applied twice gives the answer for x of exactly 7, but the arithmetic is so complex that the...
Thread 'Unit Circle Double Angle Derivations'
Here I made a terrible mistake of assuming this to be an equilateral triangle and set 2sinx=1 => x=pi/6. Although this did derive the double angle formulas it also led into a terrible mess trying to find all the combinations of sides. I must have been tired and just assumed 6x=180 and 2sinx=1. By that time, I was so mindset that I nearly scolded a person for even saying 90-x. I wonder if this is a case of biased observation that seeks to dis credit me like Jesus of Nazareth since in reality...
Thread 'Imaginary Pythagoras'
I posted this in the Lame Math thread, but it's got me thinking. Is there any validity to this? Or is it really just a mathematical trick? Naively, I see that i2 + plus 12 does equal zero2. But does this have a meaning? I know one can treat the imaginary number line as just another axis like the reals, but does that mean this does represent a triangle in the complex plane with a hypotenuse of length zero? Ibix offered a rendering of the diagram using what I assume is matrix* notation...
Back
Top