Search code examples
mathtrigonometryhypotenuse

How can I find the arctan of a right triangle using only the hypotenuse?


Okay, so I need to make C go the shortest path from A to B. A to B is the hypotenuse of my right triangle, and I need to give C the arctan of said triangle. How do I do this, and does the formula have a name?


Solution

  • Arctan would result in degrees or radians so your A and B most likely have coordinates like (x, y). Then you do arctan((By - Ay) / (Bx - Ax)) if I remember correctly, here Bx is the x coordinate of B etc.

    If A and B do not have coordinates, you cannot get degrees out meaningfully.