In short

A system of two linear equations in two unknowns is, geometrically, two straight lines drawn on the same plane. The pair (x, y) that solves the system is exactly the point where those two lines cross. Change the equations and the lines tilt and shift; the crossing point glides to a new spot. Make the slopes match and the lines become parallel — the crossing point vanishes and the system has no solution. Make every coefficient match and the two lines collapse onto each other — the crossing point becomes infinite. The widget below lets you drag m_1, c_1, m_2, c_2 and watch the red dot track the intersection live.

When you first met systems of linear equations in CBSE Class 10, the textbook gave you a recipe — substitution, elimination, cross-multiplication — and asked you to crank out an answer. The recipe works, but it hides the picture behind the algebra.

The picture is short and powerful: every linear equation y = mx + c is a straight line. Two of them are two lines. Two lines on a flat sheet either cross at one point (one solution), or run parallel (no solution), or sit on top of each other (infinitely many solutions). That is the whole geometric story of a 2 \times 2 linear system. The widget below makes it move.

Drag the coefficients, watch the dot glide

Two lines are drawn in the plane: line 1 in dark ink, line 2 in slate blue. Each has a slope m and a y-intercept c, controlled by the sliders. The red dot is the intersection — it tracks live as you drag. The readout below the canvas tells you the exact (x, y) of the crossing, or warns you that the lines have gone parallel or coincident.

x y 12 34 56 -1-2 -3-4 -5-6 12 34 -1-2 -3-4
Line 1: $y = x + 1$    Line 2: $y = -x + 5$
Intersection: $(2, 3)$ — one solution.
Drag $m_1, c_1, m_2, c_2$ and the red dot tracks the intersection of the two lines. Slide $m_2$ until it equals $m_1$ — the dot vanishes and the readout reports "no solution". Match $c_2$ to $c_1$ as well and the lines collapse onto each other — "infinitely many solutions".

Start with the default: y = x + 1 and y = -x + 5. The red dot sits at (2, 3). Why (2, 3) satisfies both equations simultaneously: y = x + 1 gives 3 = 2 + 1. ✓ And y = -x + 5 gives 3 = -2 + 5. ✓ The intersection point is the only pair (x, y) that lives on both lines at once — that is the geometric meaning of "solving the system".

Now drag the slope of line 2 towards +1. As m_2 approaches m_1 = 1, the slate-blue line rotates and the red dot slides further and further to the right. The moment m_2 hits 1 exactly, the lines become parallel and the dot disappears — the readout switches to "no solution". The crossing point has shot off to infinity.

Now also drag c_2 down to 1. Both lines now read y = x + 1 — the same line drawn twice. The readout becomes "infinitely many solutions". Every point on the line is a solution.

Three states, one widget: one solution, none, infinitely many — the same trichotomy you read about in the consistency table of the parent article, now seen as a continuous family.

The three pictures, side by side

If the widget cannot run on your device, here is the same idea as a still figure: three coordinate planes showing the three possible relationships between two lines.

Three panels showing one solution, no solution, and infinite solutionsThree coordinate planes side by side. Left: two lines crossing at a single red dot, labelled one solution. Middle: two parallel lines with no crossing, labelled no solution. Right: two lines drawn on top of each other, labelled infinite solutions. Unique solution lines cross at one point m₁ ≠ m₂ No solution parallel — never meet m₁ = m₂, c₁ ≠ c₂ Infinite solutions same line drawn twice m₁ = m₂, c₁ = c₂ Same trichotomy whether you check graphically or via the coefficient ratios
The three possible outcomes. Different slopes guarantee a crossing somewhere on the plane. Equal slopes with different intercepts mean no crossing exists. Equal slopes with equal intercepts mean every point on the shared line is a solution.

The CBSE Class 10 graphical method asks exactly this question: plot the two lines, look at the picture, declare which case you are in. The widget compresses many problem worksheets into a single draggable demo.

Why the intersection is the simultaneous solution

A linear equation y = mx + c is a constraint: it says "the pair (x, y) must satisfy this rule". The set of pairs that satisfy it is exactly the line — every dot on the line obeys the rule, every dot off the line breaks it.

When you have two equations, you have two constraints. A pair (x, y) that solves the system must obey both rules — it must be a dot on line 1 and a dot on line 2. Why: solving the system means satisfying both equations simultaneously. A point that lives only on line 1 satisfies just the first rule; one that lives only on line 2 satisfies just the second. The only points that satisfy both are the points that belong to both line 1 and line 2 — the intersection of the two lines as sets.

