Demonstration of finding the 4th vertex of a tetrahedron given its base and distances to vertex
Consider a Tetrahedron in the regular cartesian space defined by:
- Points P, Q and R
- Distances , and from the respectives points P, Q and R to the unknown 4th vertex E
The problem consists on finding the (x, y, z) coordinates of the point E.
Although there are other solutions using intersections of spheres or planes, this problem can be solved by regular trigonometric approach.
Note that θ is the angle between the unknow vector and the plane defined by the points P, Q and R. σ is the angle between the projection of on the same plane PQR and the vector .
As the image suggests, σ and θ can be obtained in a straightforward way from the tetrahedron height and elementary trigonometric properties, as shown below.
- Find the tetrahedron Volume using Calyer-Menger determinant:
- Find the Area of triangle P, Q, R using Heron's formula:
- Find the tetrahedron height H using the relationship between Volume and Area:
- Find θ:
Once we have θ the next step is to find the length of the projections and onto the plane defined by P, Q and R:
- Thus, using the Law of Cosines, σ is given by:
Once we have P, , σ and θ we know everything we need to find E.
There are several ways to obtain E(x, y, z), one of them is rotating by σ and then rotating again by θ, as demonstrated below.
- Rotate about by -σ using Rodrigues' formula:
Finally, E is given by
It is noteworthy that the symmetric solution can be find by rotating about by +θ (instead of -θ):
This same problem can be solved by finding the intersection of the 3 spheres centered on P, Q and R and respective radius , and .
Another approach is by finding the intersection of planes PER, PQE and REQ.
One of my future work is checking out if this approach is less computational intensive than others.
I would like to thanks to github markup team for not provide a simple way to write math expressions on markdown documents. Thus, in order to provide the formulas I ended up using this formula image generator: https://www.codecogs.com/latex/eqneditor.php. For more details see github/markup#897.