0
0
MATLABdata~5 mins

Matrix rank and null space in MATLAB - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is the rank of a matrix?
The rank of a matrix is the number of linearly independent rows or columns it has. It tells us how many dimensions the matrix's data spans.
Click to reveal answer
beginner
What does the null space of a matrix represent?
The null space is the set of all vectors that, when multiplied by the matrix, give the zero vector. It shows directions where the matrix 'flattens' vectors to zero.
Click to reveal answer
beginner
How do you find the rank of a matrix in MATLAB?
Use the command rank(A), where A is your matrix. It returns the number of independent rows or columns.
Click to reveal answer
beginner
How do you find the null space of a matrix in MATLAB?
Use the command null(A). It returns a matrix whose columns form a basis for the null space of A.
Click to reveal answer
intermediate
If a matrix has full rank, what can you say about its null space?
If a matrix has full rank, its null space contains only the zero vector. This means no non-zero vector maps to zero.
Click to reveal answer
What MATLAB command gives the rank of matrix A?
Arank(A)
Bnull(A)
Cdet(A)
Dinv(A)
What does the null space of a matrix contain?
AAll eigenvectors of the matrix
BAll vectors mapped to zero by the matrix
CAll vectors orthogonal to the matrix
DAll vectors with positive entries
If rank(A) = n for an n×n matrix, what is the dimension of the null space?
A1
Bn
C0
Dn-1
Which MATLAB command returns a basis for the null space of A?
Aeig(A)
Brank(A)
Csvd(A)
Dnull(A)
What does a rank less than the number of columns imply about the null space?
ANull space has non-zero vectors
BNull space is empty
CMatrix is invertible
DMatrix is diagonal
Explain in your own words what the rank of a matrix tells us and how to find it in MATLAB.
Think about how many directions the matrix 'covers' without overlap.
You got /3 concepts.
    Describe the null space of a matrix and how MATLAB helps you find it.
    Consider what vectors disappear when multiplied by the matrix.
    You got /3 concepts.