Question
Given two matrices and , when can we add them, multiply them, and find their inverses? State all necessary conditions with examples.
(CBSE 12 + JEE Main — theory + MCQ)
Solution — Step by Step
is defined ONLY when and have the same order (same number of rows AND columns).
If is and is : addition is possible, result is .
If is and is : addition is NOT possible.
is defined when the number of columns of equals the number of rows of .
If is and is : multiplication is possible, result is .
If is and is : exists and is .
Note: may exist even when does not. And even if both exist, generally .
exists ONLY when:
- is a square matrix ()
- (determinant is non-zero, i.e., is non-singular)
If , the matrix is singular and has no inverse.
Formula:
Let
, so inverse exists.
flowchart TD
A["Matrix Operation Required"] --> B{"Which operation?"}
B -- Addition --> C{"Same order m×n?"}
C -- Yes --> D["Add element-wise. Result: m×n"]
C -- No --> E["NOT POSSIBLE"]
B -- Multiplication AB --> F{"Cols of A = Rows of B?"}
F -- Yes --> G["Multiply. Result: rows_A × cols_B"]
F -- No --> E
B -- Inverse --> H{"Is A square?"}
H -- No --> E
H -- Yes --> I{"Is det A ≠ 0?"}
I -- Yes --> J["Inverse exists: adj(A)/det(A)"]
I -- No --> K["Singular — no inverse"]
Why This Works
Matrix addition requires same dimensions because we add corresponding elements — if the matrices have different sizes, there is no “corresponding element” for every position.
Matrix multiplication requires columns of = rows of because each entry of is computed as a dot product of a row of with a column of . These vectors must have the same length for the dot product to work.
The inverse exists only for square, non-singular matrices because inverting means “undoing” the transformation. A singular matrix squishes space into a lower dimension (determinant = 0), losing information — there is no way to undo that.
Alternative Method
For matrices, there is a shortcut for the inverse. For : swap and , negate and , divide by . Result: . This is faster than computing adj separately.
Common Mistake
Students assume that if exists, then also exists. This is false. If is and is , then is but requires 5 columns in to match 2 rows of — which fails since has 3 rows, not 2. Always check dimensions before multiplying.