I have intentionally attempted to use the terms from the textbook, to see if I am understanding them correctly(trivial,homogeneous etc..). If anyone see’s I misused them please let me know.
In the vector space of 2×2matrices, M22, determine if the sets below is linearly independent.
library(pracma)
my_matrix <- matrix(c(2,-1,1,3,0,4,-1,2,4,2,1,3,0,0,0,0),nrow=4)
rref(my_matrix)## [,1] [,2] [,3] [,4]
## [1,] 1 0 0 0
## [2,] 0 1 0 0
## [3,] 0 0 1 0
## [4,] 0 0 0 0
#solve(my_matrix)
det(my_matrix)## [1] 0