Skip to content
🚨 This site is a work in progress. Exciting updates are coming soon!

4.4 Q-16

Question Statement

We are given a system of linear equations. The task is to express each system in matrix form and determine if the lines represented by the equations are concurrent. Specifically, we need to analyze the following cases:

Case (a)

x+3yβˆ’2=0x + 3y - 2 = 0 2xβˆ’y+4=02x - y + 4 = 0 xβˆ’11y+14=0x - 11y + 14 = 0

Case (b)

2x+3y+4=02x + 3y + 4 = 0 xβˆ’2yβˆ’3=0x - 2y - 3 = 0 3x+yβˆ’8=03x + y - 8 = 0

Case (c)

3xβˆ’4yβˆ’2=03x - 4y - 2 = 0 x+2yβˆ’4=0x + 2y - 4 = 0 3xβˆ’2y+5=03x - 2y + 5 = 0

Background and Explanation

To solve this problem, we need to represent each system of linear equations in matrix form. A system of equations can be expressed as:

Ax=bAx = b

Where:

  • AA is the coefficient matrix,
  • xx is the column matrix of variables (in this case xx and yy),
  • bb is the column matrix of constants on the right-hand side.

Once we express the system in matrix form, we will use the determinant of the coefficient matrix AA to check if the system has a unique solution. If the determinant ∣A∣=0|A| = 0, the lines are concurrent, meaning they intersect at a single point. If ∣Aβˆ£β‰ 0|A| \neq 0, the lines are not concurrent, meaning they do not all meet at a single point.


Solution

Case (a)

Matrix Form of the System:

The system of equations is:

x+3yβˆ’2=02xβˆ’y+4=0xβˆ’11y+14=0\begin{aligned} x + 3y - 2 &= 0 2x - y + 4 &= 0 x - 11y + 14 &= 0 \end{aligned}

This system can be written in matrix form as:

[13βˆ’22βˆ’141βˆ’1114][xyz]=[000]\left[\begin{array}{ccc} 1 & 3 & -2 2 & -1 & 4 1 & -11 & 14 \end{array}\right] \left[\begin{array}{c} x y z \end{array}\right] = \left[\begin{array}{c} 0 0 0 \end{array}\right]

Determinant of the Coefficient Matrix:

We calculate the determinant of the coefficient matrix AA:

∣A∣=∣13βˆ’22βˆ’141βˆ’1114∣|A| = \begin{vmatrix} 1 & 3 & -2 2 & -1 & 4 1 & -11 & 14 \end{vmatrix}

Expanding this determinant:

∣A∣=1Γ—(βˆ£βˆ’14βˆ’1114∣)βˆ’3Γ—(∣24114∣)+(βˆ’2)Γ—(∣2βˆ’11βˆ’11∣)|A| = 1 \times \left( \begin{vmatrix} -1 & 4 -11 & 14 \end{vmatrix} \right) - 3 \times \left( \begin{vmatrix} 2 & 4 1 & 14 \end{vmatrix} \right) + (-2) \times \left( \begin{vmatrix} 2 & -1 1 & -11 \end{vmatrix} \right)

Calculating each 2x2 determinant:

βˆ£βˆ’14βˆ’1114∣=(βˆ’1)(14)βˆ’(4)(βˆ’11)=βˆ’14+44=30\begin{vmatrix} -1 & 4 -11 & 14 \end{vmatrix} = (-1)(14) - (4)(-11) = -14 + 44 = 30 ∣24114∣=(2)(14)βˆ’(4)(1)=28βˆ’4=24\begin{vmatrix} 2 & 4 1 & 14 \end{vmatrix} = (2)(14) - (4)(1) = 28 - 4 = 24 ∣2βˆ’11βˆ’11∣=(2)(βˆ’11)βˆ’(βˆ’1)(1)=βˆ’22+1=βˆ’21\begin{vmatrix} 2 & -1 1 & -11 \end{vmatrix} = (2)(-11) - (-1)(1) = -22 + 1 = -21

Substituting these values back:

∣A∣=1(30)βˆ’3(24)βˆ’2(βˆ’21)=30βˆ’72+42=0|A| = 1(30) - 3(24) - 2(-21) = 30 - 72 + 42 = 0

Since ∣A∣=0|A| = 0, the lines are concurrent.


Case (b)

Matrix Form of the System:

The system of equations is:

2x+3y+4=0xβˆ’2yβˆ’3=03x+yβˆ’8=0\begin{aligned} 2x + 3y + 4 &= 0 x - 2y - 3 &= 0 3x + y - 8 &= 0 \end{aligned}

This system can be written in matrix form as:

[2341βˆ’2βˆ’331βˆ’8][xyz]=[000]\left[\begin{array}{ccc} 2 & 3 & 4 1 & -2 & -3 3 & 1 & -8 \end{array}\right] \left[\begin{array}{c} x y z \end{array}\right] = \left[\begin{array}{c} 0 0 0 \end{array}\right]

Determinant of the Coefficient Matrix:

