高校数学 数学C 行列

1. 行列の基本と用語

(1) 行列とは

数を「行(row)」と「列(column)」で長方形状に並べたものを行列という。 例えば、2行3列の行列: \[ A = \begin{pmatrix} a_{11} & a_{12} & a_{13} \\ a_{21} & a_{22} & a_{23} \end{pmatrix} \] これは「2×3行列」と呼ぶ。 :contentReference[oaicite:0]{index=0}

(2) 成分・サイズ・正方行列

(3) 零行列・単位行列

2. 行列の演算:和・差・定数倍

(1) 和と差

二つの行列 \(A=(a_{ij}), B=(b_{ij})\) が同じサイズ (m×n) のとき、 \[ A + B = (a_{ij} + b_{ij}),\quad A - B = (a_{ij} - b_{ij}) \] が定義される。 :contentReference[oaicite:1]{index=1}

(2) 定数倍

行列 \(A=(a_{ij})\) に定数 \(k\) を掛けると \[ kA = (k a_{ij}) \] となる。 :contentReference[oaicite:2]{index=2}

(3) 演算の性質

3. 行列の積

(1) 定義

\(A\) を m×n 行列、\(B\) を n×l 行列とすると、積 \(C = AB\) は m×l 行列で、各成分 \[ c_{ij} = \sum_{k=1}^{n} a_{ik} b_{kj} \] で定義される。 :contentReference[oaicite:3]{index=3}

(2) 掛け算可能な条件

「左の列数 = 右の行数」である必要がある。サイズが一致しなければ積は定義されない。 :contentReference[oaicite:4]{index=4}

(3) 性質(非可換・結合法則)

4. 逆行列・行列式(正方行列の場合)

(1) 行列式(2×2 の例)

2×2 正方行列 \[ A = \begin{pmatrix} a & b \\ c & d \end{pmatrix} \] の行列式は \[ |A| = ad - bc \] である。 :contentReference[oaicite:6]{index=6}

(2) 逆行列の定義

n×n の正方行列 \(A\) に対して、ある行列 \(A^{-1}\) が存在し、 \[ AA^{-1} = A^{-1}A = I_n \] を満たすとき、これを \(A\) の逆行列という。

(3) 行列式と逆行列の関係

正方行列 \(A\) が逆行列をもつための必要十分条件は \(|A| \neq 0\)。 また、2×2 の場合 \[ A^{-1} = \frac{1}{ad-bc} \begin{pmatrix} d & -b \\ -c & a \end{pmatrix} \] である。 :contentReference[oaicite:7]{index=7}

5. 連立一次方程式と行列

(1) 行列を用いた表現

連立一次方程式 \[ \begin{cases} a_{11}x + a_{12}y = b_1 \\ a_{21}x + a_{22}y = b_2 \end{cases} \] を行列形式で \[ A \begin{pmatrix} x \\ y \end{pmatrix} = \begin{pmatrix} b_1 \\ b_2 \end{pmatrix},\quad A = \begin{pmatrix} a_{11} & a_{12} \\ a_{21} & a_{22} \end{pmatrix} \] のように書くことができる。

(2) 逆行列を使った解法

\(|A| \neq 0\) のとき、 \[ \begin{pmatrix} x \\ y \end{pmatrix} = A^{-1} \begin{pmatrix} b_1 \\ b_2 \end{pmatrix} \] として解を求める。 :contentReference[oaicite:8]{index=8}

6. 応用:図形・線形写像(入門レベル)

(1) 回転行列・拡大縮小行列

2×2 の正方行列は、平面上の点を別の点へ移す「線形変換」を表すことがある。 例えば角度 θ の回転を表す回転行列: \[ R(\theta) = \begin{pmatrix} \cos\theta & -\sin\theta \\ \sin\theta & \cos\theta \end{pmatrix} \] など。 :contentReference[oaicite:9]{index=9}

(2) 行列 × ベクトルによる点の移動

点 \((x, y)\) を行列 \(A\) によって移すと \[ A \begin{pmatrix} x \\ y \end{pmatrix} \] によって新しい点が得られる。図形の拡大・縮小・回転・平行移動(平行移動は別の手法)に応用される。 :contentReference[oaicite:10]{index=10}

7. 行列でよく出る問題の型

参考URL

 

🔝高校数学 目次に戻る