Bird
0
0

Given A = [1 2; 3 4] and C = [5 6; 7 8], what is the result of inv(A*C)?

hard📝 Application Q9 of 15
MATLAB - Linear Algebra

Given A = [1 2; 3 4] and C = [5 6; 7 8], what is the result of inv(A*C)?

Ainv(A*C) does not exist
Binv(C)*inv(A)
Cinv(A)*inv(C)
Dinv(A) + inv(C)
Step-by-Step Solution
Solution:
  1. Step 1: Recall inverse of product property

    For invertible matrices A and C, inv(A*C) = inv(C)*inv(A).
  2. Step 2: Check invertibility

    Both A and C are square and invertible (determinants non-zero), so property applies.
  3. Final Answer:

    inv(C)*inv(A) -> Option B
  4. Quick Check:

    inv(A*C) = inv(C)*inv(A) [OK]
Quick Trick: Inverse of product reverses order: inv(AB) = inv(B)inv(A) [OK]
Common Mistakes:
  • Assuming inv(A*C) = inv(A)*inv(C)
  • Adding inverses instead of multiplying
  • Ignoring matrix invertibility

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More MATLAB Quizzes