Given the points A(1,5), B(5,-2) C(-5,-5) and D(-15,1).
1.Find the area of the quadrilateral ABCD.
Here's a better way to do these:
     A    B    C    D    A
x    1    5   -5   -15   1
Y    5   -2   -4    1    5
---
Add the diagonal products starting at the upper left
1*-2 + 4*-4 + -5*1 + -15*5 = -2 -16 -5 -75 = -98
----
Add the diagonal products starting at the lower left
5*5 + -2*-5 + -4*-15 + 1*1 = 25 + 10 + 60 + 1 = 96
------
The difference between the 2 sums is 194
The area is 1/2 that:   Area = 97 sq units
---------
This method works for all convex polygons with any # of vertices.
it might work for polygons that are not convex, IDK about that.
The points have to be in order around the polygon, tho.
//////////////////////
I tried a few non-convex polygons, and it does work.
\\\\\\\\\\\\\\\\\\\\\\
=====================================
 Hint:divide the area into two triangles.
Hint:  we don't need hints.
---------
2.find the equation  of a line AB?
|x   y   1|
|1   5   1| = 0
|5  -2   1|
x*(5+2) - y*(1-5) + (-2-25) = 0