Formula for Gradient of a Line?
m = Δy/Δx = (y2 − y1) / (x2 − x1)
Midpoint of a line?
Midpoint = ( (x1 + x2) / 2 , (y1 + y2) / 2 )
Distance between two points?
sqrt( (x2 − x1)^2 + (y2 − y1)^2 )
Finding an Equation using Gradient and a Point?
y − y1 = m(x − x1)
Horizontal and vertical lines?
Horizontal line: y = k (gradient = 0)
Vertical line: x = k (gradient undefined)
Graph interpretation facts?
Positive gradient → line slopes up
Negative gradient → line slopes down
Zero gradient → horizontal line
Undefined gradient → vertical line
Reading values from a line graph?
Interpolation = reading between points
Extrapolation = predicting beyond points