How to find third coordinate of triangle when two coordinates and their corresponding angles are given

人盡茶涼 提交于 2019-12-11 02:55:26

问题


i am trying to calculate third coordinate of triangle ABC, where A(x1,y1) B(x2,y2) angle CAB=a1 and angle CBA=a2. i need to find third coordinate C(x3,y3) i had thought of using law of cosines, but they may result some complex equations to solve.

i need some simple technique to solve them, or using some direct formulas or any other method that can be implemented in computer program.

can anyone help me in this problem?


回答1:


At least two ways are possible:

  1. Through lines
    • Build a line equation for each triangle edge containing unknown vertex
    • Find intersection of these lines
  2. Through circles
    • Find length of each unknown edge using http://en.wikipedia.org/wiki/Law_of_sines
    • Find intersections of two circles


来源:https://stackoverflow.com/questions/10966805/how-to-find-third-coordinate-of-triangle-when-two-coordinates-and-their-correspo

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!