Let A be a 4 by 3 matrix, and r(A)=2, and B is an invertible matrix, then r(AB)=______
举一反三
- 用R语言创建一个两行三列,1到6共6个数值的矩阵,正确的代码为( ) A: matrix(1:6,<br/>ncol=3, nrow=2) B: matrix(2,<br/>3,1:6 ) C: matrix(1:6,<br/>col=3, row=2) D: matrix(1:6,<br/>3:2)
- Let A be a 4×4 matrix, the determinant of A is 1/3, and [img=21x20]1803c4e4937ebc3.png[/img] the adjoint matrix of A, then [img=115x27]1803c4e49b725a2.png[/img]=________. A: 1 B: 3 C: 6 D: 9
- R语言中,函数matrix()和Matrix()是两个相同的函数
- 【多选题】执行下列哪些选项中的语句后能得到如下矩阵? 1 1 1 1 1 2 2 2 2 2 3 3 3 3 3 4 4 4 4 4 A. > matrix(c(1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4), nrow=4, ncol=5) B. > matrix(rep(1:4, 5), nrow=4) C. > matrix(rep(1:4, each=5), nrow=4, byrow=TRUE) D. > matrix(1:4, nrow=4, ncol=5)
- If I-AB is invertible, then I-BA is invertible. Where I is the identity matrix, and A is m by n, B is n by m.