专栏文章
Calculating the Inverse of a Matrix
学习·文化课参与者 1已保存评论 0
文章操作
快速查看文章及其快照的属性,并进行相关操作。
- 当前评论
- 0 条
- 当前快照
- 1 份
- 快照标识符
- @mink4unx
- 此快照首次捕获于
- 2025/12/02 03:43 3 个月前
- 此快照最后确认于
- 2025/12/02 03:43 3 个月前
Calculating the Inverse of a Matrix
Calculating the inverse of a matrix needs at most steps. Wow.
Step 0
Let
be the matrix you want to calculate.
Step 1: Create an Augmented Matrix
Add to the right-hand side of the matrix. In this example, it becomes
Step 2: Calculating the Reduced Row Echelon Form
I hate this step.
Anyway, you want to make the left-hand side of the matrix to be . You can do it through row operations:
- Swap 2 rows.
- Multiply each element in one row by a non-zero constant.
- Add a multiple of another row to one row.
If you don't know how to do that, there are a lot of online resources about it.
Finally, we get
Step 3: The right-hand side of this matrix is the inverse of the original matrix.
So the inverse of the matrix is
Why does it work?
Doing a row operation is actually left-multiplying an elementary matrix. When the left-hand side becomes , the combination of those elementary matrices is because . Since the same operations are done to the right-hand side, it becomes .
相关推荐
评论
共 0 条评论,欢迎与作者交流。
正在加载评论...