- Hands-On Mathematics for Deep Learning
- Jay Dawani
- 282字
- 2021-06-18 18:55:09
Inverse matrices
Let's revisit the concept of inverse matrices and go a little more in depth with them. We know from earlier that AA-1 = I, but not every matrix has an inverse.
There are, again, some rules we must follow when it comes to finding the inverses of matrices, as follows:
- The inverse only exists if, through the process of upper or lower triangular factorization, we obtain all the pivot values on the diagonal.
- If the matrix is invertible, it has only one unique inverse matrix—that is, if AB = I and AC = I, then B = C.
- If A is invertible, then to solve Av = b we multiply both sides by A-1 and get AA-1v = A-1b, which finally gives us = A-1b.
- If v is nonzero and b = 0, then the matrix does not have an inverse.
- 2 x 2 matrices are invertible only if ad - bc ≠ 0, where the following applies:

And ad - bc is called the determinant of A. A-1 involves dividing each element in the matrix by the determinant.
- Lastly, if the matrix has any zero values along the diagonal, it is non-invertible.
Sometimes, we may have to invert the product of two matrices, but that is only possible when both the matrices are individually invertible (follow the rules outlined previously).
For example, let's take two matrices A and B, which are both invertible. Then, so that
.
Note: Pay close attention to the order of the inverse—it too must follow the order. The left-hand side is the mirror image of the right-hand side.
推薦閱讀
- 數據存儲架構與技術
- 數據產品經理高效學習手冊:產品設計、技術常識與機器學習
- 數據挖掘原理與實踐
- Hands-On Machine Learning with Microsoft Excel 2019
- SQL查詢:從入門到實踐(第4版)
- 跟老男孩學Linux運維:MySQL入門與提高實踐
- Lego Mindstorms EV3 Essentials
- 辦公應用與計算思維案例教程
- Construct 2 Game Development by Example
- 數字IC設計入門(微課視頻版)
- 區塊鏈技術應用與實踐案例
- Access 2016數據庫應用基礎
- 數據挖掘與機器學習-WEKA應用技術與實踐(第二版)
- Learn Selenium
- Scratch Cookbook