Bird
0
0

Given a matrix C of size 4x5 with rank(C) = 3, what is the dimension of its null space? How can you confirm this using MATLAB?

hard📝 Application Q8 of 15
MATLAB - Linear Algebra
Given a matrix C of size 4x5 with rank(C) = 3, what is the dimension of its null space? How can you confirm this using MATLAB?
A3; verify with <code>rank(C)</code>
B2; verify with <code>size(null(C), 2)</code>
C5; verify with <code>size(C, 2)</code>
D4; verify with <code>size(null(C), 1)</code>
Step-by-Step Solution
Solution:
  1. Step 1: Calculate null space dimension

    Dimension of null space = number of columns - rank = 5 - 3 = 2.
  2. Step 2: Verify in MATLAB

    Use null(C) to get null space basis; its number of columns equals nullity.
  3. Step 3: MATLAB command

    size(null(C), 2) returns the null space dimension.
  4. Final Answer:

    2; verify with size(null(C), 2) -> Option B
  5. Quick Check:

    Confirm rank + nullity = number of columns [OK]
Quick Trick: Nullity = columns - rank; check size(null(C), 2) [OK]
Common Mistakes:
  • Confusing rows with columns for nullity
  • Using rank(C) as nullity
  • Checking wrong dimension of null(C)

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More MATLAB Quizzes