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

Question

The greatest value of c \in R for which the system of linear equations x – cy – cz = 0 cx – y + cz = 0 cx + cy – z = 0 has a non-trivial solution, is :

Options

Solution

1. Key Concept: Non-Trivial Solutions for Homogeneous Systems

For a system of linear equations to have a non-trivial solution (meaning, a solution where not all variables are zero), a fundamental condition must be met. Specifically, for a homogeneous system of linear equations (where all constant terms are zero), such as:

{a1x+b1y+c1z=0a2x+b2y+c2z=0a3x+b3y+c3z=0\begin{cases} a_1x + b_1y + c_1z = 0 \\ a_2x + b_2y + c_2z = 0 \\ a_3x + b_3y + c_3z = 0 \end{cases}

the system possesses non-trivial solutions if and only if the determinant of its coefficient matrix is equal to zero. If the determinant is non-zero, the only solution is the trivial solution (x=0,y=0,z=0x=0, y=0, z=0).

2. Forming the Coefficient Matrix

First, let's write down the given system of linear equations:

  1. xcycz=0x - cy - cz = 0
  2. cxy+cz=0cx - y + cz = 0
  3. cx+cyz=0cx + cy - z = 0

We can represent this system in matrix form as AX=OAX = O, where AA is the coefficient matrix, XX is the column vector of variables (x,y,z)T(x, y, z)^T, and OO is the zero vector. The coefficient matrix AA is formed by taking the coefficients of x,y,x, y, and zz from each equation:

A=(1ccc1ccc1)A = \begin{pmatrix} 1 & -c & -c \\ c & -1 & c \\ c & c & -1 \end{pmatrix}

3. Setting up the Determinant Equation

As established by the key concept, for the system to have a non-trivial solution, the determinant of the coefficient matrix AA must be zero. So, we set det(A)=0\det(A) = 0:

1ccc1ccc1=0\left| \begin{matrix} 1 & -c & -c \\ c & -1 & c \\ c & c & -1 \end{matrix} \right| = 0

4. Step-by-Step Determinant Expansion

Now, we expand the 3×33 \times 3 determinant. We'll use the cofactor expansion method along the first row for clarity. The formula for a 3×33 \times 3 determinant abcdefghi\left| \begin{smallmatrix} a & b & c \\ d & e & f \\ g & h & i \end{smallmatrix} \right| is a(eifh)b(difg)+c(dheg)a(ei - fh) - b(di - fg) + c(dh - eg).

Applying this to our determinant:

1((1)(1)(c)(c))(c)((c)(1)(c)(c))+(c)((c)(c)(1)(c))=01 \cdot ((-1)(-1) - (c)(c)) - (-c) \cdot ((c)(-1) - (c)(c)) + (-c) \cdot ((c)(c) - (-1)(c)) = 0

Let's simplify each term:

  • First term: 1(1c2)=1c21 \cdot (1 - c^2) = 1 - c^2
    • Explanation: We multiply the element 11 by the determinant of the 2×22 \times 2 submatrix obtained by removing its row and column.
  • Second term: (c)(cc2)=c(cc2)=c2c3- (-c) \cdot (-c - c^2) = c(-c - c^2) = -c^2 - c^3
    • Explanation: We multiply the element c-c by the determinant of its corresponding 2×22 \times 2 submatrix, and then subtract this product (due to the sign pattern of the cofactor expansion, which is +++++\begin{smallmatrix} + & - & + \\ - & + & - \\ + & - & + \end{smallmatrix}).
  • Third term: c(c2+c)=c3c2-c \cdot (c^2 + c) = -c^3 - c^2
    • Explanation: We multiply the element c-c by the determinant of its corresponding 2×22 \times 2 submatrix, and then add this product.

Combining these simplified terms, we get:

(1c2)+(c2c3)+(c3c2)=0(1 - c^2) + (-c^2 - c^3) + (-c^3 - c^2) = 0

5. Algebraic Simplification and Factorization

Now, we combine like terms to simplify the polynomial equation in cc:

1c2c2c3c3c2=01 - c^2 - c^2 - c^3 - c^3 - c^2 = 0 13c22c3=01 - 3c^2 - 2c^3 = 0

Rearranging the terms in descending powers of cc:

2c33c2+1=0-2c^3 - 3c^2 + 1 = 0

Multiply by 1-1 to make the leading coefficient positive (optional, but often makes factorization easier):

2c3+3c21=02c^3 + 3c^2 - 1 = 0

This is a cubic polynomial equation. To find its roots, we can try to factor it. A common strategy for cubic polynomials in competitive exams is to test for simple integer or rational roots using the Rational Root Theorem. We can test c=±1,±1/2c = \pm 1, \pm 1/2.

Let's test c=1c = -1: 2(1)3+3(1)21=2(1)+3(1)1=2+31=02(-1)^3 + 3(-1)^2 - 1 = 2(-1) + 3(1) - 1 = -2 + 3 - 1 = 0. Since c=1c = -1 is a root, (c(1))(c - (-1)), which is (c+1)(c+1), is a factor of the polynomial.

Now, we can perform polynomial division or synthetic division to find the other factor(s). Dividing 2c3+3c212c^3 + 3c^2 - 1 by (c+1)(c+1):

(2c3+3c21)÷(c+1)=2c2+c1(2c^3 + 3c^2 - 1) \div (c+1) = 2c^2 + c - 1

So, the equation becomes:

(c+1)(2c2+c1)=0(c+1)(2c^2 + c - 1) = 0

Next, we factor the quadratic term 2c2+c12c^2 + c - 1. We can use the splitting the middle term method: 2c2+2cc1=2c(c+1)1(c+1)=(2c1)(c+1)2c^2 + 2c - c - 1 = 2c(c+1) - 1(c+1) = (2c-1)(c+1).

Substituting this back into the equation:

(c+1)(2c1)(c+1)=0(c+1)(2c-1)(c+1) = 0

This can be written more compactly as:

(c+1)2(2c1)=0(c+1)^2 (2c-1) = 0

6. Finding the Values of c

From the factored form (c+1)2(2c1)=0(c+1)^2 (2c-1) = 0, we can find the possible values of cc that satisfy the equation:

  • c+1=0c=1c+1 = 0 \Rightarrow c = -1 (this root has a multiplicity of 2)
  • 2c1=02c=1c=122c-1 = 0 \Rightarrow 2c = 1 \Rightarrow c = \frac{1}{2}

So, the values of cc for which the system has a non-trivial solution are c=1c = -1 and c=12c = \frac{1}{2}.

7. Identifying the Greatest Value

We are asked for the greatest value of cc. Comparing the two values:

  • c1=1c_1 = -1
  • c2=12c_2 = \frac{1}{2}

Clearly, 12\frac{1}{2} is greater than 1-1.

Therefore, the greatest value of cc is 12\frac{1}{2}.

8. Tips and Common Mistakes

  • Sign Errors: Be extremely careful with signs when expanding determinants, especially with the negative terms. A common mistake is forgetting the negative sign in front of the second term in the 3×33 \times 3 determinant expansion.
  • Algebraic Simplification: Ensure careful algebraic manipulation when combining terms and factoring polynomials. Double-check your work, especially when dealing with cubic equations.
  • Factoring Cubics: For cubic polynomials in JEE problems, try testing small integer roots like ±1,±2\pm 1, \pm 2 or simple rational roots like ±1/2,±1/3\pm 1/2, \pm 1/3. This often leads to a quick factorization.
  • Understanding "Non-trivial": Remember that "non-trivial solution" for a homogeneous system always means the determinant of the coefficient matrix must be zero. If the system were non-homogeneous, the conditions for unique, no, or infinite solutions would be different (using Cramer's rule or rank method).

9. Summary and Key Takeaway

The problem demonstrates a core concept in linear algebra: a homogeneous system of linear equations has non-trivial solutions if and only if the determinant of its coefficient matrix is zero. The process involves:

  1. Constructing the coefficient matrix.
  2. Setting its determinant to zero.
  3. Carefully expanding and simplifying the determinant to form a polynomial equation.
  4. Solving the polynomial equation to find the possible values of the unknown parameter (cc in this case).
  5. Finally, selecting the required value (the greatest in this question). Mastery of determinant calculation and polynomial factorization is crucial for such problems.

Practice More Matrices & Determinants Questions

View All Questions