ma

One Line, Six Disguises Straight Lines

Chapter summary, hard words and model exam answers.

Free online summary and notes. Read it here, no PDF download needed.

About the author

Mathematics · CBSE Class 11 · NCERT Mathematics, Ch.9

Summary

Earlier study of coordinate geometry built a small toolkit for working with plotted points: a way to measure the distance between two of them, a way to find the point that splits a segment in a given ratio (and, as a special case, its exact midpoint), and a way to compute the area enclosed by three points - an area that conveniently collapses to zero exactly when those three points happen to sit on one straight line. All of that treated points as the main character. This chapter turns the spotlight onto the line itself: not just the points that happen to lie on it, but the single condition that every one of those points, and no others, must satisfy. That condition turns out to be an ordinary algebraic equation in x and y, and finding it depends almost entirely on one number attached to the line - how steeply it tilts. Before writing a single equation, then, the natural first question is how to measure that tilt precisely, in a way that works for any line in the plane, however it happens to be drawn.

Any straight line, extended in both directions, crosses the x-axis at some angle. Because a line runs in two opposite directions at once, it technically forms two angles with the positive x-axis - but those two angles always add up to 180°, so fixing a single convention is enough to describe both. That convention is: measure anticlockwise from the positive direction of the x-axis around to the line, keeping the result between 0° and 180°. This angle is called the line's inclination, usually written θ. A line running parallel to the x-axis has inclination 0°; a line running parallel to the y-axis has inclination exactly 90°. The slope of the line is then defined as the tangent of this inclination: m = tan θ. Since tan 90° is undefined, a perfectly vertical line has no defined slope at all - not a slope of zero, a genuine absence of slope. Every other line, at every other inclination, has an ordinary real-number slope: positive for inclinations under 90° (the line climbs as x increases) and negative for inclinations over 90° (the line falls as x increases).

Given any two distinct points on a line, P(x1, y1) and Q(x2, y2), the slope can be found without measuring any angle at all: m = (y2 - y1) / (x2 - x1), valid as long as x1 is not equal to x2 (if it were, the line would be vertical, and the slope simply would not exist). This rise-over-run ratio comes out the same whichever of the two points is subtracted from which, and it works whether the line's inclination is acute or obtuse - the algebra sorts out the sign automatically. A few contrasting cases make the pattern concrete. Through (3, -2) and (-1, 4): m = (4-(-2)) / (-1-3) = 6 / (-4) = -3/2, a negative slope, matching a line that falls as x increases. Through (3, -2) and (7, -2): m = 0 / 4 = 0, since the y-value never changes - a horizontal line. Through (3, -2) and (3, 4): the denominator becomes 3-3=0, so the slope is undefined - a vertical line. And working in the opposite direction, a line inclined at exactly 60° to the x-axis has slope m = tan 60° = root(3), no pair of points required at all.

Slope alone is enough to decide how two lines relate to each other. Two non-vertical lines are parallel exactly when their slopes are equal, m1 = m2 - equal slopes force equal inclinations, and lines with the same inclination never meet. Two non-vertical lines are perpendicular exactly when the product of their slopes is -1, m1 × m2 = -1, which is the same as saying each slope is the negative reciprocal of the other. For instance, a line through (-2, 6) and (4, 8) has slope (8-6)/(4-(-2)) = 2/6 = 1/3; for a second line through (8, 12) and (x, 24) to be perpendicular to it, its slope 12/(x-8) must multiply with 1/3 to give -1, which forces x=4. The same slope idea also tests whether three points sit on one line at all: three points A, B, C are collinear precisely when the slope of AB equals the slope of BC - both segments tilt identically, and since they also share the point B, they must in fact be the very same line.

Two intersecting lines create not one angle but two supplementary angles (adding to 180°) at their meeting point. If lines L1 and L2 have slopes m1 and m2, the angle θ between them satisfies tan θ = (m2 - m1) / (1 + m1m2), valid whenever 1 + m1m2 is not zero (that exceptional case is exactly the perpendicular one, already covered by m1m2=-1). Whichever of the two supplementary angles is called θ, the other is simply 180° - θ, and its tangent is -tan θ - so the very same formula, depending on whether the fraction works out positive or negative, can hand back either the acute angle or the obtuse one. Reading that sign correctly is half the skill. As a worked case: if the angle between two lines is 45° and one line has slope 1/2, call the unknown slope m and solve tan45° = (m - 1/2)/(1 + m/2) = 1. Cross-multiplying gives m - 1/2 = 1 + m/2, so m/2 = 3/2, and m=3. But swapping which angle gets called θ flips the equation's sign, giving a second valid solution, m=-1/3. Both are genuinely correct: they describe two different lines, one on each side of the given line, each making a 45° angle with it.

With slope pinned down, the next step is turning a geometric description into an actual equation, satisfied by every point on the line and no others. The simplest lines to write down are the axis-parallel ones: a line running horizontally, at a fixed distance a from the x-axis, is simply y=a (or y=-a if it sits below the x-axis), since every point on it shares that same y-coordinate no matter what its x-coordinate is. Likewise a vertical line at distance b from the y-axis is x=b or x=-b. For a general slanted line through a known point (x0, y0) with known slope m, take any other point (x, y) on that same line: by the very definition of slope, the ratio between these two points must also equal m, so (y-y0)/(x-x0) = m, which rearranges into the point-slope form: y - y0 = m(x - x0). This one equation is satisfied by every point on the line and by no point off it. For example, the line through (-2, 3) with slope -4 satisfies y - 3 = -4(x+2), which expands and rearranges to 4x + y + 5 = 0.

