Matrix Input
Result
Enter matrix values and click Compute Nullity
Compute the nullity (dimension of the null space) of a matrix. Row reduce to RREF, identify free variables, find null space basis vectors, and verify rank + nullity = n.
rank(A) + nullity(A) = n (cols)
The null space (kernel) of A is the set of all vectors x such that Ax = 0. Its dimension is the nullity. Each free variable in RREF corresponds to one basis vector of the null space.
To find a basis: for each free variable, set it to 1 and all other free variables to 0, then back-substitute for pivot variables.
"The null space connects linear systems, linear independence, and the geometry of linear maps. Let's build real intuition together."