Finding Triangle Area using Cross Product

the7joker7
Messages
111
Reaction score
0

Homework Statement



Find the area of a triangle `PQR`, where `P=(0,4,4)`, `Q=(2,-6,-5)`, and `R=(-3,-5,6)`

The Attempt at a Solution



The vector PQ = (2, -10, -9)
The vector PR = (-3, -9, 2)

Using matrixes I set up something that looks like this...

I J K
2 -10 -9
-3 -9 2

Then using the matrix methods I get.

I(-20 - 81) - J(4 - 27) + K(-18 - 30)

I(-101) - J(-23) + K(48)

I take the square root of the squares and get.

109.4349122

Answer = 57.0832725061

What's the problem?
 
Physics news on Phys.org
%was too lazy to do computations, so here's the MATLAB code (might help you)
u =

-3 -9 2

>> v

v =

2 -10 -9

>> cross(v,u)

ans =

-101 23 -48

ans =

114.1665

>> ans/2

ans =

57.0833

why divided by 2?
because axb = |a|.|b|.sin theta
and area is 1/2 of that
 
The area of a parallelogram formed by two vectors, \vec{u} and \vec{v}, is |\vec{u}\times\vec{v}|. Since a triangle is half a parallelogram, the the area of a triangle having sides \vec{u} and \vec{v} is half that.
 
RootX, the square root of what you have square doesn't match up with the answer you have.
 
-101 23 -48

ans =

114.1665

>> ans/2

ans =

57.0833

why divided by 2?
because axb = |a|.|b|.sin theta
and area is 1/2 of that

If you take the magnitude the negative numbers will become positive

<br /> \sqrt{(-101)^2 + (23)^2 + (-48)^2}= 114.167 ~ /2 = 57.0833<br /> <br />
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top