Coordinate Geometry Basics for Competitive Exams: Lines, Slopes and Circles

Coordinate geometry tricks for lines slopes and circles in competitive exams
Advertisement

Coordinate geometry is the bridge between algebra and geometry. Instead of working with abstract shapes, you work with points on a grid — and every geometric property becomes a calculation using coordinates.

For competitive exams, coordinate geometry is a high-reward topic. The concepts are limited and well-defined: distance between points, midpoint of a segment, slope of a line, equations of lines and circles, and area of triangles using coordinates. Once you have these formulas memorized and can apply them without hesitation, every coordinate geometry question becomes a direct substitution problem.

In SSC CGL, coordinate geometry contributes 2–4 questions in Tier 1 and 3–5 in Tier 2. In CAT, it appears in 1–2 questions within geometry sets. In IBPS PO, it appears occasionally in Mains.

Part 1: The Coordinate System — Foundation Concepts

Axes and Quadrants

Quadrantx signy signExample
I (top right)++(3, 4)
II (top left)+(−3, 4)
III (bottom left)(−3, −4)
IV (bottom right)+(3, −4)

Exam trap: Point on x-axis has y = 0. Point on y-axis has x = 0.

Part 2: Distance Formula

Between Two Points

d = √((x₂ − x₁)² + (y₂ − y₁)²)

Worked Example 1

Distance between A(3, 4) and B(7, 1)?

d = √((7−3)² + (1−4)²) = √(16 + 9) = √25 = 5 units

Worked Example 2

Distance from P(5, −3) to origin?

d = √(5² + (−3)²) = √(25 + 9) = √34 units

Shortcut — Distance from origin: d = √(x² + y²)

Checking Shape from Points

ConditionShape
All 3 distances equalEquilateral triangle
Exactly 2 distances equalIsosceles triangle
Largest² = sum of other two²Right triangle
All 4 sides equal + both diagonals equalSquare
All 4 sides equal, diagonals NOT equalRhombus

Worked Example 3:
A(0,0), B(4,0), C(4,3) — right triangle?

AB = 4, BC = 3, AC = √(16+9) = 5
AC² = AB² + BC²? → 25 = 16 + 9 ✓ Right triangle (3-4-5 triplet)

Part 3: Midpoint Formula

M = ((x₁+x₂)/2, (y₁+y₂)/2)

Worked Example 4

Midpoint of A(2,6) and B(8,4)?

M = ((2+8)/2, (6+4)/2) = (5, 5)

Section Formula — Internal Division

P divides A(x₁,y₁) and B(x₂,y₂) in ratio m:n:

P = ((mx₂ + nx₁)/(m+n), (my₂ + ny₁)/(m+n))

Memory trick: m part uses B's coordinates, n part uses A's coordinates.

Worked Example 5

P divides A(1,2) and B(7,8) in ratio 2:1.

P = ((2×7 + 1×1)/3, (2×8 + 1×2)/3) = (15/3, 18/3) = (5, 6)

Worked Example 6 — Finding the Ratio

In what ratio does P(4,5) divide A(2,3) and B(6,7)?

Let ratio = k:1
(6k + 2)/(k+1) = 4 → 6k + 2 = 4k + 4 → k = 1

Ratio = 1:1 (midpoint)

Part 4: Slope of a Line

m = (y₂ − y₁) / (x₂ − x₁)

Slope Properties

Line TypeSlope
Horizontalm = 0
Verticalm = undefined
Rising left to rightm > 0
Falling left to rightm < 0
45° anglem = 1
135° anglem = −1

Parallel and Perpendicular Lines

Parallel: m₁ = m₂

Perpendicular: m₁ × m₂ = −1

Worked Example 7

Line 1: (1,2) to (3,6). Line 2: (0,4) to (2,5). Relationship?

m₁ = (6−2)/(3−1) = 2
m₂ = (5−4)/(2−0) = 1/2

m₁ × m₂ = 2 × 1/2 = 1 ≠ −1, m₁ ≠ m₂ → Neither

Worked Example 8

Slope perpendicular to line through (2,3) and (5,9)?

Slope of line = (9−3)/(5−2) = 2
Perpendicular slope = −1/2

Part 5: Equations of Lines

Three Forms

Form 1 — Slope-Intercept:
y = mx + c (m = slope, c = y-intercept)

Form 2 — Point-Slope:
y − y₁ = m(x − x₁)

Form 3 — Standard:
ax + by + c = 0

Worked Example 9 — Equation from Two Points

Line through A(2,3) and B(5,9)?

Slope = (9−3)/(5−2) = 2
y − 3 = 2(x − 2)
y = 2x − 1

Worked Example 10 — Reading Slope

Slope and y-intercept of 3x + 4y − 12 = 0?

4y = −3x + 12 → y = −3x/4 + 3

Slope = −3/4, y-intercept = 3

Intercepts Shortcut

For ax + by + c = 0:

  • x-intercept = −c/a
  • y-intercept = −c/b

Worked Example 11:
Intercepts of 2x + 3y − 6 = 0?

x-intercept: x = 6/2 = 3
y-intercept: y = 6/3 = 2

Distance from Point to Line

d = |ax₁ + by₁ + c| / √(a² + b²)

Worked Example 12:
Distance from (3,4) to line 3x + 4y − 5 = 0?

d = |3(3) + 4(4) − 5| / √(9+16) = |9+16−5| / 5 = 20/5 = 4 units

Part 6: Area of Triangle Using Coordinates

Area = (1/2) × |x₁(y₂−y₃) + x₂(y₃−y₁) + x₃(y₁−y₂)|