That intersection is, generically, one point. (Two unrelated lines on a plane usually cross at exactly one spot — try drawing two random pencil strokes.) When the lines happen to be parallel, the intersection is empty — no point lives on both. When the lines coincide, the intersection is the whole line — infinitely many points live on both.

So the algebra of "find x and y that satisfy both equations" and the geometry of "find the intersection of two lines" are two ways of saying the same thing.

Worked examples

Example 1: $y = 2x - 1$ and $y = -x + 5$ intersect at $(2, 3)$

Set the slopes in the widget to m_1 = 2, c_1 = -1 and m_2 = -1, c_2 = 5. Algebraically, set the right-hand sides equal:

2x - 1 = -x + 5
3x = 6 \implies x = 2

Then y = 2(2) - 1 = 3. Why this works: at the intersection, both equations give the same y for the same x. Setting 2x - 1 = -x + 5 uses that fact directly — it asks "for what x does line 1 produce the same y-value as line 2?".

Check in the second equation: y = -2 + 5 = 3. ✓ Both equations agree, so (2, 3) is the simultaneous solution.

The widget shows the dot sitting at (2, 3). Drag c_1 up by 1 unit (so line 1 becomes y = 2x) and the dot glides to (5/3, 10/3) \approx (1.67, 3.33) — every nudge of a coefficient slides the intersection by a precise amount.

Example 2: $2x + y = 7$ and $x - y = 2$ intersect at $(3, 1)$

The equations are not in y = mx + c form. Rearrange before sliding into the widget.

From 2x + y = 7: y = -2x + 7. So m_1 = -2, c_1 = 7.

From x - y = 2: -y = 2 - x, i.e. y = x - 2. So m_2 = 1, c_2 = -2.

Why rearrange first: any linear equation in two variables can be rewritten as y = mx + c as long as the coefficient of y is nonzero. The slope and intercept that fall out are the inputs the widget needs.

Solve algebraically by setting equal:

-2x + 7 = x - 2 \implies 9 = 3x \implies x = 3

Then y = 3 - 2 = 1. The intersection is (3, 1). Check the original equations: 2(3) + 1 = 7. ✓ 3 - 1 = 2. ✓

Set the widget's sliders to those values and the red dot lands on (3, 1). The slopes m_1 = -2 and m_2 = 1 are unequal, so the lines must cross — and they do, exactly once.

Example 3: $y = 2x + 3$ and $y = 2x - 1$ — parallel, no solution

Both lines have slope m = 2. Their intercepts differ: c_1 = 3 and c_2 = -1. Try to solve algebraically:

2x + 3 = 2x - 1
3 = -1

A flat contradiction. Why this happens: subtracting 2x from both sides eliminates the x entirely, and what remains is the comparison of the two intercepts. If the intercepts agree, you get 3 = 3 — every x works (infinite solutions). If they disagree, you get 3 = -1 — no x works (no solutions).

Set the widget to m_1 = m_2 = 2, c_1 = 3, c_2 = -1. The two lines run parallel from bottom-left to top-right, never touching. The red dot vanishes. The readout reports "parallel lines — no solution".

This is the inconsistent case from the consistency table. Two equations, two lines, but no (x, y) in the entire plane satisfies both at once. A real-world example: an autorickshaw company quotes "₹30 per km plus ₹50 base" and a rival quotes "₹30 per km plus ₹100 base". For what distance do they charge the same fare? Never — the difference stays at ₹50 forever. The fare-vs-distance lines are parallel.

How this connects to the Class 10 graphical method

The CBSE Class 10 syllabus lists the graphical method as the first technique for solving a pair of linear equations. The procedure: rearrange both equations into a form you can plot, plot them on graph paper, and read off the intersection.

The widget you just used is a faster, more accurate, and infinitely re-runnable version of that procedure. Instead of plotting two lines on graph paper for one specific pair of equations, you can drag the coefficients and watch the intersection move continuously. The geometric intuition — that solving = intersecting — sinks in much faster when the answer glides in real time than when each problem starts with a fresh sheet of graph paper.

Once the intuition is solid, the algebraic methods (substitution, elimination, cross-multiplication) become what they really are: shortcuts for computing the intersection coordinates exactly, especially when the answer involves fractions that the eye cannot read from a hand-drawn graph.

References