Analyzing the Setup
Welcome, future engineers! Today, we are going to dive into the elegant world of matrix algebra. When you are given a matrix A=[1−22−5] and asked to find scalars α and β such that αA2+βA=2I, your first instinct might be to reach for the brute force method.
While calculating A2 manually is a valid path, it is a dangerous one. In the high-stakes environment of the JEE Advanced, time is your most precious resource, and manual matrix multiplication is a breeding ground for silly arithmetic errors.
Instead, let us embrace a more powerful, elegant, and sophisticated tool: the Cayley-Hamilton Theorem.
The Secret Weapon
Cayley-Hamilton
The Cayley-Hamilton Theorem is one of the most beautiful results in linear algebra. It states that every square matrix satisfies its own characteristic equation. This means we do not need to perform tedious matrix multiplications to find A2.
The characteristic equation is defined by the determinant ∣A−λI∣=0, where λ represents the eigenvalues of the matrix. Let us set this up by subtracting λ from the diagonal elements of A:
Now, we expand this 2×2 determinant using the formula ad−bc:
Expanding this carefully, we get:
Combining the like terms, we arrive at the quadratic equation:
The Transformation
Now, we invoke the magic of the Cayley-Hamilton Theorem. Since every square matrix satisfies its own characteristic equation, we can simply replace the scalar λ with the matrix A and the constant term 1 with the identity matrix I.
This gives us the matrix equation:
This is a massive shortcut! We have successfully expressed A2 in terms of A and I without ever performing a single matrix multiplication.
Our goal is to match the form αA2+βA=2I. Let us rearrange our equation:
The target equation has 2I on the right side, but we currently have I. The solution is simple: multiply the entire equation by 2.
The Final Comparison
Now, we compare our derived equation 2A2+8A=2I with the target equation αA2+βA=2I. By comparing the coefficients, it is immediately clear that α=2 and β=8.
The question asks for the sum α+β. Therefore:
And there you have it! We have solved the problem with precision, elegance, and speed. This is the power of understanding the underlying theory rather than just relying on calculation.