Yeah. Two shorter ways. The first involves using the determinant:
(3, -6)
(1, 1)
(7, 6)
Okay first put one point on the origin to make this easier. I choose point (1,1). So everything goes down 1 and left 1. So we have (0, 0), (2, -7), and (6, 5).
Now we have two points and the origin. The determinant uses the two points to find the area of the parallelogram made through and beyond those points. If we take that area and divide by 2, we'll get the area of the triangle.
Written as a matrix:
2 -7
6 5
Determinant is | (a)(d) - (b)(c) | (absolute value)
That would be (2)(5) - (-7)(6) or 10 - -42 or 52.
Divide by 2 and get 26, the area.
===
Method 2 uses the law of cosines to find the area. First find the distance between each of the 3 points:
(1,1) to (7,6) = sqrt(61) = a
(1,1) to (3, -6) = sqrt(53) = b
(3, -6) to (7,6) = sqrt(160) = c
Okay now find the value of 's' = (a + b + c) / 2
Then use Area = sqrt( (s)(s-a)(s-b)(s-c) )
For this problem you should absolutely NOT use this method because you can't really do those square roots without a calculator, and you can't get through the calculations easily with the time you have. But if you got distances that were halfway decent then I would recommend using this.