与えられた2つの行列が直交行列であることを示す問題です。行列が直交行列であるとは、その行列の転置行列が逆行列と等しい、つまり $A^T A = A A^T = I$ (Iは単位行列) が成り立つことを意味します。言い換えれば、行列の各列ベクトルが互いに直交し、かつノルムが1である必要があります。

代数学線形代数行列直交行列行列の計算転置行列
2025/5/2

1. 問題の内容

与えられた2つの行列が直交行列であることを示す問題です。行列が直交行列であるとは、その行列の転置行列が逆行列と等しい、つまり ATA=AAT=IA^T A = A A^T = I (Iは単位行列) が成り立つことを意味します。言い換えれば、行列の各列ベクトルが互いに直交し、かつノルムが1である必要があります。

2. 解き方の手順

(1)
与えられた行列をAAとします。
$ A = \begin{bmatrix}
\frac{1}{\sqrt{3}} & 0 & \frac{2}{\sqrt{6}} \\
\frac{1}{\sqrt{3}} & \frac{1}{\sqrt{2}} & -\frac{1}{\sqrt{6}} \\
-\frac{1}{\sqrt{3}} & \frac{1}{\sqrt{2}} & \frac{1}{\sqrt{6}}
\end{bmatrix} $
ATAA^T Aを計算します。
$ A^T A = \begin{bmatrix}
\frac{1}{\sqrt{3}} & \frac{1}{\sqrt{3}} & -\frac{1}{\sqrt{3}} \\
0 & \frac{1}{\sqrt{2}} & \frac{1}{\sqrt{2}} \\
\frac{2}{\sqrt{6}} & -\frac{1}{\sqrt{6}} & \frac{1}{\sqrt{6}}
\end{bmatrix} \begin{bmatrix}
\frac{1}{\sqrt{3}} & 0 & \frac{2}{\sqrt{6}} \\
\frac{1}{\sqrt{3}} & \frac{1}{\sqrt{2}} & -\frac{1}{\sqrt{6}} \\
-\frac{1}{\sqrt{3}} & \frac{1}{\sqrt{2}} & \frac{1}{\sqrt{6}}
\end{bmatrix} $
$ = \begin{bmatrix}
\frac{1}{3} + \frac{1}{3} + \frac{1}{3} & 0 + \frac{1}{\sqrt{6}} - \frac{1}{\sqrt{6}} & \frac{2}{\sqrt{18}} - \frac{1}{\sqrt{18}} - \frac{1}{\sqrt{18}} \\
0 + \frac{1}{\sqrt{6}} - \frac{1}{\sqrt{6}} & 0 + \frac{1}{2} + \frac{1}{2} & 0 - \frac{1}{\sqrt{12}} + \frac{1}{\sqrt{12}} \\
\frac{2}{\sqrt{18}} - \frac{1}{\sqrt{18}} - \frac{1}{\sqrt{18}} & 0 - \frac{1}{\sqrt{12}} + \frac{1}{\sqrt{12}} & \frac{4}{6} + \frac{1}{6} + \frac{1}{6}
\end{bmatrix} $
$ = \begin{bmatrix}
1 & 0 & 0 \\
0 & 1 & 0 \\
0 & 0 & 1
\end{bmatrix} = I$
AATAA^Tを計算しても単位行列になるので、AAは直交行列です。
(2)
与えられた行列をBBとします。
$ B = \begin{bmatrix}
\cos \phi & -\sin \phi & 0 \\
\cos \theta \sin \phi & \cos \theta \cos \phi & -\sin \theta \\
\sin \theta \sin \phi & \sin \theta \cos \phi & \cos \theta
\end{bmatrix} $
BTBB^T Bを計算します。
$ B^T B = \begin{bmatrix}
\cos \phi & \cos \theta \sin \phi & \sin \theta \sin \phi \\
-\sin \phi & \cos \theta \cos \phi & \sin \theta \cos \phi \\
0 & -\sin \theta & \cos \theta
\end{bmatrix} \begin{bmatrix}
\cos \phi & -\sin \phi & 0 \\
\cos \theta \sin \phi & \cos \theta \cos \phi & -\sin \theta \\
\sin \theta \sin \phi & \sin \theta \cos \phi & \cos \theta
\end{bmatrix} $
$ = \begin{bmatrix}
\cos^2 \phi + \cos^2 \theta \sin^2 \phi + \sin^2 \theta \sin^2 \phi & -\cos \phi \sin \phi + \cos \theta \sin \phi \cos \theta \cos \phi + \sin \theta \sin \phi \sin \theta \cos \phi & -\cos \theta \sin \phi \sin \theta + \sin \theta \sin \phi \cos \theta \\
-\sin \phi \cos \phi + \cos \theta \cos \phi \cos \theta \sin \phi + \sin \theta \cos \phi \sin \theta \sin \phi & \sin^2 \phi + \cos^2 \theta \cos^2 \phi + \sin^2 \theta \cos^2 \phi & \sin \phi \cos \theta \sin \theta + \sin \theta \cos \phi \cos \theta \\
-\sin \theta \cos \theta \sin \phi + \cos \theta \sin \theta \sin \phi & \cos \theta \sin \theta \cos \phi + \cos \theta \sin \theta \cos \phi & \sin^2 \theta + \cos^2 \theta
\end{bmatrix} $
$ = \begin{bmatrix}
\cos^2 \phi + \sin^2 \phi (\cos^2 \theta + \sin^2 \theta) & -\sin \phi \cos \phi + \sin \phi \cos \phi (\cos^2 \theta + \sin^2 \theta) & 0 \\
-\sin \phi \cos \phi + \cos \phi \sin \phi (\cos^2 \theta + \sin^2 \theta) & \sin^2 \phi + \cos^2 \phi (\cos^2 \theta + \sin^2 \theta) & 0 \\
0 & 0 & 1
\end{bmatrix} $
$ = \begin{bmatrix}
1 & 0 & 0 \\
0 & 1 & 0 \\
0 & 0 & 1
\end{bmatrix} = I$
BBTBB^Tを計算しても単位行列になるので、BBは直交行列です。

