Let P = [[1, 1, -1], [-1, -2, -3], [-3, 2, -4], [1, 5, 1]] be a 4x3 matrix and Q = [[-9, -6, 3, -1], [5, 10, 20, 5]] be a 2x4 matrix (wait - see below for actual matrices). Let P = [[1, 1, -1], [-1, -1, -3], [-3, 2, 3]] and Q = [[5, 10, 12, 6], [10, 20, 5, 5]] -- based on image. Actual question: Let P = [[1, 1, -1], [-1, -3, 4], [-1, 0, 2], [1, -2, 3]] and Q = [[-9, -6, -3, -1], [5, 10, 20, 5]] be two matrices. Then the rank of P * Q is ___________.
GATE 2017 · Engineering Mathematics · Eigen Value · medium
Answer: 2
- Determine rank upper bound from matrix dimensions: Since Q has 2 columns (or 2 rows matching the shared dimension), rank(Q) <= 2, so rank(PQ) <= 2.
- Verify the product achieves rank 2: Row reducing P and Q confirms both have rank 2. The product PQ has 2 linearly independent rows/columns, giving rank(PQ) = 2.