博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
matrix theory_basic results and techniques_exercise_1.2.10
阅读量:5936 次
发布时间:2019-06-19

本文共 1007 字,大约阅读时间需要 3 分钟。

Find the inverse of each of the following matrices:

1.
\begin{equation}A=
\begin{pmatrix}
1&a&0\\
0&1&0\\
0&b&1\\
\end{pmatrix}
\end{equation}

The determinant of this matrix is 1,so this matrix is invertible.

\begin{equation}
A^{*}=\begin{pmatrix}
A_{11}&A_{21}&A_{31}\\
A_{12}& A_{22}&A_{32}\\
A_{13}&A_{23}&A_{33}\\
\end{pmatrix}=\begin{pmatrix}
1&-a&0\\
0&1&0\\
0&-b&1\\
\end{pmatrix}
\end{equation}
So the inverse matrix is
\begin{equation}
\frac{A^{*}}{|A|}=A^{*}
\end{equation}$\Box$
2.
\begin{equation}B=
\begin{pmatrix}
1&1&0\\
0&1&1\\
0&0&1\\
\end{pmatrix}
\end{equation}
The determinant of this matrix is 1,so this matrix is also invertible.
\begin{equation}
B^{*}=\begin{pmatrix}
1&-1&1\\
0&1&-1\\
0&0&1\\
\end{pmatrix}
\end{equation}So the inverse matrix of $B$ is $B^{*}$.

3.

\begin{equation}
C=\begin{pmatrix}
1&1&0\\
1&1&1\\
0&1&1\\
\end{pmatrix}
\end{equation}
The determinant of $C$ is 0,so this matrix is not invertible.

转载于:https://www.cnblogs.com/yeluqing/archive/2012/12/14/3827967.html

你可能感兴趣的文章
帮助-阅读随笔
查看>>
关闭键盘
查看>>
Quartus 12的TimeQuest Timing Analyzer
查看>>
JavaScript: 代码简洁之道
查看>>
Integer跟int的区别(备份回忆)
查看>>
集合解析
查看>>
sourcetree合并分支
查看>>
详解分布式应用程序协调服务Zookeeper
查看>>
LeetCode 208: Implement Trie (Prefix Tree)
查看>>
zoc license code
查看>>
【转】PreparedStatement的用法
查看>>
Deep Learning(深度学习)学习笔记整理系列之(四)
查看>>
Sass和Compass设计师指南
查看>>
Vijos P1816 统计数字【序列处理】
查看>>
HDU2548 两军交锋【数学计算+水题】
查看>>
HDU3785 寻找大富翁【优先队列】
查看>>
计算最大值和最小值(分治法)
查看>>
UVALive5198 UVA512 Spreadsheet Tracking
查看>>
HDU1228 A + B
查看>>
ArGIS Server 服务的更新
查看>>