1. If a point is on a line with 2 other points and the distance from it to either one of the other points is the same, then that point MUST be halfway between the other two.
In other words, given the points A(-1,1) and B(7,7):
Halfway between -1 and 7 is 3 --- x-coordinate.
Halfway between 1 and 7 is 4 --- y-coordinate.
(3, 4)
2. a) m = tan(θ) = dy/dx = rise/run = (y2 - y1) / (x2 - x1)
Using m = tan(θ)
m = tan(45 deg)
m = 1
b) First find the midpoint of (x1, y1) and (x2, y2) which is ((x1 + x2)/2, (y1 + y2)/2) where (x1, y1) = (3, 1) and (x2, y2) = (6, 2)
Midpoint = ((3 + 6)/2, (1 + 2)/2)
Midpoint = (9/2, 3/2)
Using the formula (y - y1) = m(x - x1) where m = 1 and (x1, y1) = (9/2, 3/2)
y - 3/2 = 1(x - 9/2)
y = x - 9/2 + 3/2
y = x - 3
c) y-intercept of 3 means it has the point (0, 3):
Perpendicular has gradient -1/m = -1/1 = -1
Now use the formula (y - y1) = m(x - x1) where m = -1 and (x1, y1) = (0, 3)
y - 3 = -1(x - 0)
y = -x + 3