We calculate the determinant of the coefficient matrix AA:

∣A∣=∣2341βˆ’2βˆ’331βˆ’8∣|A| = \begin{vmatrix} 2 & 3 & 4 1 & -2 & -3 3 & 1 & -8 \end{vmatrix}

Expanding this determinant:

∣A∣=2Γ—βˆ£βˆ’2βˆ’31βˆ’8βˆ£βˆ’3Γ—βˆ£1βˆ’33βˆ’8∣+4Γ—βˆ£1βˆ’231∣|A| = 2 \times \begin{vmatrix} -2 & -3 1 & -8 \end{vmatrix} - 3 \times \begin{vmatrix} 1 & -3 3 & -8 \end{vmatrix} + 4 \times \begin{vmatrix} 1 & -2 3 & 1 \end{vmatrix}

Calculating each 2x2 determinant:

βˆ£βˆ’2βˆ’31βˆ’8∣=(βˆ’2)(βˆ’8)βˆ’(βˆ’3)(1)=16+3=19\begin{vmatrix} -2 & -3 1 & -8 \end{vmatrix} = (-2)(-8) - (-3)(1) = 16 + 3 = 19 ∣1βˆ’33βˆ’8∣=(1)(βˆ’8)βˆ’(βˆ’3)(3)=βˆ’8+9=1\begin{vmatrix} 1 & -3 3 & -8 \end{vmatrix} = (1)(-8) - (-3)(3) = -8 + 9 = 1 ∣1βˆ’231∣=(1)(1)βˆ’(βˆ’2)(3)=1+6=7\begin{vmatrix} 1 & -2 3 & 1 \end{vmatrix} = (1)(1) - (-2)(3) = 1 + 6 = 7

Substituting these values back:

∣A∣=2(19)βˆ’3(1)+4(7)=38βˆ’3+28=63|A| = 2(19) - 3(1) + 4(7) = 38 - 3 + 28 = 63

Since ∣A∣=7β‰ 0|A| = 7 \neq 0, the lines are not concurrent.


Case (c)

Matrix Form of the System:

The system of equations is:

3xβˆ’4yβˆ’2=0x+2yβˆ’4=03xβˆ’2y+5=0\begin{aligned} 3x - 4y - 2 &= 0 x + 2y - 4 &= 0 3x - 2y + 5 &= 0 \end{aligned}

This system can be written in matrix form as:

[3βˆ’4βˆ’212βˆ’43βˆ’25][xyz]=[000]\left[\begin{array}{ccc} 3 & -4 & -2 1 & 2 & -4 3 & -2 & 5 \end{array}\right] \left[\begin{array}{c} x y z \end{array}\right] = \left[\begin{array}{c} 0 0 0 \end{array}\right]

Determinant of the Coefficient Matrix:

We calculate the determinant of the coefficient matrix AA:

∣A∣=∣3βˆ’4βˆ’212βˆ’43βˆ’25∣|A| = \begin{vmatrix} 3 & -4 & -2 1 & 2 & -4 3 & -2 & 5 \end{vmatrix}

Expanding this determinant:

∣A∣=3Γ—βˆ£2βˆ’4βˆ’25βˆ£βˆ’(βˆ’4)Γ—βˆ£1βˆ’435∣+(βˆ’2)Γ—βˆ£123βˆ’2∣|A| = 3 \times \begin{vmatrix} 2 & -4 -2 & 5 \end{vmatrix} - (-4) \times \begin{vmatrix} 1 & -4 3 & 5 \end{vmatrix} + (-2) \times \begin{vmatrix} 1 & 2 3 & -2 \end{vmatrix}

Calculating each 2x2 determinant:

∣2βˆ’4βˆ’25∣=(2)(5)βˆ’(βˆ’4)(βˆ’2)=10βˆ’8=2\begin{vmatrix} 2 & -4 -2 & 5 \end{vmatrix} = (2)(5) - (-4)(-2) = 10 - 8 = 2 ∣1βˆ’435∣=(1)(5)βˆ’(βˆ’4)(3)=5+12=17\begin{vmatrix} 1 & -4 3 & 5 \end{vmatrix} = (1)(5) - (-4)(3) = 5 + 12 = 17 ∣123βˆ’2∣=(1)(βˆ’2)βˆ’(2)(3)=βˆ’2βˆ’6=βˆ’8\begin{vmatrix} 1 & 2 3 & -2 \end{vmatrix} = (1)(-2) - (2)(3) = -2 - 6 = -8

Substituting these values back:

∣A∣=3(2)βˆ’(βˆ’4)(17)+(βˆ’2)(βˆ’8)=6+68+16=90|A| = 3(2) - (-4)(17) + (-2)(-8) = 6 + 68 + 16 = 90

Since ∣A∣=90β‰ 0|A| = 90 \neq 0, the lines are not concurrent.


Conclusion

  • Case (a): The lines are concurrent.
  • Case (b): The lines are not concurrent.
  • Case (c): The lines are not concurrent.