| Thread Closed |
Finding Triangle Area using Cross Product |
Share Thread | Thread Tools |
| Apr5-08, 10:09 PM | #1 |
|
|
Finding Triangle Area using Cross Product
1. The problem statement, all variables and given/known data
Find the area of a triangle `PQR`, where `P=(0,4,4)`, `Q=(2,-6,-5)`, and `R=(-3,-5,6)` 3. 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? |
| Apr5-08, 11:30 PM | #2 |
|
Blog Entries: 14
|
%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 |
| Apr6-08, 06:55 AM | #3 |
|
|
The area of a parallelogram formed by two vectors, [itex]\vec{u}[/itex] and [itex]\vec{v}[/itex], is [itex]|\vec{u}\times\vec{v}|[/itex]. Since a triangle is half a parallelogram, the the area of a triangle having sides [itex]\vec{u}[/itex] and [itex]\vec{v}[/itex] is half that.
|
| Apr6-08, 05:26 PM | #4 |
|
|
Finding Triangle Area using Cross Product
RootX, the square root of what you have square doesn't match up with the answer you have.
|
| Apr6-08, 06:24 PM | #5 |
|
|
[tex] \sqrt{(-101)^2 + (23)^2 + (-48)^2}= 114.167 ~ /2 = 57.0833 [/tex] |
| Thread Closed |
| Thread Tools | |
Similar Threads for: Finding Triangle Area using Cross Product
|
||||
| Thread | Forum | Replies | ||
| Finding Max Area of Rectangle in Isos. Triangle | Calculus & Beyond Homework | 6 | ||
| Cross Product and the area of a triangle | Calculus & Beyond Homework | 0 | ||
| Finding torque (vector cross product) | Introductory Physics Homework | 1 | ||
| Complex Cross Product and Area of a parallelogram | Calculus & Beyond Homework | 3 | ||
| Finding the Area of a Triangle (using determiants) | Precalculus Mathematics Homework | 4 | ||