Rules for matrix operations
A * B = C
1.regular way
The entry in row i and column j of AB is (row i of A) dot product(column j of B)

2.column way
every column of c is combination of the columns of A

3.each row of c is combination of the rows of B

4.block way
MIT线性代数笔记-第三讲

inverse
MIT线性代数笔记-第三讲

MIT线性代数笔记-第三讲

calculating A by Gauss-Jordan(solve 2 equations at once)
MIT线性代数笔记-第三讲
MIT线性代数笔记-第三讲

步骤的关键是利用E[AI] = [IA]
也就是有一个进行elimination的转换矩阵E,E * A = I,那么I * E必定为A的逆

MIT线性代数笔记-第三讲

MIT线性代数笔记-第三讲

相关文章:

  • 2021-05-14
  • 2021-09-26
  • 2021-04-13
  • 2021-06-08
  • 2021-05-21
  • 2022-01-21
  • 2021-12-10
  • 2021-05-03
猜你喜欢
  • 2021-09-27
  • 2021-05-20
  • 2021-05-11
  • 2021-11-24
  • 2021-11-09
  • 2021-10-16
  • 2021-05-11
相关资源
相似解决方案