Coordinate Geometry for SSC CHSL — Slope, Line Equations, and Key Formulas

intermediate 18 min read

Concept

Coordinate geometry is where algebra meets geometry — you describe points, lines, and shapes using numbers instead of drawings. Every point on a plane gets an address: (x, y), where x is the horizontal position and y is the vertical position. The two reference lines are called axes: the horizontal one is the x-axis, the vertical one is the y-axis. They meet at the origin (0, 0).

Think of it like a city grid. If someone says "meet me at 4th street, 1st avenue", you know exactly where to go — no vague descriptions needed. Coordinates work the same way. (4, 1) means "go 4 units right, then 1 unit up."

For SSC CHSL, coordinate geometry questions are predictable. They almost always test one of five things:

  1. Finding the slope of a line (or using slope conditions for parallel/perpendicular lines)
  2. Writing the equation of a line through a given point
  3. Finding the intersection of two lines
  4. Using the distance or midpoint formula
  5. Identifying special points in triangles (centroid, orthocenter, circumcenter)

You won't get abstract proofs or multi-step constructions. You'll get one clean question, usually solvable in under 90 seconds if you know the formulas cold. The trap is formula confusion under pressure — swapping the perpendicular slope rule, or misapplying point-slope form. This page eliminates those traps.


Deep Dive

The Slope: Everything Flows From Here

The slope of a line measures its steepness. Given two points (x₁, y₁) and (x₂, y₂), the slope m is:

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

Think: "rise over run." How much does y change for each unit of x?

Slope from a Line Equation

If the line is in the form ax + by = c, rewrite it as y = mx + c by isolating y. The coefficient of x is your slope.

Example: 5x − 2y = 10−2y = −5x + 10y = (5/2)x − 5 → slope = 5/2

This is the single most tested manipulation in CHSL coordinate geometry. Practice it until it's automatic.

Parallel and Perpendicular Lines

Here is where most marks are either won or lost:

Example: Line has slope 5/2. Perpendicular slope = −2/5. Notice — you flip the fraction AND change the sign.

Writing the Equation of a Line

Point-slope form — use this every time you're given a point and a slope:

yy1=m(xx1)y - y_1 = m(x - x_1)

Plug in the point (x₁, y₁) and slope m, then simplify to y = mx + c.

Example: slope = −2, point = (3, 5): → y − 5 = −2(x − 3)y − 5 = −2x + 6y = −2x + 11

Done. This works for every "find the equation" question.

Slope-intercept form is y = mx + c, where c is where the line cuts the y-axis.

Finding the Intersection of Two Lines

The intersection point is where both equations are satisfied simultaneously. Add or subtract the equations to eliminate one variable, then back-substitute.

Example: x + y = 5 and x − y = 3 → Add: 2x = 8x = 4 → Substitute: 4 + y = 5y = 1 → Intersection: (4, 1)

Distance Formula

Distance between (x₁, y₁) and (x₂, y₂):

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

This is the Pythagorean theorem applied to coordinates. CHSL rarely asks you to compute irrational distances — usually the numbers are chosen so the square root cleans up.

Midpoint Formula

Midpoint of the segment joining (x₁, y₁) and (x₂, y₂):

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

Average the x-coordinates, average the y-coordinates. Simple.

Special Points in Triangles

CHSL has started testing this — especially the orthocenter.

| Point | Definition | Key property | |---|---|---| | Centroid | Intersection of medians | Divides each median in 2:1 from vertex | | Orthocenter | Intersection of altitudes | For right triangle: at the right-angle vertex | | Circumcenter | Equidistant from all vertices | For right triangle: midpoint of hypotenuse |

The right-triangle rule for the orthocenter is a direct exam shortcut — if the triangle has a 90° angle, don't compute anything. The orthocenter is sitting right at that vertex.


Memory Tricks & Shortcuts

patternPerpendicular Slope: Flip and Sign

When a line has slope a/b, the perpendicular line has slope −b/a. Two steps: flip the fraction, change the sign. Never think of it as "negative reciprocal of the whole number" — always write it as a fraction first.

Example: slope = 5/2 → flip to 2/5 → change sign to −2/5. Done in 5 seconds.

Standard method (using m₁ × m₂ = −1 algebra): ~25 seconds. This pattern: ~5 seconds.

substitutionParallel Line Equation: Keep Slope, Adjust C

For any line y = mx + c, a parallel line through point (p, q) has the same slope m. Just substitute the point directly: c_new = q − m×p.

Example: Parallel to y = 3x − 5 through (1, 2): c = 2 − 3(1) = −1. So the answer is y = 3x − 1.

You skip writing out point-slope form entirely. This shaves 2-3 algebraic steps compared to the full point-slope expansion.

patternRight Triangle Orthocenter: Zero Computation Needed

If a triangle is right-angled, the orthocenter is always at the vertex where the right angle sits. Spot this condition first — if two sides are along the axes or if two sides are clearly perpendicular, you're done without calculating anything.

For A(0,0), B(8,0), C(0,6): AB is horizontal (along x-axis), AC is vertical (along y-axis). Right angle is at A. Orthocenter = (0,0). Time: 8 seconds vs. computing altitude equations (~2 minutes).

eliminationIntersection by Addition/Subtraction — No Substitution First

When solving two line equations simultaneously, check whether adding or subtracting them directly eliminates one variable. If the coefficients of x or y are equal (or negatives), go straight to addition/subtraction. Don't bother with substitution.

x + y = 5 and x − y = 3: add them → 2x = 8x = 4y = 1. Two lines, four seconds.

