Fundamental Concepts
Cartesian Plane

- Rectangular coordinate system: -axis (abscissas) and -axis (ordinates)
- Origin: point
Quadrants

- Four quadrants labeled I to IV in counterclockwise order
- Signs:
- Quadrant I:
- Quadrant II:
- Quadrant III:
- Quadrant IV:
Points
- Representation:

- Special points:
- Origin:
- On the -axis:
- On the -axis:
Distance Between Two Points
For and :

Distance Between Two Points in Polar Coordinates
Given two points in polar coordinates:
The distance between them is:
Midpoint
Midpoint between and :

Division of a Segment in a Given Ratio

Point that divides segment in the ratio :
Coordinates of the Centroid of a Triangle

Area of a Triangle

Given vertices , , and , the area is:
Where the determinant evaluates to:
In practice, this simplifies to:
title: Example
Given vertices $P_1(2, 4)$, $P_2(5, 6)$, and $P_3(3, 1)$:
1. **Form the matrix**:
$$ \begin{vmatrix}
2 & 4 & 1 \\
5 & 6 & 1 \\
3 & 1 & 1 \\
\end{vmatrix} $$
2. **Compute the determinant** (using Sarrus' rule):
$$= 2(6 \cdot 1 - 1 \cdot 1) - 4(5 \cdot 1 - 3 \cdot 1) + 1(5 \cdot 1 - 3 \cdot 6)$$
$$= 2(6 - 1) - 4(5 - 3) + 1(5 - 18)$$
$$= 2(5) - 4(2) + 1(-13) = 10 - 8 - 13 = -11$$
3. **Take absolute value and divide by 2**:
$$\text{Area} = \frac{1}{2} |-11| = 5.5 \text{ units}^2$$
Area of a Polygon

General Formula (Shoelace Formula)
For vertices $(x_1,y_1), (x_2,y_2), \ldots, (x_n,y_n)$:
$$
\text{Area} = \frac{1}{2} \left| \sum_{i=1}^{n} \left( x_i y_{i+1} \right) - \sum_{i=1}^{n} \left( y_i x_{i+1} \right) \right|
$$
where:
- $x_{n+1} = x_1$ and $y_{n+1} = y_1$ (closes the polygon).
- Vertices must be ordered **clockwise or counterclockwise** (no self-intersections).
Steps to Apply the Formula:
- Ordered list of vertices: Write coordinates in order (e.g., ).
- Sum 1 (): Multiply each by the of the next vertex () and add them up.
- Sum 2 (): Multiply each by the of the next vertex () and add them up.
- Subtract and take absolute value: Compute and divide by 2.
title: Example
Vertices in order: $P_{1}(2, 4)$, $P_{2}(5, 6)$, $P_{3}(3, 1)$, $P_{4}(1, 2)$.
1. **Close the polygon by repeating $P_{1}$ at the end**:
$$(2,4), (5,6), (3,1), (1,2), (2,4)$$
2. **Compute $\Sigma_1$ (downward diagonals ➘)**:
$(2 \times 6) + (5 \times 1) + (3 \times 2) + (1 \times 4) = 12 + 5 + 6 + 4 = 27$
3. **Compute $\Sigma_2$ (upward diagonals ➚)**:
$(4 \times 5) + (6 \times 3) + (1 \times 1) + (2 \times 2) = 20 + 18 + 1 + 4 = 43$
4. **Area**:
$$\text{Area} = \frac{1}{2} |27 - 43| = \frac{16}{2} = 8 \text{ units}^2$$
