标签:style http io ar color os sp for strong
“矩阵代数初步”(Introduction to MATRIX ALGEBRA)课程由Prof. A.K.Kaw(University of South Florida)设计并讲授。
第1章课程讲义下载(PDF)
Summary
Selected Problems
1. Given $$A=\begin{bmatrix}6& 2& 3& 9\\ 0& 1& 2& 3\\ 0& 0& 4& 5\\ 0& 0& 0& 6 \end{bmatrix}$$ then $[A]$ is a ( ) matrix.
Solution:
This is an upper triangular matrix.
2. A square matrix $[A]$ is lower triangular if ( ).
Solution:
Lower triangular matrix: $a_{ij} = 0$ for $j > i$.
3. Given $$A = \begin{bmatrix} 12.3& -12.3& 20.3\\ 11.3& -10.3& -11.3\\ 10.3& -11.3& -12.3\end{bmatrix},\ B = \begin{bmatrix} 2& 4\\ -5& 6\\ 11& -20\end{bmatrix}$$ then if $[C] = [A]\cdot[B]$, then $c_{31}= ( )$.
Solution:
$$c_{31} = \begin{bmatrix}10.3 & -11.3 &-12.3\end{bmatrix}\cdot \begin{bmatrix}2\\ -5\\ 11 \end{bmatrix}$$ $$= 10.3\times2 + (-11.3)\times(-5) + (-12.3)\times11= -58.2$$
4. The following system of equations has ( ) solutions. $$\begin{cases}x + y =2\\ 6x + 6y=12 \end{cases}$$
Solution:
$x=2-y$ where $y$ is arbitrary. Thus it has infinite solutions.
5. Consider there are only two computer companies in a country. The companies are named Dude and Imac. Each year, Dude keeps ${1/5}^{th}$ of its customers, while the rest switch to Imac. Each year, Imac keeps ${1/3}^{rd}$ of its customers, while the rest switch to Dude. If in 2003, Dude had ${1/6}^{th}$ of the market and Imac had ${5/6}^{th}$ of the market, what will be the share of Dude computers when the market becomes stable?
Solution:
Since we want when the market is stable, the market share should not change from year to year. Let $D$ and $M$ denote the market of Dude and Imac, respectively. Thus we have $$\begin{cases} D_n = {1\over5}D + {2\over3}M\\ M_n= {4\over5}D + {1\over3}M\end{cases}\Rightarrow \begin{bmatrix}D_n\\ M_n \end{bmatrix} = \begin{bmatrix}{1\over5} & {2\over3}\\ {4\over5}& {1\over3} \end{bmatrix}\cdot \begin{bmatrix}D\\ M\end{bmatrix}$$ $D_n = D$ and $M_n=M$ eventually. That is $$\begin{cases}{4\over5}D - {2\over3} M=0 \\ D+M=1\end{cases}\Rightarrow\begin{cases}D = {5\over11}\\ M= {6\over11} \end{cases}$$ Hence the final market share of Dude will be $\displaystyle{5\over11}$.
6. Three kids - Jim, Corey and David receive an inheritance of \$2,253,453. The money is put in three trusts but is not divided equally to begin with. Corey‘s trust is three times that of David‘s because Corey made an A in Dr. Kaw‘s class. Each trust is put in an interest generating investment. The three trusts of Jim, Corey and David pays an interest of 6\%, 8\%, 11\%, respectively. The total interest of all the three trusts combined at the end of the first year is \$190,740.57. The equations to find the trust money of Jim (J), Corey (C) and David (D) in a matrix form is ( ).
Solution:
From the given conditions, we have $$\begin{cases}J + C +D =2253453\\ C=3D\\ 0.06J + 0.08C + 0.11D = 190740.57\end{cases}$$ $$\Rightarrow \begin{cases}J + C +D =2253453\\ C-3D = 0\\ 0.06J + 0.08C + 0.11D = 190740.57\end{cases}$$ $$\Rightarrow \begin{bmatrix}1& 1& 1\\ 0& 1& -3\\ 0.06& 0.08& 0.11 \end{bmatrix}\cdot \begin{bmatrix}J\\ C\\ D \end{bmatrix} = \begin{bmatrix}2253453\\ 0\\ 190740.57 \end{bmatrix}$$
7. Which of the following matrices are strictly diagonally dominant? $$A = \begin{bmatrix}15 &6 &7\\ 2 &-4 &2\\ 3& 2 &6 \end{bmatrix},\ B = \begin{bmatrix}5 &6 &7\\ 2 &-4 &2\\ 3& 2 &-5 \end{bmatrix},\ C = \begin{bmatrix}5&3 &2\\ 6 &-8 &2\\ 7& -5 &12 \end{bmatrix}. $$
Solution:
For $A$, $$\begin{cases}|a_{11}|=15 > |a_{12}| + |a_{13}| = 13\\ |a_{22}| = 4 = |a_{21}| + |a_{23}| = 4\\ |a_{33}| = 6 > |a_{31}| + |a_{32}| = 5 \end{cases}$$ So it is strictly diagonal dominant. For $B$, $$|b_{11}| = 5 < |b_{12}| + |b_{13}| = 13$$ So it is not strictly diagonal dominant. For $C$, $$\begin{cases}|c_{11}|=5 = |c_{12}| + |c_{13}| = 5\\ |c_{22}| = 8 = |c_{21}| + |c_{23}| = 8\\ |c_{33}| = 12 = |c_{31}| + |c_{32}| = 12 \end{cases}$$ So it is not strictly diagonal dominant.
A.Kaw矩阵代数初步 学习笔记: 1. Introduction
标签:style http io ar color os sp for strong
原文地址:http://www.cnblogs.com/zhaoyin/p/4129477.html