1導入
この講義で重要なのは、連立一次方程式を、係数だけを並べた行列の問題へ変換することである。
掃き出し法は、方程式そのものではなく、係数の並びを操作する方法である。そのため、まず方程式と行列の対応を固定する必要がある。
1Introduction
The essential point of this lecture is to convert a system of linear equations into a problem about a matrix行列ぎょうれつ containing only its coefficients係数けいすう.
Gaussian elimination掃はき出だし法ほう is a method for operating on the arrangement of coefficients, not on the written equations themselves. Therefore the correspondence between equations and matrices must be fixed first.
2用語ようごと定義ていぎ
係数行列けいすうぎょうれつCoefficient matrix とは、連立一次方程式れんりついちじほうていしきsystem of linear equationsの左辺さへんleft-hand sideの係数けいすうcoefficientを並ならべた行列ぎょうれつmatrixである。
拡大係数行列かくだいけいすうぎょうれつAugmented matrix とは、係数行列けいすうぎょうれつcoefficient matrixに右辺うへんright-hand sideの列れつcolumnを加くわえた行列ぎょうれつmatrixである。
2Terms and definitions
A coefficient matrix係数行列けいすうぎょうれつ is the matrix行列ぎょうれつ formed by arranging the coefficients係数けいすう on the left-hand side of a system of linear equations連立一次方程式れんりついちじほうていしき.
An augmented matrix拡大係数行列かくだいけいすうぎょうれつ is the matrix obtained by adjoining the right-hand side右辺うへん column to the coefficient matrix係数行列けいすうぎょうれつ.
4直感的ちょっかんてきな説明せつめい
方程式ほうていしきの文字もじを毎回まいかい記述きじゅつすると、操作そうさoperationの本質ほんしつを把握はあくしにくい。実際じっさいに変化へんかするのは、未知数みちすうunknownの係数けいすうcoefficientと右辺うへんright-hand sideである。そこで、係数けいすうcoefficientだけを抽出ちゅうしゅつして表ひょうにする。
拡大係数行列かくだいけいすうぎょうれつaugmented matrixは、左辺さへんleft-hand sideの係数けいすうcoefficientと右辺うへんright-hand sideを同時どうじに追跡ついせきするための表記ひょうきである。
4Intuitive explanation
If the variable symbols are written out every time, it becomes harder to see the essential operation. What actually changes is the list of coefficients係数けいすう and the right-hand side右辺うへん. So we extract only the coefficients and place them in a table.
The augmented matrix拡大係数行列かくだいけいすうぎょうれつ is notation for tracking the left-hand side coefficients and the right-hand side simultaneously.
5厳密げんみつな説明せつめい
連立一次方程式れんりついちじほうていしきsystem of linear equations
\begin{cases}
2x+y=5\\
x-3y=-1
\end{cases}\begin{cases}
2x+y=5\\
x-3y=-1
\end{cases}
は
\begin{pmatrix}2&1\\1&-3\end{pmatrix}
\begin{pmatrix}x\\y\end{pmatrix}
=
\begin{pmatrix}5\\-1\end{pmatrix}
と書かける。つまり
A=\begin{pmatrix}2&1\\1&-3\end{pmatrix},\qquad
x=\begin{pmatrix}x\\y\end{pmatrix},\qquad
b=\begin{pmatrix}5\\-1\end{pmatrix}
である。拡大係数行列かくだいけいすうぎょうれつaugmented matrixは
\left(\begin{array}{cc|c}
2&1&5\\
1&-3&-1
\end{array}\right)\left(\begin{array}{cc|c}
2&1&5\\
1&-3&-1
\end{array}\right)
である。
5Precise explanation
The system of linear equations連立一次方程式れんりついちじほうていしき
\begin{cases}
2x+y=5\\
x-3y=-1
\end{cases}\begin{cases}
2x+y=5\\
x-3y=-1
\end{cases}
can be written as
\begin{pmatrix}2&1\\1&-3\end{pmatrix}
\begin{pmatrix}x\\y\end{pmatrix}
=
\begin{pmatrix}5\\-1\end{pmatrix}
Thus
A=\begin{pmatrix}2&1\\1&-3\end{pmatrix},\qquad
x=\begin{pmatrix}x\\y\end{pmatrix},\qquad
b=\begin{pmatrix}5\\-1\end{pmatrix}
The augmented matrix拡大係数行列かくだいけいすうぎょうれつ is
\left(\begin{array}{cc|c}
2&1&5\\
1&-3&-1
\end{array}\right)\left(\begin{array}{cc|c}
2&1&5\\
1&-3&-1
\end{array}\right)
6具体例ぐたいれい
\begin{cases}
x+2y-z=0\\
3x-y+4z=7
\end{cases}\begin{cases}
x+2y-z=0\\
3x-y+4z=7
\end{cases}
では、係数行列けいすうぎょうれつcoefficient matrixは
A=\begin{pmatrix}1&2&-1\\3&-1&4\end{pmatrix}
であり、拡大係数行列かくだいけいすうぎょうれつaugmented matrixは
\left(\begin{array}{ccc|c}
1&2&-1&0\\
3&-1&4&7
\end{array}\right)\left(\begin{array}{ccc|c}
1&2&-1&0\\
3&-1&4&7
\end{array}\right)
である。未知数みちすうunknownが 3 個こで方程式ほうていしきが 2 本ほんなので、A は 2\times3 行列ぎょうれつmatrixになる。
6Worked example
For
\begin{cases}
x+2y-z=0\\
3x-y+4z=7
\end{cases}\begin{cases}
x+2y-z=0\\
3x-y+4z=7
\end{cases}
the coefficient matrix係数行列けいすうぎょうれつ is
A=\begin{pmatrix}1&2&-1\\3&-1&4\end{pmatrix}
and the augmented matrix拡大係数行列かくだいけいすうぎょうれつ is
\left(\begin{array}{ccc|c}
1&2&-1&0\\
3&-1&4&7
\end{array}\right)\left(\begin{array}{ccc|c}
1&2&-1&0\\
3&-1&4&7
\end{array}\right)
There are three unknowns未知数みちすう and two equations, so A is a 2\times3 matrix行列ぎょうれつ.
9最終形さいしゅうけい
\boxed{Ax=b}
\boxed{\left(A\mid b\right)\text{ が拡大係数行列である}}
9Final forms
\boxed{Ax=b}
\boxed{\left(A\mid b\right)\text{ is the augmented matrix}}