markdown
連立一次方程式と拡大係数行列md 79b9c06
lecture/math/linear-algebra/linear-systems-and-augmented-matrices.lecture.n.md
Download PDF

連立一次方程式れんりついちじほうていしきsystem of linear equations拡大係数行列かくだいけいすうぎょうれつaugmented matrix

date2026-07-14document_iddoc_66795f2a78437255531d28c070f75d51description連立一次方程式を係数行列と拡大係数行列へ移す方法を説明し、掃き出し法へ入る前の視点変換を整理する講義である。prerequisites行列の基本演算 / 一次方程式の基本type講義content_typelecturestatusactiverelateddata/lecture/math/linear-algebra/matrix-operations.lecture.n.md / data/lecture/math/linear-algebra/elementary-row-operations.lecture.n.md / data/lecture/math/linear-algebra/linear-systems-and-gaussian-elimination.lecture.n.md / data/lecture/math/linear-algebra/rank-basics.lecture.n.md / data/exercise/math/linear-algebra/elementary-operations-and-linear-systems.exercise.n.md
mathlinear-algebraundergraduatelecture

Systems of linear equations連立一次方程式れんりついちじほうていしき and augmented matrices拡大係数行列かくだいけいすうぎょうれつ

1導入どうにゅう

この講義こうぎ重要じゅうようなのは、連立一次方程式れんりついちじほうていしきsystem of linear equationsを、係数けいすうcoefficientだけをならべた行列ぎょうれつmatrix問題もんだい変換へんかんすることである。

ほうGaussian eliminationは、方程式ほうていしきそのものではなく、係数けいすうcoefficientならびを操作そうさoperationする方法ほうほうである。そのため、まず方程式ほうていしき行列ぎょうれつmatrix対応たいおう固定こていする必要ひつようがある。

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係数行列けいすうぎょうれつ.

3方針ほうしん

Ax=bかたちつくることを目標もくひょうにする。A係数行列けいすうぎょうれつcoefficient matrixx未知数みちすうunknownベクトル、b右辺うへんright-hand sideベクトルである。

data/lecture/math/linear-algebra/matrix-operations.lecture.n.md

3Strategy

The goal is to put the system in the form

Ax=b

Here A is the coefficient matrix係数行列けいすうぎょうれつ, x is the vector of unknowns未知数みちすう, and b is the right-hand side右辺うへん vector.

data/lecture/math/linear-algebra/matrix-operations.lecture.n.md

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}

(211-3)(xy)=(5-1)

ける。つまり

A=(211-3),x=(xy),b=(5-1)

である。拡大係数行列かくだいけいすうぎょうれつaugmented matrix

\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}

can be written as

(211-3)(xy)=(5-1)

Thus

A=(211-3),x=(xy),b=(5-1)

The augmented matrix拡大係数行列かくだいけいすうぎょうれつ is

\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}

では、係数行列けいすうぎょうれつcoefficient matrix

A=(12-13-14)

であり、拡大係数行列かくだいけいすうぎょうれつaugmented matrix

\left(\begin{array}{ccc|c} 1&2&-1&0\\ 3&-1&4&7 \end{array}\right)

である。未知数みちすうunknownが 3 方程式ほうていしきが 2 ほんなので、A2×3 行列ぎょうれつmatrixになる。

6Worked example

For

\begin{cases} x+2y-z=0\\ 3x-y+4z=7 \end{cases}

the coefficient matrix係数行列けいすうぎょうれつ is

A=(12-13-14)

and the augmented matrix拡大係数行列かくだいけいすうぎょうれつ is

\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×3 matrix行列ぎょうれつ.

7よくある誤解ごかい

  • 係数行列けいすうぎょうれつcoefficient matrix右辺うへんright-hand sideふくめない。右辺うへんright-hand sideまでふくめたものが拡大係数行列かくだいけいすうぎょうれつaugmented matrixである。
  • 未知数みちすうunknown順序じゅんじょ途中とちゅう変更へんこうしてはならない。れつcolumn順序じゅんじょ未知数みちすうunknown順序じゅんじょあらわす。
  • 方程式ほうていしき本数ほんすう未知数みちすうunknown個数こすうおなじとはかぎらない。

7Common misunderstandings

  • The coefficient matrix係数行列けいすうぎょうれつ does not include the right-hand side右辺うへん. The matrix that includes the right-hand side is the augmented matrix拡大係数行列かくだいけいすうぎょうれつ.
  • The order of the unknowns未知数みちすう must not be changed midway. The order of the columns represents the order of the unknowns.
  • The number of equations and the number of unknowns need not be the same.

8どこまで成立せいりつするか

この表記ひょうき一次方程式いちじほうていしきたいして有効ゆうこうである。xyx2 のような非線型ひせんけいnonlinearこうふくまれる場合ばあい係数行列けいすうぎょうれつcoefficient matrixだけでおなじように表現ひょうげんすることはできない。

8Scope of validity

This notation works for linear equations. If nonlinear terms such as xy or x2 appear, the system cannot be represented in the same way by only a coefficient matrix係数行列けいすうぎょうれつ.

9最終形さいしゅうけい

[PARSE ERROR: Undefined("Command(\"boxed\")")]Ax=b
[PARSE ERROR: Undefined("Command(\"boxed\")")](Ab)が拡大係数行列である

9Final forms

[PARSE ERROR: Undefined("Command(\"boxed\")")]Ax=b

[PARSE ERROR: Undefined("Command(\"boxed\")")](Ab)istheaugmentedmatrix

raw .n.md をコピー
loc をコピー (filepath:line ~ line)
copy share link
copy encoded share link
path をコピー
copy share link
copy encoded share link
copy share link
copy encoded share link
タブを全て閉じる