Coordinate Geometry for SSC CGL — Distance, Section, Slope & Line Equations

intermediate 18 min read

Concept

Coordinate geometry — also called analytical geometry or cartesian geometry — is the study of geometric figures using a numerical coordinate system. Two perpendicular number lines (the x-axis and y-axis) create a plane, and every point on that plane gets an address: an ordered pair (x, y).

Here is why this matters for SSC CGL specifically: questions from this chapter are almost always formula-driven. There is almost no construction or proof work. You are either finding a distance, locating a midpoint, identifying an intercept, or checking whether a point lies on a line. That makes this one of the most rewarding chapters to prepare — limited theory, very mechanical execution.

Think of the coordinate plane like a city grid. The x-axis is the east-west road and the y-axis is the north-south road. Your flat is at (3, 5) — 3 blocks east, 5 blocks north. If your friend lives at (7, 2), the straight-line distance between you is not the number of blocks you walk (that would be the taxicab distance), but the hypotenuse of the right triangle formed between your two addresses. That Pythagorean intuition is exactly the distance formula.

The key objects you deal with in SSC CGL questions:

SSC CGL does not test conics (parabola, ellipse, hyperbola) or three-dimensional coordinates. Keep your focus narrow — lines and points, that is the entire syllabus here.


Deep Dive

Distance Formula

The distance between points (x₁, y₁) and (x₂, y₂) is:

d=(x2x1)2+(y2y1)2d = \sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2}

This comes directly from the Pythagorean theorem. Draw a right triangle: the horizontal leg has length |x₂ − x₁|, the vertical leg has length |y₂ − y₁|, and the hypotenuse is the straight-line distance. That's it — no deeper derivation needed.

Special case: distance from origin (0, 0) to point (a, b) is √(a² + b²).

Midpoint Formula

The midpoint M of a segment joining (x₁, y₁) and (x₂, y₂) is:

M=(x1+x22, y1+y22)M = \left(\frac{x_1 + x_2}{2},\ \frac{y_1 + y_2}{2}\right)

Think of it as the average of the two coordinates in each direction. If you have five mocks scoring 60 and 80, your average is 70 — same idea, applied to coordinates.

Section Formula

Point P divides the segment joining (x₁, y₁) and (x₂, y₂) in the ratio m : n.

Internal division:

P=(mx2+nx1m+n, my2+ny1m+n)P = \left(\frac{mx_2 + nx_1}{m + n},\ \frac{my_2 + ny_1}{m + n}\right)

External division (P lies outside the segment, beyond one end):

P=(mx2nx1mn, my2ny1mn)P = \left(\frac{mx_2 - nx_1}{m - n},\ \frac{my_2 - ny_1}{m - n}\right)

The midpoint is a special case of internal division with m = n = 1.

Slope of a Line

Slope m measures rise over run:

m=y2y1x2x1m = \frac{y_2 - y_1}{x_2 - x_1}

Key slope facts you must internalize:

Standard Equations of a Line

Slope-intercept form: y = mx + c, where c is the y-intercept.

Point-slope form: y − y₁ = m(x − x₁), when you know slope m and one point.

General form: ax + by + c = 0. Most SSC CGL questions use this.

Intercept form: x/a + y/b = 1, where a is the x-intercept and b is the y-intercept.

This last form is your fastest tool for intercept questions — never overlook it.

Intercepts

To find the x-intercept of a line, set y = 0 and solve for x. To find the y-intercept, set x = 0 and solve for y.

For the line 3x + 4y = 12:

The length of the intercepted segment = distance between (4, 0) and (0, 3) = √(16 + 9) = √25 = 5.

Distance from a Point to a Line

Distance from point (x₁, y₁) to line ax + by + c = 0:

d=ax1+by1+ca2+b2d = \frac{|ax_1 + by_1 + c|}{\sqrt{a^2 + b^2}}

This formula appears less frequently in SSC CGL but is useful for questions involving perpendicular distances.

Collinearity of Three Points

Three points A(x₁, y₁), B(x₂, y₂), C(x₃, y₃) are collinear (lie on the same line) if and only if the area of triangle ABC is zero:

Area=12x1(y2y3)+x2(y3y1)+x3(y1y2)=0\text{Area} = \frac{1}{2}\left|x_1(y_2 - y_3) + x_2(y_3 - y_1) + x_3(y_1 - y_2)\right| = 0

Alternatively, check that the slope of AB equals the slope of BC.


Memory Tricks & Shortcuts

patternIntercept Form Bypass

When a question gives you a line equation and asks for the length of the segment intercepted between the axes, convert to intercept form x/a + y/b = 1 immediately. The intercepts are a and b directly — no solving needed. Then apply the Pythagorean formula: intercepted length = √(a² + b²).

For 3x + 4y = 12: divide through by 12 → x/4 + y/3 = 1. Intercepts: a = 4, b = 3. Length = √(16 + 9) = 5.

Standard method (set y = 0, solve, set x = 0, solve, then distance): 5 steps, ~40 seconds. Intercept form shortcut: 2 steps, ~12 seconds. You shave off nearly 30 seconds per question.

eliminationParallel/Perpendicular Line Identification

SSC CGL frequently asks which of four options is parallel or perpendicular to a given line. Don't convert all options to slope-intercept form. Instead, look at the coefficients directly in ax + by = c form.

For two lines a₁x + b₁y = c₁ and a₂x + b₂y = c₂:

  • Parallel if a₁/a₂ = b₁/b₂ (same ratio of coefficients).
  • Perpendicular if a₁a₂ + b₁b₂ = 0 (dot product of coefficient pairs is zero).