Sometimes a line is described by two points on it rather than one point and a slope - but the point-slope form still applies, once the slope has been worked out first. For a line through (x1, y1) and (x2, y2), compute the slope as (y2-y1)/(x2-x1), then plug it into the point-slope form: y - y1 = [(y2-y1)/(x2-x1)](x - x1), the two-point form. For the points (1, -1) and (3, 5): the slope is (5-(-1))/(3-1) = 3, so the equation becomes y+1 = 3(x-1), which simplifies to -3x + y + 4 = 0. A different, equally natural description of a line uses its slope together with where it crosses the y-axis - its y-intercept, c. Setting (x0, y0) = (0, c) in the point-slope form immediately gives the slope-intercept form, y = mx + c, arguably the single most quoted equation of a line. A close cousin uses the x-intercept d instead: y = m(x - d). Two short examples, both sharing slope tan θ = 1/2: with y-intercept -3/2, the line is y = (1/2)x - 3/2, or 2y - x + 3 = 0; with x-intercept 4 instead, the line is y = (1/2)(x-4), or 2y - x + 4 = 0 - two visibly different lines that happen to share the exact same slope.

A line can also be pinned down by where it crosses both axes at once: its x-intercept a and y-intercept b, meaning the points (a, 0) and (0, b). Applying the two-point form to these two points and simplifying leads to the intercept form: x/a + y/b = 1. A line with x-intercept -3 and y-intercept 2, for instance, satisfies x/(-3) + y/2 = 1, which clears to 2x - 3y + 6 = 0. At this point it is worth stepping back and counting: horizontal and vertical lines, point-slope form, two-point form, slope-intercept form, and intercept form are five different-looking recipes for writing down a line's equation, and yet every single one of them, once fully expanded, turns into the exact same shape, Ax + By + C = 0, where A and B are not both zero. This is the general equation of a line - the sixth and final disguise, the one shape every other form eventually collapses into. Given any general equation, the slope can always be recovered as -A/B (whenever B is not zero), and the intercepts as -C/A and -C/B. A single straight line, then, is really just one geometric object wearing up to six different algebraic outfits, depending on what information was originally on hand - a point and a slope, two points, or two intercepts - with the general form as the one outfit that fits underneath every other one.

Sometimes the question is not about a line's own shape but about how far some external point sits from it. The distance of a point (x1, y1) from a line written in general form Ax + By + C = 0 is d = |Ax1 + By1 + C| / root(A^2 + B^2): substitute the point into the left-hand side of the line's equation exactly as if checking whether it satisfies that equation, take the absolute value (since a distance can never come out negative), and divide by the square root of the sum of the squares of A and B. For the point (3, -5) and the line 3x - 4y - 26 = 0: here A=3, B=-4, C=-26, so Ax1+By1+C = 3(3) + (-4)(-5) + (-26) = 9+20-26 = 3, and root(A^2+B^2) = root(9+16) = 5. The distance is therefore |3|/5 = 3/5 units. Notice that if the point actually lies on the line, substituting it in gives exactly zero in the numerator - which is exactly the ordinary check for 'does this point satisfy the equation', now reinterpreted as 'this point is zero distance from the line', a satisfying bit of agreement between two ideas that might otherwise have felt unrelated.

Two parallel lines never meet, but they do sit a fixed distance apart along their entire length, and that distance is worth computing directly. Because parallel lines share the same slope, they can be written as y = mx + c1 and y = mx + c2, and the perpendicular distance between them works out to d = |c1 - c2| / root(1 + m^2). Written in general form instead, two parallel lines share the same A and B, with only C differing: Ax + By + C1 = 0 and Ax + By + C2 = 0, and the distance simplifies to d = |C1 - C2| / root(A^2 + B^2) - essentially the point-to-line distance formula, applied to any single point on one line and measured against the other. For the lines 3x - 4y + 7 = 0 and 3x - 4y + 5 = 0: A=3, B=-4, C1=7, C2=5, so d = |7-5| / root(9+16) = 2/5 units. The formula only works once both equations are written with matching A and B; comparing 3x-4y+7=0 directly against, say, 6x-8y+5=0 would silently give the wrong number, since that second line's coefficients are really just the first pair doubled and need to be halved back down first.

Hard words & meanings

inclinationthe angle θ, with 0° ≤ θ ≤ 180°, that a line makes with the positive direction of the x-axis, measured anticlockwise
slope (gradient)the tangent of a line's inclination, m = tan θ; equally computable from two points as (y2-y1)/(x2-x1)
collinearthree or more points that all lie on a single straight line
concurrent linesthree or more lines that all pass through one common point
interceptthe coordinate where a line crosses one of the axes: the x-intercept is where it meets the x-axis, the y-intercept where it meets the y-axis
general equation of a lineany line written in the unified form Ax + By + C = 0, with A and B not both zero
perpendicular distancethe shortest distance from a point to a line, measured along the segment that meets the line at a right angle
negative reciprocalthe value -1/m for a slope m; two non-vertical lines are perpendicular exactly when their slopes are negative reciprocals of each other
🔒

Model exam answers, grammar & audio

You have read the summary. The board-ready model answers, grammar notes, one-touch audio and writing practice for this chapter are part of Lipi©.

Unlock free with any language course

See it, understand it, hear it read aloud, then write the exam answer with confidence, for a fraction of a tutor cost.