## 1. 問題の内容

代数学線形代数線形写像内積外積行列回転
2025/5/23
##

1. 問題の内容

1. 2次元ベクトル $\mathbf{x} = \begin{pmatrix} x \\ y \end{pmatrix}$ に対して、ベクトル $\mathbf{a} = \begin{pmatrix} 3 \\ 4 \end{pmatrix}$ との内積 $\mathbf{a} \cdot \mathbf{x}$ を対応させる線形写像を表す行列を求めます。

2. 3次元ベクトル $\mathbf{x} = \begin{pmatrix} x \\ y \\ z \end{pmatrix}$ に対して、ベクトル $\mathbf{a} = \begin{pmatrix} 2 \\ 1 \\ -2 \end{pmatrix}$ との外積 $\mathbf{a} \times \mathbf{x}$ を対応させる線形写像を表す行列を求めます。さらに、$\mathbf{x} \mapsto \mathbf{a} \times (\mathbf{a} \times \mathbf{x})$ を表す行列を求めます。

3. 空間内に、長さが等しく直交する2つのベクトル $\mathbf{a}, \mathbf{b}$ があるとします。$\mathbf{a}$ を $\mathbf{b}$ の方に $\theta$ 回転したベクトルを $\mathbf{a}, \mathbf{b}, \theta$ で表します。

4. ベクトル $\mathbf{n} = \begin{pmatrix} n_1 \\ n_2 \\ n_3 \end{pmatrix}$ を方向ベクトルとする軸のまわりに、$\theta$ 回転(回転の向きはねじを回転して、$\mathbf{n}$ の向きに進む方向とする)する変換を表す行列を求める公式を作ります。ただし、$\mathbf{n}$ の長さは1であるとします。

##

2. 解き方の手順

