Where I think would be best to start with this question would be finding the length of AB, BC, and AC but I don't how I'd finish solving the question.
2026-04-07 04:44:21.1775537061
On
How would I algebraically determine if a triangle whose vertices A(2,6) B(9,0) C(3,6) is a right angle triangle?
63 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
4
There are 4 best solutions below
0
On
There are several possible approaches. You could use Pythagoras' theorem on the side lengths, or compute gradients and check if any two multiply to one another. Alternatively, you could compute vectors $AB, BC, CA$ and check if the dot product of any two is $0$.
In this case a geometric argument also works; note that $A$ and $C$ have the same $x$ coordinate. If the right angle is at $A$ or $C$, then $B$ must have the same $x$-coordinate as one of these, which is not true. If the right angle is at $B$, the $x$-coordinate of $B$ must be between that of $A$ and $C$ since it lies on the circle diameter $AC$. But this is also false.
Let the slope of two lines be $m_1$ and $m_2$. These two lines are perpendicular to each other if and only if:
$$m_1 \times m_2 = -1$$
Now compute the slopes of the lines and check if the above condition holds.
Another way, although slightly longer, way to do it would be to compute the sides of the triangle and checking for the Pythagoras theorem.
Edit: Also note this one other thing. If the slope of one of the lines comes out to be $0$, now what should one do, you may ask? That's a good question. Well then you know that if slope of a line is $0$ that means it is parallel to the x-axis. For another line to be perpendicular to it, that other line must be parallel to the y-axis.
Hope this helps.