The Cross-Multiplication Method

For the pair a1x+b1y+c1=0a_1 x + b_1 y + c_1 = 0 a2x+b2y+c2=0a_2 x + b_2 y + c_2 = 0 there is a direct formula for the solution, called the cross-multiplication method:

xb1c2b2c1=yc1a2c2a1=1a1b2a2b1\frac{x}{b_1 c_2 - b_2 c_1} = \frac{y}{c_1 a_2 - c_2 a_1} = \frac{1}{a_1 b_2 - a_2 b_1}

From this: x=b1c2b2c1a1b2a2b1,y=c1a2c2a1a1b2a2b1x = \frac{b_1 c_2 - b_2 c_1}{a_1 b_2 - a_2 b_1}, \qquad y = \frac{c_1 a_2 - c_2 a_1}{a_1 b_2 - a_2 b_1}

Key Point: Both equations must be in the form ax+by+c=0ax + by + c = 0 (everything on one side) before applying the formula. A unique solution exists when the denominator a1b2a2b10a_1 b_2 - a_2 b_1 \neq 0.

[Board Important] This method is in many State Board syllabi (removed from rationalised CBSE). It's especially fast when you only need xx or only yy.

A Memory Layout for Cross-Multiplication

The formula is easier to remember with the criss-cross diagram. Write the coefficients in two rows, repeating the bb and cc columns to make the cross pattern:

b1c1a1b1b2c2a2b2\begin{array}{cccc} b_1 & c_1 & a_1 & b_1 \\ b_2 & c_2 & a_2 & b_2 \end{array}

  • For xx: cross-multiply the first block (b1c2b2c1)(b_1 c_2 - b_2 c_1).
  • For yy: cross-multiply the middle block (c1a2c2a1)(c_1 a_2 - c_2 a_1).
  • For 11: cross-multiply the last block (a1b2a2b1)(a_1 b_2 - a_2 b_1).

Key Point: Each numerator is a 'cross' difference: down-product minus up-product. Keeping the columns in the order b,c,a,bb, c, a, b gives all three correctly.

[Board Important] Practise the layout a few times — once memorised, cross-multiplication is the quickest route to both xx and yy in one go.

Conditions for Consistency (Ratio Test)

The ratios of coefficients tell us, without solving, how many solutions a pair has. This ties together everything from the graphical section.

Condition Lines Solutions Type
a1a2b1b2\dfrac{a_1}{a_2} \neq \dfrac{b_1}{b_2} Intersecting Unique Consistent
a1a2=b1b2=c1c2\dfrac{a_1}{a_2} = \dfrac{b_1}{b_2} = \dfrac{c_1}{c_2} Coincident Infinitely many Consistent (dependent)
a1a2=b1b2c1c2\dfrac{a_1}{a_2} = \dfrac{b_1}{b_2} \neq \dfrac{c_1}{c_2} Parallel None Inconsistent

Key Point: Write both equations as ax+by+c=0ax + by + c = 0 first, then compare the three ratios. This is the fastest way to answer 'how many solutions?' or 'find kk for … solutions' questions.

[Board Important] 'Find the value of kk for which the pair has no solution / infinitely many solutions' is asked almost every year. Use the ratio conditions directly.

Equations Reducible to Linear Form

Some equations don't look linear but become linear after a clever substitution. The classic type involves 1x\dfrac{1}{x} and 1y\dfrac{1}{y}.

The trick

For a pair like 2x+3y=13,5x4y=2,\frac{2}{x} + \frac{3}{y} = 13, \qquad \frac{5}{x} - \frac{4}{y} = -2, let u=1xu = \dfrac{1}{x} and v=1yv = \dfrac{1}{y}. The pair becomes 2u+3v=13,5u4v=2,2u + 3v = 13, \qquad 5u - 4v = -2, which is an ordinary linear pair. Solve for u,vu, v, then recover x=1ux = \dfrac{1}{u}, y=1vy = \dfrac{1}{v}.

Key Point: Substituting u=1/xu = 1/x, v=1/yv = 1/y (or similar) turns a non-linear-looking pair into a linear one. Don't forget to convert back at the end.

[Board Important] Always state your substitution clearly ('Let u=1/xu = 1/x…') and remember to find the original variables xx and yy at the end — a common place to lose marks.

Solved Examples

