Problem: Find the rank and nullities of the following matrices, and find the bases of the range space and the Null space.
\( A=\begin {pmatrix} 2 & 3 & 3 & 4 \\ 0 & -1 & -2 & 2 \\ 0 & 0 & 0 & 1 \end {pmatrix} \)
Maple restart; A:=Matrix([[2,3,3,4],[0,-1,-2,2],[0,0,0,1]]); LinearAlgebra:-Rank(A); LinearAlgebra:-ColumnDimension(A)-LinearAlgebra:-Rank(A); LinearAlgebra:-NullSpace(A)
|
3 1 [3/2 -2 1 0] |