What is the area of a triangle using coordinates? For a triangle with vertices A(\(x_{1}\), \(y_{1}\)), B(\(x_{2}\), \(y_{2}\)), and C(\(x_{3}\), \(y_{3}\)), the area is:
Area = (1/2) | \(x_{1}\)(\(y_{2} - y_{3}\)) + \(x_{2}\)(\(y_{3} - y_{1}\)) + \(x_{3}\)(\(y_{1} - y_{2}\)) |
The vertical bars | | mean absolute value (area is always positive). If the result is 0, the three points are collinear (lie on a straight line).
What is the reflection of a point in coordinate axes? Reflection means flipping a point over a line (like a mirror). The key rules:
| Reflection in | Original (x, y) | Reflected point |
|---|---|---|
| x-axis | (x, y) | (x, −y) |
| y-axis | (x, y) | (−x, y) |
| Origin | (x, y) | (−x, −y) |
| Line y = x | (x, y) | (y, x) |
Real-life analogy: Reflection is like looking at your face in a mirror — the mirror is the axis. When you raise your left hand, your reflection raises its right hand!