Example 1: Cross-multiplication

Solve by cross-multiplication: 2x+3y7=02x + 3y - 7 = 0 and 3xy5=03x - y - 5 = 0.

Solution:

  1. Here a1=2,b1=3,c1=7a_1=2, b_1=3, c_1=-7; a2=3,b2=1,c2=5a_2=3, b_2=-1, c_2=-5.
  2. a1b2a2b1=(2)(1)(3)(3)=29=11a_1 b_2 - a_2 b_1 = (2)(-1) - (3)(3) = -2 - 9 = -11.
  3. x=b1c2b2c111=(3)(5)(1)(7)11=15711=2x = \dfrac{b_1 c_2 - b_2 c_1}{-11} = \dfrac{(3)(-5) - (-1)(-7)}{-11} = \dfrac{-15 - 7}{-11} = 2.
  4. y=c1a2c2a111=(7)(3)(5)(2)11=21+1011=1y = \dfrac{c_1 a_2 - c_2 a_1}{-11} = \dfrac{(-7)(3) - (-5)(2)}{-11} = \dfrac{-21 + 10}{-11} = 1.

Final Answer: x=2x = 2, y=1y = 1.

Takeaway: Plug into the cross-multiplication formula carefully with signs.

Example 2: Unique solution check

Does 3x+2y=53x + 2y = 5 and 2x3y=72x - 3y = 7 have a unique solution?

Solution:

  1. a1a2=32\dfrac{a_1}{a_2} = \dfrac{3}{2}, b1b2=23\dfrac{b_1}{b_2} = \dfrac{2}{-3}.
  2. Since 3223\dfrac{3}{2} \neq \dfrac{2}{-3}, the ratios differ.

Final Answer: Yes, a unique solution.

Takeaway: a1a2b1b2\dfrac{a_1}{a_2} \neq \dfrac{b_1}{b_2} ⇒ unique solution.

Example 3: Find kk for no solution

Find kk so that 3x+ky=73x + ky = 7 and 6x+10y=116x + 10y = 11 has no solution.

Solution:

  1. No solution needs a1a2=b1b2c1c2\dfrac{a_1}{a_2} = \dfrac{b_1}{b_2} \neq \dfrac{c_1}{c_2}.
  2. 36=k10k=5\dfrac{3}{6} = \dfrac{k}{10} \Rightarrow k = 5.
  3. Check c1c2\dfrac{c_1}{c_2}: 711=71112\dfrac{-7}{-11} = \dfrac{7}{11} \neq \dfrac{1}{2}. ✓ (different)

Final Answer: k=5k = 5.

Takeaway: Match the first two ratios for kk; confirm the third is different.

Example 4: Find kk for infinitely many solutions

Find kk so that 2x+3y=72x + 3y = 7 and (k1)x+(k+2)y=3k(k-1)x + (k+2)y = 3k has infinitely many solutions.

Solution:

  1. Need 2k1=3k+2=73k\dfrac{2}{k-1} = \dfrac{3}{k+2} = \dfrac{7}{3k}.
  2. From the first two: 2(k+2)=3(k1)2k+4=3k3k=72(k+2) = 3(k-1) \Rightarrow 2k + 4 = 3k - 3 \Rightarrow k = 7.
  3. Check with third: 26=13\dfrac{2}{6} = \dfrac{1}{3} and 721=13\dfrac{7}{21} = \dfrac{1}{3}. ✓

Final Answer: k=7k = 7.

Takeaway: Solve from one pair of ratios, then verify the remaining one.

Example 5: Reducible — basic

Solve: 1x+1y=5\dfrac{1}{x} + \dfrac{1}{y} = 5 and 1x1y=1\dfrac{1}{x} - \dfrac{1}{y} = 1.

Solution:

  1. Let u=1xu = \dfrac{1}{x}, v=1yv = \dfrac{1}{y}: u+v=5u + v = 5, uv=1u - v = 1.
  2. Add: 2u=6u=32u = 6 \Rightarrow u = 3; subtract: 2v=4v=22v = 4 \Rightarrow v = 2.
  3. So x=13x = \dfrac{1}{3}, y=12y = \dfrac{1}{2}.

Final Answer: x=13x = \dfrac{1}{3}, y=12y = \dfrac{1}{2}.

Takeaway: Substitute u=1/xu = 1/x, v=1/yv = 1/y, solve, then invert.

