Standard form directly gives the center and radius:
(x−h)2+(y−k)2=r2center (h,k),radius r
General form requires completing the square to extract the same information:
x2+y2+Dx+Ey+F=0center (−2D,−2E)
The shoelace formula
Given a polygon's vertices in order (either clockwise or counterclockwise), the shoelace formula computes its area directly — no need to decompose it into triangles by hand:
Area=21i∑(xiyi+1−xi+1yi)
For a triangle with vertices (x1,y1),(x2,y2),(x3,y3), this expands to:
Area=21∣x1(y2−y3)+x2(y3−y1)+x3(y1−y2)∣
Worked example
Problem: Find the area of the triangle with vertices (1,1), (4,5), and (7,2).