Triangle ABC have vertices #A(0,4)#, #B(1,2)#, and #C(4,6)#. Is triangle ABC a right triangle?

1 Answer
Nov 14, 2015

We can solve this by using vectors. Let's start by defining
#vec(AB)# and #vec(AC)# and #vec(BC)#

#vec(AB) = [B_x - A_x , B_y - A_y] = [1 - 0 , 2 - 4] = [1, -2]#
#vec(AC) = [C_x - A_x , C_y - A_y] = [4 - 0, 6 - 4] = [4, 2]#
#vec(BC) = [C_x - B_x, C_y - B_y] = [4 - 1, 6 - 2] = [3, 4]#

To figure out whether two lines are perpendicular or not (that means that they cause a 90 degree angle between them), we can multiply the two vectors together. If the product is 0, it means that they indeed are perpendicular.

Let's see if whether:
#vec(AB) * vec(AC) = 0# or
#vec(AB) * vec(BC) = 0# or
#vec(AC) * vec(BC) = 0#

When we are multiplying vectors (dot multiplying), we multiply the x components together, and add them with the product of the y components.

Let's start with #vec(AB) * vec(AC)#
#vec(AB) * vec(AC) = [1,-2] * [4, 2]#
#=1 * 4 + (-2) * 2#
#= 4 - 4#
#=0#

Well, that was lucky! Now we know that AB is perpendicular with AC, because #vec(AB) * vec(AC) = 0#. We could in theory check if there were other angles that were 90 degrees, but that would be stupid since there will only be one angle that will be 90 degrees.

Hope this helped. If you don't know how to use vectors, I'm sorry to say that I don't know another way of proving this.