How do you perform "coordinate bashing"? I read through this which gave some useful information, but I still don't know how to perform it. What I know about coordinate bashing:
- Coordinate bashing is assigning geometrical figures points on the coordinate plane.
- It involves using formulas such as the distance formula, slope formula, shoelace theorem, point to line distance, etc.
Can someone provide an illustrated example or two?
Since you wanted a couple of examples, here are two problems where "coordinate bashing" can be used. Note: Both of these problems were pulled from the 2004 Harvard-MIT Math Tournament.
Since $\Delta ABC$ is an $8$-$15$-$17$ right triangle, we can place it on the coordinate plane. Let $A = (0,0)$, $B = (8,0)$, and $C = (0,15)$. (Check for yourself that $AB = 8$, $AC = 15$, $BC = 17$.)
The circumcenter of a triangle is the center of the circle which passes through the vertices of a triangle. In a right triangle, the circumcenter is the midpoint of the hypotenuse. The hypotenuse $BC$ has endpoints $B = (8,0)$ and $C = (0,15)$, the midpoint is $D = (\tfrac{8+0}{2},\tfrac{0+15}{2}) = (4,\tfrac{15}{2})$.
The centroid of a triangle is the intersection of the medians of the triangle. This sounds hard to do with coordinates, but as it turns out, the centroid of a triangle is simply the average of the coordinates of the three vertices. So, $E = (\tfrac{0+8+0}{3},\tfrac{0+0+15}{3}) = (\tfrac{8}{3},5)$.
The incenter of a triangle is the center of the inscribed circle. The area of $\Delta ABC$ is $K := \tfrac{1}{2} \cdot 8 \cdot 15 = 60$, and the semi-perimeter is $s := \tfrac{1}{2}(8+15+17) = 20$. Therefore, the radius of the inscribed circle is $r = \frac{K}{s} = \frac{60}{20} = 3$. So, the distance from $F$ to each of the three sides is $3$ units. Since $AB$ lies on the $x$-axis ($y = 0$), $F$ must lie on one of the lines $y = \pm 3$. Since $AC$ lies on the $y$-axis ($x = 0$), $F$ must lie on one of the lines $x = \pm 3$. Since $F$ is inside $\Delta ABC$, $F = (3,3)$.
Now that we have the coordinates of $D$, $E$, and $F$, we can simply use the Shoelace formula to find that the area of $\Delta DEF$ is $\tfrac{1}{2}\left|4 \cdot 5 + \tfrac{8}{3} \cdot 3 + 3 \cdot \tfrac{15}{2} - \tfrac{8}{3} \cdot \tfrac{15}{2} - 3 \cdot 5 - 4 \cdot 3 \right| = \tfrac{7}{4}$.
The volume of a tetrahedron is $\tfrac{1}{3}Bh$ where $B$ is the area of the base and $h$ is the height. If you know that a $13$-$14$-$15$ triangle is a $5$-$12$-$13$ right triangle glued to a $9$-$12$-$15$ right triangle, then it is easy to get that the area of each face is $\tfrac{1}{2} \cdot 14 \cdot 12 = 84$. But how to find the height? There is a non-coordinate solution on page 14 of their solutions, but here is a coordinate bash solution:
Let $A,B,C,D$ be the vertices of the tetrahedron with $AB = CD = 13$, $AC = BD = 14$, and $BC = AD = 15$. Orient the tetrahedron such that $A = (-5,0,0)$, $B = (0,12,0)$, $C = (9,0,0)$, and $D = (x,y,z)$. (Check for yourself that $AB = 13$, $AC = 14$, $BC = 15$.) Since the base $\Delta ABC$ lies in the $xy$-plane, the height from $D$ to $\Delta ABC$ is simply $z$.
To solve for $z$, we will need to use the facts that $CD = 13$, $BD = 14$, and $AD = 15$, along with the distance formula: $$CD^2 = (x-9)^2+y^2+z^2 = 13^2$$ $$BD^2 = x^2+(y-12)^2+z^2 = 14^2$$ $$AB^2 = (x+5)^2+y^2+z^2 = 15^2$$ Subtracting the first equation from the third gives $28x-56 = 56$, and so, $x = 4$. Substitute this back in to get $y^2+z^2 = 144$ and $(y-12)^2+z^2 = 180$. Taking the difference between these equations yields $24y-144=-36$, and so, $y = \tfrac{9}{2}$. Substituting this back in and solving for $z$ gives $z = \pm \tfrac{3\sqrt{55}}{2}$. So the height of the tetrahedron is $h = |z| = \tfrac{3\sqrt{55}}{2}$, and thus, the volume is $\tfrac{1}{3}Bh = \tfrac{1}{3} \cdot 84 \cdot \tfrac{3\sqrt{55}}{2} = 42\sqrt{55}$.