Eric C. answered 10/03/16
Tutor
5.0
(180)
Engineer, Surfer Dude, Football Player, USC Alum, Math Aficionado
Hi Keissa.
To find out if the three points are the vertices of a right triangle, let's first determine the lengths of the three sides they create using the distance formula.
I'll define the points as follows:
A(-7,4)
B(6,-2)
C(0,15)
The distance formula is:
D = √((x2 - x1)2 + (y2 - y1)2)
Let's get started.
AB = √((6- -7)2 + (-2-4)2)
= √(169 + 36)
= √205
BC = √((0-6)2 + (15- -2)2)
= √(36 + 289)
= √(325)
AC = √((0 - -7)2 + (15 - 4)2)
= √(49 + 121)
= √(170)
Take a look at your largest length. It happens to be BC.
If you have a right triangle, then BC would be your hypotenuse, and:
AB2 + AC2 = BC2
√(205)2 + √(170)2 = √(325)2
375 = 325
Nope. Not a right triangle.
**
In order to figure out if 3 points are collinear, find the equation of the line for two of them, then plug in the third point and see if the equation fits.
Let's find the equation of the line through the first 2 points:
(-4, 3)
(2, 5)
m = (5 - 3)/(2 - -4)
m = 2/6 = 1/3
y - y1 = m(x - x1)
y - 5 = 1/3(x - 2)
y - 5 = 1/3x - 2/3
y = 1/3x +13/3
Cool. Now let's plug in the third point and see if it works.
4 = 1/3(-1) + 13/3
4 = -1/3 + 13/3
4 = 12/3
4 = 4
Yep! They're collinear.
Hope this helps.