Gradient of a Straight Line Joining Two Points
Gradient of a Straight Line Joining Two Points
Understanding the Concept
- In Rectangular Cartesian Coordinates, the gradient of a straight line connecting two points can be calculated using a simple formula derived from the coordinate geometry.
-
Given two points,
P(x1, y1)
andQ(x2, y2)
, the gradient, often denoted asm
, of the straight line joiningP
andQ
is calculated by the formula:m = (y2 - y1) / (x2 - x1)
Interpretation of Calculation
- The division operation inside the formula computes the ratio of the difference in y-coordinates to the difference in x-coordinates of the points
P
andQ
. - The expression
(y2-y1)
represents the vertical change (along the y-axis), commonly referred to as “rise”, betweenP
andQ
;(x2-x1)
stands for the horizontal change (along the x-axis), often termed as “run”. - The ratio of “rise” to “run”, i.e.,
rise/run
, gives us the slope or gradient of the straight line connectingP
andQ
.
Examples and Application
- For example, if you wish to find the gradient of the line joining points
A(3,2)
andB(7,6)
, substitute these values into the formula:m = (6 - 2) / (7 - 3) = 4 / 4 = 1
- If you’re given the gradient and one point, you can find the coordinates of another point on the line by rearranging the gradient formula and solving for the unknown coordinates.
Summary
- The gradient of a straight line is a fundamental concept in coordinate geometry.
- Truly understanding the principle behind the formula, rather than only committing it to memory, sets you up for success in manipulating it under varying situations.