We have looked at some basics of coordinate geometry. Today, let's look at some intermediate applications of this topic.
1. Shoelace Theorem
The Shoelace Theorem is an algorithm used to find the area of a polygon in the coordinate plane when the coordinates are known.
If the coordinates are $(x_1, y_1), (x_2, y_2) ... (x_n, y_n), $
$\text{Area}=\frac{1}{2}\Big[(x_1y_2 - x_2y_1)+(x_2y_3 - x_3y_2) + ... + (x_ny_1 - x_1y_n)\Big].$
2. Centroid
The centroid is the point where the three medians intersect. It is also sometimes called the center of gravity for the triangle.
Note: A median of a triangle is the line segment joining the vertex to the midpoint of the opposite side.
If $(x_1,y_1), (x_2, y_2),$ and $(x_3,y_3)$ are the vertices of a triangle, then the coordinates of its centroid are
$$\Bigg(\frac{x_1+x_2+x_3}{3}, \frac{y_1+y_2+y_3}{3} \Bigg).$$
3. Incenter
The incenter is the point where the three angle bisectors intersect.
Note: An angle bisector of a triangle is the line segment that equally divides one of the vertex angles of the triangle.
If $A(x_1, y_1), B(x_2, y_2)$, and $C(x_3, y_3)$ are the vertices of the triangle $ABC$ such that $BC = a, CA = b,$ and $AB = c$, then the coordinates of its incenter are
$$\Bigg(\frac{ax_1+bx_2+cx_3}{a+b+c}, \frac{ay_1+by_2+cy_3}{a+b+c} \Bigg).$$
4. Point of Intersection of Two Lines
To find the coordinates of the point of intersection of two non-parallel lines, we solve the given equations simultaneously and the values of $x$ and $y$ obtained determine the coordinates of the point of intersection.
5. Distance between Two Parallel Lines
If two lines are parallel, then they have the same distance between them throughout. Therefore, to find the distance between any two parallel lines, we find the coordinates of any point on either of the given lines, preferably letting $x=0$ or $y=0$. Then the perpendicular distance from this point to the other line is the required distance between distance.
Alternatively: Let the two parallel lines be $ax+by+c_1 = 0$ and $ax+by+c_2=0$, then the perpendicular distance between the lines is $$\Bigg | \frac{c_2-c_1}{\sqrt{a^2+b^2}} \Bigg |.$$
6. Classifying Polygons
- If the vertices of a triangle have integral coordinates, then the triangle can not be equilateral.
- In order to prove that a given figure is a square, parallelogram, rectangle etc, we will need to prove the below properties.
Comments
Post a Comment