[Math] How to calculate the third Point if two points and all distances between the Points are available

geometrytrianglestrigonometry

I have a triangle with 3 Points. The positions of two points are available. And also i know the distances between the three Points. How is it possible to calculate the position of the third point?

Picture

Available

  • Point A (the x and y coordinate)
  • Point B (the x and y coordinate)
  • AB (distance between Point A and Point B)
  • BC (distance between Point B and Point C)
  • AC (distance between Point A and Point C)

Unknown

  • Point C (the x and y coordinate)

Best Answer

You know the following two identities: $$AC = \sqrt{(C_x-A_x)^2+(C_y-A_y)^2}\quad\quad(1)$$ $$BC = \sqrt{(C_x-B_x)^2+(C_y-B_y)^2}\quad\quad(2)$$ So you have two equations with two unknowns. You can solve using any method your familiar with. Here's the first few steps using substitution (to get you started).

Solve $(1)$ for $C_x$ to obtain:

$$ C_x=\sqrt{AC^2-(C_y-A_y)^2} +A_x\quad\quad(3)$$ (We ignored the minus square root option, why?)

Now plug $(3)$ into $(2)$ and solve for $C_y$. (This will give you a numeric answer for $C_y$, which you can then plug into $(3)$ to get a numeric answer for $C_x$, make sense?)

Aside: Note that we didn't use $AB$. Since we already know $A_x,A_y,B_x,$ and $B_y$, $AB$ doesn't give us any new information.

Related Question