### 問題1
内積 ax\mathbf{a} \cdot \mathbf{x}3x+4y3x + 4y と書けます。線形写像 T(x)=3x+4yT(\mathbf{x}) = 3x + 4y を行列で表現するために、基本ベクトル e1=(10)\mathbf{e}_1 = \begin{pmatrix} 1 \\ 0 \end{pmatrix}e2=(01)\mathbf{e}_2 = \begin{pmatrix} 0 \\ 1 \end{pmatrix} の像を計算します。
T(e1)=3(1)+4(0)=3T(\mathbf{e}_1) = 3(1) + 4(0) = 3
T(e2)=3(0)+4(1)=4T(\mathbf{e}_2) = 3(0) + 4(1) = 4
したがって、この線形写像を表す行列は A=(34)A = \begin{pmatrix} 3 & 4 \end{pmatrix} です。
### 問題2
外積 a×x\mathbf{a} \times \mathbf{x} は次のように計算できます。
a×x=(212)×(xyz)=(z+2y2x2z2yx)\mathbf{a} \times \mathbf{x} = \begin{pmatrix} 2 \\ 1 \\ -2 \end{pmatrix} \times \begin{pmatrix} x \\ y \\ z \end{pmatrix} = \begin{pmatrix} z + 2y \\ -2x - 2z \\ 2y - x \end{pmatrix}
この線形写像を表す行列を BB とすると、a×x=Bx\mathbf{a} \times \mathbf{x} = B\mathbf{x} となります。基本ベクトル e1=(100)\mathbf{e}_1 = \begin{pmatrix} 1 \\ 0 \\ 0 \end{pmatrix}, e2=(010)\mathbf{e}_2 = \begin{pmatrix} 0 \\ 1 \\ 0 \end{pmatrix}, e3=(001)\mathbf{e}_3 = \begin{pmatrix} 0 \\ 0 \\ 1 \end{pmatrix} の像を計算します。
a×e1=(021)\mathbf{a} \times \mathbf{e}_1 = \begin{pmatrix} 0 \\ -2 \\ -1 \end{pmatrix}
a×e2=(202)\mathbf{a} \times \mathbf{e}_2 = \begin{pmatrix} 2 \\ 0 \\ 2 \end{pmatrix}
a×e3=(120)\mathbf{a} \times \mathbf{e}_3 = \begin{pmatrix} 1 \\ -2 \\ 0 \end{pmatrix}
したがって、B=(021202120)B = \begin{pmatrix} 0 & 2 & 1 \\ -2 & 0 & -2 \\ -1 & 2 & 0 \end{pmatrix} です。
次に、xa×(a×x)\mathbf{x} \mapsto \mathbf{a} \times (\mathbf{a} \times \mathbf{x}) を表す行列を求めます。これは B(Bx)=B2xB(B\mathbf{x}) = B^2 \mathbf{x} に対応するため、B2B^2 を計算します。
B2=(021202120)(021202120)=(524282425)B^2 = \begin{pmatrix} 0 & 2 & 1 \\ -2 & 0 & -2 \\ -1 & 2 & 0 \end{pmatrix} \begin{pmatrix} 0 & 2 & 1 \\ -2 & 0 & -2 \\ -1 & 2 & 0 \end{pmatrix} = \begin{pmatrix} -5 & 2 & -4 \\ 2 & -8 & -2 \\ -4 & 2 & -5 \end{pmatrix}
### 問題3
a\mathbf{a}b\mathbf{b} の方向に θ\theta 回転したベクトルを a\mathbf{a'} とすると、a,b\mathbf{a}, \mathbf{b} は直交する単位ベクトルなので、a=cos(θ)a+sin(θ)b\mathbf{a'} = \cos(\theta)\mathbf{a} + \sin(\theta)\mathbf{b} となります。
### 問題4
ロドリゲスの回転公式を使用します。n\mathbf{n} を回転軸方向の単位ベクトル、θ\theta を回転角、v\mathbf{v} を回転させるベクトルとすると、回転後のベクトル v\mathbf{v'} は次のように表されます。
v=vcosθ+(n×v)sinθ+n(nv)(1cosθ)\mathbf{v'} = \mathbf{v} \cos \theta + (\mathbf{n} \times \mathbf{v}) \sin \theta + \mathbf{n} (\mathbf{n} \cdot \mathbf{v}) (1 - \cos \theta)
この式を行列で表現するために、行列 KK を定義します。
K=(0n3n2n30n1n2n10)K = \begin{pmatrix} 0 & -n_3 & n_2 \\ n_3 & 0 & -n_1 \\ -n_2 & n_1 & 0 \end{pmatrix}
n×v=Kv\mathbf{n} \times \mathbf{v} = K \mathbf{v} となり、また nv=nTv\mathbf{n} \cdot \mathbf{v} = \mathbf{n}^T \mathbf{v} と表現できるので、n(nv)=n(nTv)=(nnT)v\mathbf{n} (\mathbf{n} \cdot \mathbf{v}) = \mathbf{n} (\mathbf{n}^T \mathbf{v}) = (\mathbf{n} \mathbf{n}^T) \mathbf{v}となります。
したがって、回転行列 RR は以下のようになります。
R=Icosθ+Ksinθ+nnT(1cosθ)R = I \cos \theta + K \sin \theta + \mathbf{n} \mathbf{n}^T (1 - \cos \theta)
ここで II は単位行列です。展開すると
R=(cosθ+n12(1cosθ)n1n2(1cosθ)n3sinθn1n3(1cosθ)+n2sinθn2n1(1cosθ)+n3sinθcosθ+n22(1cosθ)n2n3(1cosθ)n1sinθn3n1(1cosθ)n2sinθn3n2(1cosθ)+n1sinθcosθ+n32(1cosθ))R = \begin{pmatrix} \cos \theta + n_1^2(1-\cos \theta) & n_1n_2(1-\cos \theta) - n_3\sin \theta & n_1n_3(1-\cos \theta) + n_2\sin \theta \\ n_2n_1(1-\cos \theta) + n_3\sin \theta & \cos \theta + n_2^2(1-\cos \theta) & n_2n_3(1-\cos \theta) - n_1\sin \theta \\ n_3n_1(1-\cos \theta) - n_2\sin \theta & n_3n_2(1-\cos \theta) + n_1\sin \theta & \cos \theta + n_3^2(1-\cos \theta) \end{pmatrix}
##

3. 最終的な答え

1. $\begin{pmatrix} 3 & 4 \end{pmatrix}$

2. $\begin{pmatrix} 0 & 2 & 1 \\ -2 & 0 & -2 \\ -1 & 2 & 0 \end{pmatrix}$, $\begin{pmatrix} -5 & 2 & -4 \\ 2 & -8 & -2 \\ -4 & 2 & -5 \end{pmatrix}$

3. $\cos(\theta)\mathbf{a} + \sin(\theta)\mathbf{b}$

4. $\begin{pmatrix} \cos \theta + n_1^2(1-\cos \theta) & n_1n_2(1-\cos \theta) - n_3\sin \theta & n_1n_3(1-\cos \theta) + n_2\sin \theta \\ n_2n_1(1-\cos \theta) + n_3\sin \theta & \cos \theta + n_2^2(1-\cos \theta) & n_2n_3(1-\cos \theta) - n_1\sin \theta \\ n_3n_1(1-\cos \theta) - n_2\sin \theta & n_3n_2(1-\cos \theta) + n_1\sin \theta & \cos \theta + n_3^2(1-\cos \theta) \end{pmatrix}$

「代数学」の関連問題

与えられた式を因数分解する問題です。 (1) $m^2ab - ma^2b$ (2) $2a(a-3b)-b(3b-a)$

因数分解多項式共通因数
2025/5/23

与えられた式 $2a(a-3b)-b(3b-a)$ を展開し、整理して簡単にします。

展開整理多項式
2025/5/23

与えられた式 $(x+3)(x^2-3x+9)$ を展開し、簡単にします。

式の展開因数分解3乗の公式多項式
2025/5/23

与えられた式 $(x - 3y + 4)^2$ を展開して計算しなさい。

展開多項式二乗の公式
2025/5/23

$\sqrt{12 - 8\sqrt{2}}$ を計算します。

根号式の計算平方根二次根式
2025/5/23

次の2つの不等式を証明し、等号が成り立つ場合を調べる。 (1) $x^2 + y^2 \geq 2(x + y - 1)$ (2) $x^2 + 2xy + 2y^2 \geq 0$

不等式証明実数二次形式
2025/5/23

$x = \sqrt{6} + 2$、 $y = \sqrt{6} - 2$ が与えられたとき、$x^3 + y^3$ の値を求めよ。

式の計算因数分解平方根有理化
2025/5/23

問題は $x^3 + y^3$ を因数分解することです。

因数分解多項式公式
2025/5/23

与えられた2次関数のグラフを描き、頂点の座標と軸の方程式を求める問題です。

二次関数グラフ頂点
2025/5/23

2次関数 $y = 3x^2$ のグラフを、以下のそれぞれの場合について平行移動させたときの2次関数の式を求める。 (1) $y$軸方向に2 (2) $x$軸方向に-3 (3) $x$軸方向に2, $...

二次関数平行移動グラフ
2025/5/23