Section Formula
The section formula finds the point that divides a segment joining A(x₁, y₁) and B(x₂, y₂) in a given ratio m:n. For internal division (the point lies between A and B) the coordinates are ((m·x₂+n·x₁)/(m+n), (m·y₂+n·y₁)/(m+n)). The order is the trap: the m goes with the FAR point B and the n with the NEAR point A — get this backwards and you split in ratio n:m instead. Setting m = n = 1 collapses this to the midpoint, so the midpoint is just the 1:1 case. For external division (the point lies on the line but outside the segment) replace the plus signs with minus: ((m·x₂−n·x₁)/(m−n), (m·y₂−n·y₁)/(m−n)). A favourite CAT use is the reverse question — "in what ratio does the x-axis divide the segment?" Put the dividing point’s relevant coordinate to zero and solve for the ratio λ:1; a negative λ means the division is external. The centroid, ((x₁+x₂+x₃)/3, (y₁+y₂+y₃)/3), is the section point that cuts each median in 2:1 from the vertex.
✅ Solved examples
✏️ Practice — try these, take hints as needed
📝 Topic test — 8 questions
Auto-graded with full solutions; saved to your dashboard. Use the calculator and formula sheet (top-right) any time.
Formula Reference Sheet
Points, distance and division
| Distance between two points | d = √[(x₂−x₁)² + (y₂−y₁)²] |
|---|---|
| Midpoint of a segment | M = ((x₁+x₂)/2 , (y₁+y₂)/2) |
| Internal section (ratio m:n) | ((m·x₂+n·x₁)/(m+n) , (m·y₂+n·y₁)/(m+n)) |
| External section (ratio m:n) | ((m·x₂−n·x₁)/(m−n) , (m·y₂−n·y₁)/(m−n)) |
| Centroid of a triangle | ((x₁+x₂+x₃)/3 , (y₁+y₂+y₃)/3) |
Lines, slope and area
| Slope of a line | m = (y₂−y₁)/(x₂−x₁) |
|---|---|
| Slope–intercept form | y = mx + c |
| Two-point form | (y−y₁) = [(y₂−y₁)/(x₂−x₁)](x−x₁) |
| Intercept form | x/a + y/b = 1 |
| Parallel / perpendicular | parallel: m₁ = m₂ ; perpendicular: m₁·m₂ = −1 |
| Area of a triangle | ½|x₁(y₂−y₃) + x₂(y₃−y₁) + x₃(y₁−y₂)| |