Substitution method: 6-8 steps. Elimination: 2-3 steps.

patternSlope from ax + by = c: Cover the Constant

To find the slope of ax + by = c instantly, the slope is always −a/b. You don't need to rearrange the equation.

20x + 5y = 3 → slope = −20/5 = −4. 5x − 2y = 10 → slope = −5/(−2) = 5/2.

Formula derivation: by = −ax + cy = (−a/b)x + c/b. The coefficient of x is −a/b. Standard rearrangement takes 4 steps; this pattern takes 1.


Fast-Solving Framework

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

Step 1 — Identify what's being asked: Is it an equation of a line, a slope, an intersection, a distance/midpoint, or a special triangle point?

Step 2 — If slope is involved: Extract slopes immediately. Use −a/b for ax + by = c form. Apply parallel (equal slope) or perpendicular (flip and sign) rule as needed.

Step 3 — If you need a line equation: Use point-slope form y − y₁ = m(x − x₁) and simplify. Two to three steps.

Step 4 — If it's an intersection: Try elimination first. Add or subtract equations directly.

Step 5 — If it's a triangle special point: Check for right angle first. If right triangle — place orthocenter at the right-angle vertex, circumcenter at midpoint of hypotenuse. Only compute for non-right triangles.

Step 6 — Sanity check with options: After getting a numerical answer, verify it satisfies the original condition (plug the point into both equations, or confirm the slope product equals −1). This catches sign errors before they cost you marks.


Solved PYQs

Why this question: Tests whether you know the orthocenter property for a right triangle — the single most powerful shortcut in triangle coordinate geometry.

Previous Year Questionपिछले वर्ष का प्रश्न2025
The coordinates of the vertices of a triangle are A(0,0), B(8,0), and C(0, 6). What is the location of the orthocenter?
  1. (4, 3)
  2. (0, 0)
  3. (8, 0)
  4. (0, 6)
Solutionसमाधान
For a right-angled triangle, the orthocenter is located at the vertex of the right angle. Since the right angle is at A(0,0) (as AB lies along x-axis and AC along y-axis), the orthocenter is at (0,0).

Solving path: Look at the three vertices: A(0,0), B(8,0), C(0,6). AB runs along the x-axis (y = 0 throughout). AC runs along the y-axis (x = 0 throughout). So AB ⊥ AC — the right angle is at A. For a right triangle, the orthocenter sits at the right-angle vertex. Orthocenter = (0, 0). No calculation required.


Why this question: Classic parallel-line problem. Tests whether you know that parallel lines share the same slope.

Previous Year Questionपिछले वर्ष का प्रश्न2025
Find the equation of a line that is parallel to y = 3x − 5 and passes through the point (1, 2).
  1. y = 3x − 2
  2. y = 3x − 1
  3. y = 3x + 2
  4. y = 3x + 1
Solutionसमाधान
A line parallel to y = 3x − 5 has slope 3. Using point-slope form with (1,2): y − 2 = 3(x − 1) → y = 3x − 1.

Solving path: Slope of y = 3x − 5 is 3. Parallel line also has slope 3. Use the shortcut: c = y − mx = 2 − 3(1) = −1. Equation: y = 3x − 1. Check option list — it's there.


Why this question: Combines slope extraction from standard form with the perpendicular condition — two steps that must both be correct.

Previous Year Questionपिछले वर्ष का प्रश्न2025
The equation of a line is 5x − 2y = 10. What is the slope of a line perpendicular to this line?
  1. -8
  2. 6/7
  3. 7
  4. -2/5
Solutionसमाधान
Slope of given line = 5/2. Slope of perpendicular = −1/(5/2) = −2/5.

Solving path: Line is 5x − 2y = 10. Slope = −5/(−2) = 5/2. Perpendicular slope = flip and sign = −2/5. Scan options — −2/5 is option D. Done in under 20 seconds.


Why this question: Direct point-slope form application. Tests whether you can execute the algebra cleanly without a sign error.

Previous Year Questionपिछले वर्ष का प्रश्न2025
Find the equation of the line with slope -2 passing through the point (3, 5).
  1. y = -2x + 11
  2. y = x - 11
  3. y = -4x - 9
  4. y = 4x + 19
Solutionसमाधान
Using point-slope form: y - 5 = -2(x - 3) → y - 5 = -2x + 6 → y = -2x + 11.

Solving path: Slope = −2, point = (3, 5). Apply: y − 5 = −2(x − 3)y − 5 = −2x + 6y = −2x + 11. Watch the sign: −2 × (−3) = +6, not −6. That's the exact trap in this question.


Why this question: Simultaneous equations presented as a coordinate geometry intersection. Tests elimination speed.

Previous Year Questionपिछले वर्ष का प्रश्न2024
If equation of line p is x + y = 5 and that of line q is x – y = 3, what are the coordinates of the point common to both the lines?
  1. (2, 3)
  2. (4, 1)
  3. (2, 1)
  4. (1, 4)
Solutionसमाधान
Solving x + y = 5 and x – y = 3 simultaneously: adding both gives 2x = 8, so x = 4. Substituting back: 4 + y = 5, so y = 1. The point of intersection is (4, 1).

Solving path: x + y = 5 and x − y = 3. Add both equations: 2x = 8x = 4. Substitute: 4 + y = 5y = 1. Intersection = (4, 1). Total time: about 15 seconds.


Common Mistakes


Related Topics

Practice on SarkariRise

Sign up + get 3 free mocks →