3. 最終的な答え

(1) の行列は直交行列である。
(2) の行列は直交行列である。

「代数学」の関連問題

問題は、多項式 $x^2 + 4$ を因数分解することです。

因数分解多項式複素数虚数単位
2025/6/29

問題は、与えられた2次式 $x^2 - 6x + 4$ を複素数の範囲で因数分解することです。

二次方程式因数分解解の公式複素数
2025/6/29

与えられた2つの3次方程式を解く問題です。 (1) $x^3 + 8 = 0$ (2) $x^3 - 125 = 0$

三次方程式因数分解複素数解の公式
2025/6/29

$T: \mathbb{R}^2 \to \mathbb{R}^2$ という線形変換があり、これは直線 $y=x$ の方向に2倍する変換です。この変換を表す2次正方行列を求めます。

線形代数線形変換行列固有ベクトル基底変換
2025/6/29

与えられた数式を計算する問題です。具体的には、(1), (2), (3), (4), (5)の5つの小問があり、それぞれ根号を含む式の計算、分数の計算、有理化などを行います。

式の計算根号有理化分数
2025/6/29

集合 $A$ が与えられており、$A = \{x | x \text{ は正の整数で, } x \text{ の逆数の2乗は0.0625より大きい} \}$ と定義されています。この集合 $A$ の要...

集合不等式数の性質
2025/6/29

集合 $A$ は、$x^2 = 4$ を満たす整数 $x$ の集合である。集合 $A$ を求めよ。

集合方程式平方根整数の集合
2025/6/29

全体集合 $U$ は20の正の約数全体の集合、集合 $A$ は2の倍数全体の集合、集合 $B$ は5の倍数全体の集合である。このとき、$A \cup B$ の要素の個数 $n(A \cup B)$ を...

集合集合の要素和集合約数
2025/6/29

集合Aは、$0 \le x \le \sqrt{17}$ を満たす整数xの集合です。集合Bは、15の正の約数の集合です。このとき、$n(A \cap B)$と$n(A \cup B)$を求めます。ここ...

集合集合の要素共通部分和集合約数
2025/6/29

集合Aは2桁の自然数全体の集合、集合Bは300以下の7と5の公倍数全体の集合である。このとき、$n(A \cap B)$と$n(A \cup B)$を求めよ。ここで、$n(X)$は集合Xの要素の個数を...

集合要素数共通部分和集合
2025/6/29