Skip to content

Update chapter03.ipynb #23

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion chapter03.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"\n",
"观察这个方阵,我们如果用另一个矩阵乘$A$,则得到的结果矩阵中的每一列应该都是$\\begin{bmatrix}1\\\\2\\end{bmatrix}$的倍数,所以我们不可能从$AB$的乘积中得到单位矩阵$I$。\n",
"\n",
"另一种判定方法,如果$A$乘以任意非零向量能够得到$0$向量,则矩阵$A$不可逆,即使用$Ax=0$判定。我们来用上面的矩阵为例:$\\begin{bmatrix}1&2\\\\3&6\\end{bmatrix}\\begin{bmatrix}3\\\\-1\\end{bmatrix}=\\begin{bmatrix}0\\\\0\\end{bmatrix}$。\n",
"另一种判定方法,如果$A$乘以任意非零向量能够得到$0$向量,则矩阵$A$不可逆,即使用$Ax=0$判定。我们来用上面的矩阵为例:$\\begin{bmatrix}1&3\\\\2&6\\end{bmatrix}\\begin{bmatrix}3\\\\-1\\end{bmatrix}=\\begin{bmatrix}0\\\\0\\end{bmatrix}$。\n",
"\n",
"证明:如果对于非零的$x$仍有$Ax=0$,而$A$有逆$A^{-1}$,则$A^{-1}Ax=0$,即$x=0$,与题设矛盾,得证。\n",
"\n",
Expand Down