Example 6: Reducible — harder

Solve: 2x+3y=13\dfrac{2}{x} + \dfrac{3}{y} = 13 and 5x4y=2\dfrac{5}{x} - \dfrac{4}{y} = -2.

Solution:

  1. Let u=1xu = \dfrac{1}{x}, v=1yv = \dfrac{1}{y}: 2u+3v=132u + 3v = 13, 5u4v=25u - 4v = -2.
  2. Eliminate uu: multiply first by 5, second by 2: 10u+15v=6510u + 15v = 65, 10u8v=410u - 8v = -4. Subtract: 23v=69v=323v = 69 \Rightarrow v = 3.
  3. 2u+9=13u=22u + 9 = 13 \Rightarrow u = 2. So x=12x = \dfrac{1}{2}, y=13y = \dfrac{1}{3}.

Final Answer: x=12x = \dfrac{1}{2}, y=13y = \dfrac{1}{3}.

Takeaway: After substitution, use elimination as usual, then invert u,vu, v.

Example 7: Consistency classification

Classify 5x4y+8=05x - 4y + 8 = 0 and 7x+6y9=07x + 6y - 9 = 0.

Solution:

  1. a1a2=57\dfrac{a_1}{a_2} = \dfrac{5}{7}, b1b2=46=23\dfrac{b_1}{b_2} = \dfrac{-4}{6} = -\dfrac{2}{3}.
  2. Since 5723\dfrac{5}{7} \neq -\dfrac{2}{3}, the lines intersect.

Final Answer: Unique solution; consistent.

Takeaway: Different first two ratios ⇒ consistent with a unique solution.

Example 8: Find kk for unique solution

For what value of kk does kx+3y=k3kx + 3y = k - 3 and 12x+ky=k12x + ky = k have a unique solution?

Solution:

  1. Unique solution needs a1a2b1b2\dfrac{a_1}{a_2} \neq \dfrac{b_1}{b_2}: k123k\dfrac{k}{12} \neq \dfrac{3}{k}.
  2. k236k±6k^2 \neq 36 \Rightarrow k \neq \pm 6.

Final Answer: All kk except k=6k = 6 and k=6k = -6.

Takeaway: Cross-multiply the inequality to find the excluded values.

Example 9: Reducible with constants on both terms

Solve: 3x+2y=12\dfrac{3}{x} + \dfrac{2}{y} = 12 and 2x+3y=13\dfrac{2}{x} + \dfrac{3}{y} = 13.

Solution:

  1. Let u=1/xu = 1/x, v=1/yv = 1/y: 3u+2v=123u + 2v = 12, 2u+3v=132u + 3v = 13.
  2. Multiply first by 3, second by 2: 9u+6v=369u + 6v = 36, 4u+6v=264u + 6v = 26. Subtract: 5u=10u=25u = 10 \Rightarrow u = 2.
  3. 3(2)+2v=12v=33(2) + 2v = 12 \Rightarrow v = 3. So x=12x = \dfrac{1}{2}, y=13y = \dfrac{1}{3}.

Final Answer: x=12x = \dfrac{1}{2}, y=13y = \dfrac{1}{3}.

Takeaway: Same substitution trick works whenever only 1/x1/x and 1/y1/y appear.

Example 10: Cross-multiplication for a word setup

Solve by cross-multiplication: x+y5=0x + y - 5 = 0 and 2xy1=02x - y - 1 = 0.

Solution:

  1. a1=1,b1=1,c1=5a_1=1, b_1=1, c_1=-5; a2=2,b2=1,c2=1a_2=2, b_2=-1, c_2=-1.
  2. a1b2a2b1=(1)(1)(2)(1)=3a_1 b_2 - a_2 b_1 = (1)(-1) - (2)(1) = -3.
  3. x=(1)(1)(1)(5)3=153=2x = \dfrac{(1)(-1) - (-1)(-5)}{-3} = \dfrac{-1 - 5}{-3} = 2.
  4. y=(5)(2)(1)(1)3=10+13=3y = \dfrac{(-5)(2) - (-1)(1)}{-3} = \dfrac{-10 + 1}{-3} = 3.

Final Answer: x=2x = 2, y=3y = 3.

Takeaway: Cross-multiplication gives both variables directly from the coefficients.