Worked Example 13

Triangle: A(1,2), B(4,6), C(7,2)?

= (1/2) × |1(6−2) + 4(2−2) + 7(2−6)|
= (1/2) × |4 + 0 − 28|
= (1/2) × 24 = 12 sq units

Collinearity Check

Area = 0 means three points are collinear.

Worked Example 14:
A(1,1), B(2,2), C(3,3) — collinear?

= (1/2) × |1(2−3) + 2(3−1) + 3(1−2)|
= (1/2) × |−1 + 4 − 3| = 0 ✓ Collinear

Part 7: Circle Equations

Standard Form

(x − h)² + (y − k)² = r²

Center = (h, k), Radius = r

Center at origin: x² + y² = r²

General Form

x² + y² + 2gx + 2fy + c = 0

  • Center = (−g, −f)
  • Radius = √(g² + f² − c)

Worked Example 15 — Center and Radius

x² + y² − 6x + 4y − 3 = 0?

2g = −6 → g = −3, 2f = 4 → f = 2, c = −3

Center = (3, −2)
Radius = √(9 + 4 + 3) = √16 = 4 units

Worked Example 16 — Writing Circle Equation

Center (2, −3), radius 5?

(x−2)² + (y+3)² = 25
x² + y² − 4x + 6y − 12 = 0

Position of Point Relative to Circle

Substitute (x₁, y₁) into circle equation:

  • Result < 0 → Inside
  • Result = 0 → On the circle
  • Result > 0 → Outside

Worked Example 17:
Is (1,2) inside x² + y² − 4x − 6y + 9 = 0?

1 + 4 − 4 − 12 + 9 = −2 < 0 → Inside

Part 8: Centroid, Circumcenter, and Incenter

Centroid

Centroid = ((x₁+x₂+x₃)/3, (y₁+y₂+y₃)/3)

Worked Example 18:
Centroid of (2,4), (6,2), (4,6)?

= ((2+6+4)/3, (4+2+6)/3) = (4, 4)

Circumcenter

Equidistant from all three vertices. For a right triangle — midpoint of hypotenuse.

Incenter

= ((a×x₁ + b×x₂ + c×x₃)/(a+b+c), (a×y₁ + b×y₂ + c×y₃)/(a+b+c))

Where a, b, c are side lengths opposite to vertices A, B, C.

Part 9: Exam Traps and Speed Tips

TrapCorrect Approach
Forgetting...
Vertical line slope = 0Vertical = undefined, Horizontal = 0
Section formula ratio orderm:n is PA:PB — do not reverse
General form center signsCenter = (−g, −f) — negative signs

Speed Tip — Pythagorean Triplets:
Before computing √ in distance formula, check: 3-4-5, 5-12-13, 8-15-17, 7-24-25, 6-8-10, 9-12-15

Quick Reference Formula Sheet

FormulaExpression
Distance√((x₂−x₁)² + (y₂−y₁)²)
Distance from origin√(x² + y²)
Midpoint((x₁+x₂)/2, (y₁+y₂)/2)
Section formula((mx₂+nx₁)/(m+n), (my₂+ny₁)/(m+n))
Slope(y₂−y₁)/(x₂−x₁)
Parallelm₁ = m₂
Perpendicularm₁ × m₂ = −1
Area of triangle(1/2)
Centroid((x₁+x₂+x₃)/3, (y₁+y₂+y₃)/3)
Point to line distance 
Circle standard(x−h)²+(y−k)²=r²
Circle center (general)(−g, −f)
Circle radius (general)√(g²+f²−c)

Exam-Wise Strategy

ExamQuestionsCommon TypesTime Budget
SSC CGL Tier 12–3Distance, midpoint, slope, area75 sec each
SSC CGL Tier 23–5All types including circles90 sec each
CAT1–2Slope, line equations, circle2 min each
IBPS PO Mains1–2Distance, midpoint, area90 sec each

2-Week Practice Plan

WeekFocusDaily Target
1Distance, midpoint, section formula, slope15 questions, 20 min
2Line equations, area, circles, exam-style sets15 mixed questions, 20 min

Frequently Asked Questions

Distance formula, midpoint formula, area of triangle using coordinates, and slope with parallel/perpendicular line conditions are the four highest-priority formulas for SSC CGL. These cover approximately 80% of all coordinate geometry questions in both Tier 1 and Tier 2.

Step 1 — Find slope of given line (convert to y = mx + c form). Step 2 — Perpendicular slope = -1/m. Step 3 — Use point-slope form: y - y₁ = (-1/m)(x - x₁). This three-step process works for every such question regardless of how the line or point is described.

The section formula appears in SSC CGL Tier 2 and CAT but rarely in Tier 1. For Tier 1, focus on distance, midpoint, slope, area, and the centroid formula. Add the section formula and circle equations when preparing for Tier 2.

Complete the square for both x and y terms. Group x terms, add (coefficient of x / 2)² to both sides, then group y terms and add (coefficient of y / 2)² to both sides. The result is (x-h)² + (y-k)² = r². The worked example in Part 7 shows this process step by step.

Pure geometry requires visualization, construction, and theorem recognition — skills that are harder to build quickly. Coordinate geometry reduces every geometric problem to arithmetic and algebra: substitute coordinates, apply formula, calculate. The same question that requires a complex construction in pure geometry becomes a two-step substitution in coordinate geometry. This predictability makes it one of the highest-scoring topics when formulas are well memorized.

Advertisement

Have You Learned Something New? Spread It!

Copied!

Ready to put it into practice?

Apply what you've learned — sharpen your speed, test your knowledge, and challenge yourself.