Skip to main content
Back to Matrices & Determinants
JEE Main 2019
Matrices & Determinants
Matrices and Determinants
Easy

Question

The system of equations kx + y + z = 1, x + ky + z = k and x + y + zk = k 2 has no solution if k is equal to :

Options

Solution

Key Concept: Conditions for Solutions of a System of Linear Equations

For a system of linear equations given in matrix form as AX=BAX = B, where AA is the coefficient matrix, XX is the column vector of variables, and BB is the column vector of constants:

  1. Unique Solution: The system has a unique solution if and only if the determinant of the coefficient matrix, D=det(A)D = \det(A), is non-zero (D0D \neq 0). In this case, Cramer's Rule can be directly applied.
  2. No Solution (Inconsistent System): The system has no solution if and only if D=0D = 0 AND at least one of the determinants Dx,Dy,DzD_x, D_y, D_z (obtained by replacing the respective column in AA with BB) is non-zero. Equivalently, using rank, if rank(A)rank([AB])rank(A) \neq rank([A|B]).
  3. Infinitely Many Solutions (Consistent and Dependent System): The system has infinitely many solutions if and only if D=0D = 0 AND Dx=Dy=Dz=0D_x = D_y = D_z = 0. Equivalently, using rank, if rank(A)=rank([AB])<nrank(A) = rank([A|B]) < n, where nn is the number of variables.

Our goal is to find the value of kk for which the given system has no solution. This means we first need to find the values of kk for which D=0D=0, and then test those values to see which one leads to an inconsistent system.


Step-by-Step Solution

Step 1: Formulate the Coefficient Matrix and Calculate its Determinant

The given system of equations is: kx+y+z=1kx + y + z = 1 x+ky+z=kx + ky + z = k x+y+zk=k2x + y + zk = k^2

We can write this system in matrix form AX=BAX=B, where: A=(k111k111k),X=(xyz),B=(1kk2)A = \begin{pmatrix} k & 1 & 1 \\ 1 & k & 1 \\ 1 & 1 & k \end{pmatrix}, \quad X = \begin{pmatrix} x \\ y \\ z \end{pmatrix}, \quad B = \begin{pmatrix} 1 \\ k \\ k^2 \end{pmatrix}

First, we calculate the determinant of the coefficient matrix AA, denoted as DD. D=det(A)=k111k111kD = \det(A) = \left| \begin{matrix} k & 1 & 1 \\ 1 & k & 1 \\ 1 & 1 & k \end{matrix} \right|

To calculate the determinant, we expand along the first row: D=kk11k1111k+11k11D = k \left| \begin{matrix} k & 1 \\ 1 & k \end{matrix} \right| - 1 \left| \begin{matrix} 1 & 1 \\ 1 & k \end{matrix} \right| + 1 \left| \begin{matrix} 1 & k \\ 1 & 1 \end{matrix} \right| D=k(kk11)1(1k11)+1(11k1)D = k(k \cdot k - 1 \cdot 1) - 1(1 \cdot k - 1 \cdot 1) + 1(1 \cdot 1 - k \cdot 1) D=k(k21)(k1)+(1k)D = k(k^2 - 1) - (k - 1) + (1 - k)

Now, we simplify and factor the expression: D=k(k21)(k1)(k1)D = k(k^2 - 1) - (k - 1) - (k - 1) D=k(k1)(k+1)2(k1)D = k(k-1)(k+1) - 2(k - 1) We can factor out (k1)(k-1): D=(k1)[k(k+1)2]D = (k-1) [k(k+1) - 2] D=(k1)[k2+k2]D = (k-1) [k^2 + k - 2] The quadratic term k2+k2k^2 + k - 2 can be factored as (k+2)(k1)(k+2)(k-1). D=(k1)(k1)(k+2)D = (k-1)(k-1)(k+2) D=(k1)2(k+2)D = (k-1)^2(k+2)

For the system to have no unique solution (i.e., either no solution or infinitely many solutions), we must have D=0D=0. Setting D=0D=0: (k1)2(k+2)=0(k-1)^2(k+2) = 0 This gives us two critical values for kk: k=1ork=2k = 1 \quad \text{or} \quad k = -2

Step 2: Analyze Each Case where D=0D=0

We must now examine these values of kk to determine which one leads to no solution.