Standard method (compute slopes for all four options): 8 arithmetic operations. Coefficient-ratio method: 2 comparisons. Saves roughly 25-30 seconds per question.

patternThe Subtraction Trick for Points on a Line

When two points are both given as lying on the same line, substitute both into the equation and subtract the two resulting equations. All the constant terms cancel, leaving only the unknown relationship.

For points (a, b) and (a+3, b+k) on x − 3y + 7 = 0:

  • Eq 1: a − 3b + 7 = 0
  • Eq 2: (a+3) − 3(b+k) + 7 = 0
  • Subtract Eq 1 from Eq 2: 3 − 3k = 0k = 1

You never need to find the actual values of a or b. Standard approach (try to isolate a and b individually): ~60 seconds. Subtraction trick: ~15 seconds.

patternAxis-Parallel Line Equations by Observation

Lines parallel to the x-axis always look like y = constant. Lines parallel to the y-axis always look like x = constant. The sign of the constant tells you which side of the axis it sits on.

"3 units below x-axis" → y is negative, so y = −3. No formula needed. "5 units to the left of y-axis" → x is negative, so x = −5.

You should answer these questions in under 5 seconds. If you are computing slope, you are overthinking it.

patternPythagoras 3-4-5 Family Recognition

A large proportion of SSC CGL coordinate geometry questions are engineered to produce Pythagorean triplet answers (3-4-5, 5-12-13, 8-15-17, 7-24-25). When you find the two perpendicular components of a distance, check for a known triplet before computing the square root.

If the legs are 3 and 4, the hypotenuse is 5 — no calculator needed. If the legs are 5 and 12, the hypotenuse is 13. Recognizing the triplet saves the √ computation entirely — roughly 20 seconds per question.


Fast-Solving Framework

When you see a coordinate geometry question in the exam hall, run through this mental decision tree:

Step 1 — What is the question asking?

Step 2 — Do the intercepts or slopes simplify cleanly? Look for integer intercepts before computing slopes. If the line is in general form ax + by = c, divide once to get intercept form — it is almost always faster.

Step 3 — Apply the subtraction trick for two-point problems. If two points both satisfy the same equation, subtract their individual equations. Never solve for the general point.

Step 4 — Check for Pythagorean triplets before square-rooting. If you see legs of 3 and 4, 5 and 12, or 8 and 15, write the answer immediately.

Total decision time: under 10 seconds. Execution time: 20-40 seconds.


Solved PYQs

Why this question: This is the most common type of coordinate geometry question in SSC CGL — finding the intercepted length. The 3-4-5 triplet is deliberate; SSC setters use it repeatedly.

Previous Year Questionपिछले वर्ष का प्रश्न2015
The length of the portion of the straight line 3x + 4y = 12 intercepted between the axis is
  1. 3
  2. 4
  3. 5
  4. 7
Solutionसमाधान
X-intercept: set y=0 → x=4. Y-intercept: set x=0 → y=3. Length = √(4² + 3²) = √(16+9) = √25 = 5.

Solving path: Convert 3x + 4y = 12 to intercept form: divide by 12 → x/4 + y/3 = 1. The x-intercept is 4, the y-intercept is 3. The intercepted segment joins (4, 0) and (0, 3). Length = √(4² + 3²) = √25 = 5. Recognize the 3-4-5 triplet immediately and write 5. Time: under 15 seconds.


Why this question: This tests the fundamental visual understanding of axis-parallel lines. It appears deceptively simple — but roughly 20% of test-takers pick x = −3 because they confuse which axis is which under pressure.

Previous Year Questionपिछले वर्ष का प्रश्न2013
Equation of the straight line parallel to x-axis and also 3 units below x-axis is:
  1. x = 3
  2. x = −3
  3. y = −3
  4. y = 3
Solutionसमाधान
A line parallel to the x-axis has equation y = constant. Since it is 3 units below the x-axis, the equation is y = −3.

Solving path: A line parallel to the x-axis has constant y-value. "Below the x-axis" means the y-value is negative. Three units below means y = −3. Eliminate x = 3 and x = −3 immediately (those are vertical lines, parallel to the y-axis). Between y = 3 and y = −3, the negative one is below. Answer: y = −3. Time: under 10 seconds.


Why this question: This tests whether you can avoid unnecessary algebraic work. Many candidates try to find actual values of a and b — that is a trap. The subtraction method is the clean path.

Previous Year Questionपिछले वर्ष का प्रश्न2012
Points (a, b) and [(a+3), (b+k)] both lie on the line x − 3y + 7 = 0. The value of k is:
  1. 3
  2. 1/3
  3. 9
  4. 1
Solutionसमाधान
Substituting (a, b): a − 3b + 7 = 0. Substituting (a+3, b+k): a + 3 − 3b − 3k + 7 = 0. Subtracting: 3 − 3k = 0, so k = 1.

Solving path: Both points lie on x − 3y + 7 = 0. Substitute (a, b): equation (1) is a − 3b + 7 = 0. Substitute (a+3, b+k): equation (2) is (a+3) − 3(b+k) + 7 = 0, which simplifies to a − 3b + 10 − 3k = 0. Subtract equation (1) from equation (2): 3 − 3k = 0, so k = 1. You never needed the actual value of a or b. Time: ~20 seconds.


Common Mistakes


Related Topics


Practice on SarkariRise

Sign up + get 3 free mocks →