How do I solve triangles in 3D with specific vertices?

  • Context: Undergrad 
  • Thread starter Thread starter uf2010
  • Start date Start date
  • Tags Tags
    3d Triangles
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
4 replies · 3K views
uf2010
Messages
2
Reaction score
0
How do i find the angles in the triangle with the vertices at [2,-1,0], [5,-4,3], and [1,-3,2]. This problem has been bothering me because when i find the angle between the vectors it only adds to roughly 110 degrees, and that cannot be right.
 
Mathematics news on Phys.org
I have tried this, but the sum of the three angles only equals 110 not 180.
 
nicksauce's approach should work here. You should be careful of the directions the vectors point and the angle between them. The angle between the tail of a vector and and the head of another vector is not the same as the one given by the dot product.
 
Another way which doesn't involve vectors would be to find the lengths of the triangle by calculating distance between points, then apply cosine rule. A purely geometrical approach.