Case A: When k=1k = 1

Substitute k=1k=1 into the original system of equations: (1)x+y+z=1    x+y+z=1(1)x + y + z = 1 \implies x + y + z = 1 x+(1)y+z=1    x+y+z=1x + (1)y + z = 1 \implies x + y + z = 1 x+y+z(1)=12    x+y+z=1x + y + z(1) = 1^2 \implies x + y + z = 1

In this case, all three equations become identical (x+y+z=1x+y+z=1). This means the system represents a single plane in 3D space. Any point (x,y,z)(x, y, z) satisfying this equation is a solution. Since there are infinitely many such points, the system has infinitely many solutions for k=1k=1. Therefore, k=1k=1 is not the answer for "no solution".

Case B: When k=2k = -2

Substitute k=2k=-2 into the original system of equations: (2)x+y+z=1    2x+y+z=1(-2)x + y + z = 1 \implies -2x + y + z = 1 x+(2)y+z=2    x2y+z=2x + (-2)y + z = -2 \implies x - 2y + z = -2 x+y+z(2)=(2)2    x+y2z=4x + y + z(-2) = (-2)^2 \implies x + y - 2z = 4

Now we have the system:

  1. 2x+y+z=1-2x + y + z = 1
  2. x2y+z=2x - 2y + z = -2
  3. x+y2z=4x + y - 2z = 4

To determine if this system has no solution or infinitely many solutions, we can use the concept of ranks of matrices or check the consistency by elimination. Let's use the augmented matrix method, which is robust: The augmented matrix [AB][A|B] for this system is: [211112121124]\left[ \begin{array}{ccc|c} -2 & 1 & 1 & 1 \\ 1 & -2 & 1 & -2 \\ 1 & 1 & -2 & 4 \end{array} \right]

We perform row operations to bring the matrix to row echelon form:

  1. Swap R1R_1 and R2R_2 to get a leading 1: [121221111124]\left[ \begin{array}{ccc|c} 1 & -2 & 1 & -2 \\ -2 & 1 & 1 & 1 \\ 1 & 1 & -2 & 4 \end{array} \right]
  2. Perform R2R2+2R1R_2 \to R_2 + 2R_1 and R3R3R1R_3 \to R_3 - R_1 to create zeros below the leading 1 in the first column: [121203330336]\left[ \begin{array}{ccc|c} 1 & -2 & 1 & -2 \\ 0 & -3 & 3 & -3 \\ 0 & 3 & -3 & 6 \end{array} \right]
  3. Divide R2R_2 by 3-3 to get a leading 1: [121201110336]\left[ \begin{array}{ccc|c} 1 & -2 & 1 & -2 \\ 0 & 1 & -1 & 1 \\ 0 & 3 & -3 & 6 \end{array} \right]
  4. Perform R3R33R2R_3 \to R_3 - 3R_2 to create a zero below the leading 1 in the second column: [121201110003]\left[ \begin{array}{ccc|c} 1 & -2 & 1 & -2 \\ 0 & 1 & -1 & 1 \\ 0 & 0 & 0 & 3 \end{array} \right]

Now, let's interpret the final row echelon form: The last row of the augmented matrix corresponds to the equation 0x+0y+0z=30x + 0y + 0z = 3, which simplifies to 0=30 = 3. This is a contradiction.

A contradiction implies that the system of equations has no solution. In terms of rank, the rank of the coefficient matrix AA (ignoring the last column) is rank(A)=2rank(A)=2 (as there are two non-zero rows: (121)\begin{pmatrix} 1 & -2 & 1 \end{pmatrix} and (011)\begin{pmatrix} 0 & 1 & -1 \end{pmatrix}). The rank of the augmented matrix [AB][A|B] is rank([AB])=3rank([A|B])=3 (as all three rows are non-zero: (1212)\begin{pmatrix} 1 & -2 & 1 & -2 \end{pmatrix}, (0111)\begin{pmatrix} 0 & 1 & -1 & 1 \end{pmatrix}, and (0003)\begin{pmatrix} 0 & 0 & 0 & 3 \end{pmatrix}). Since rank(A)rank([AB])rank(A) \neq rank([A|B]), the system is inconsistent and has no solution.

Practice More Matrices & Determinants Questions

View All Questions