- Joined
- Feb 24, 2008
- Messages
- 99
- Reaction score
- 0
How would you go about finding the area and length of sides of a triangle with points A (1,1), B (7,6) and C (3,-6)?
Thanks 👍
Thanks 👍
Relocate any point to (0,0) and then relocate the other two accordingly. I choose point A since it's (1,1). If that becomes (0,0) then everything else drops by 1 unit. B becomes (6,5) and C becomes (2,-7). They are all the same distance away from each other as they originally were!! The triangle was just shifted down and left by 1 unit.How would you go about finding the area and length of sides of a triangle with points A (1,1), B (7,6) and C (3,-6)?
Thanks 👍
Relocate any point to (0,0) and then relocate the other two accordingly. I choose point A since it's (1,1). If that becomes (0,0) then everything else drops by 1 unit. B becomes (6,5) and C becomes (2,-7). They are all the same distance away from each other as they originally were!! The triangle was just shifted down and left by 1 unit.
Now you can compute the area using the determinant. The determinant figures out the area of the parallelogram of the vectors [6,5] and [2,-7] so you'll want to divide your answer by 2 to get the triangle.
Using det = (a)(d) - (b)(c) and grouping (6 5) above (2 -7) such that a = 6, b = 5, c = 2, and d = -7, you get (6)(-7) - (5)(2) = -52. Area is positive so area = 52. Divide by 2 and get 26, your answer.
Google determinant and look for pictures. You'll see what I mean about parallelograms.
Right.Personally i think it is easier to make a square aroud the triangle and then just subract the "extra" right traingles that are formed. What remains is the area of the unknown triangle.
Personally i think it is easier to make a square aroud the triangle and then just subract the "extra" right traingles that are formed. What remains is the area of the unknown triangle.
No way man, the determinant is so much less work. Takes 20 seconds. Just gotta know how to do it.