この問題は、行列のn乗の計算、一次変換を表す行列の決定、写像が一次変換であるかの判定、および回転行列に関する等式の証明に関するものです。具体的には以下の4つの問題があります。 (1) 行列 $A = \begin{pmatrix} 1 & a \\ 0 & 1 \end{pmatrix}$ に対して、$A^n$ を求める。 (2) 行列 $A = \begin{pmatrix} a & 1 \\ 0 & a \end{pmatrix}$ に対して、$A^n$ を求める。 (3) ベクトル $\begin{pmatrix} 2 \\ -1 \end{pmatrix}$ と $\begin{pmatrix} 1 \\ 3 \end{pmatrix}$ をそれぞれ $\begin{pmatrix} -2 \\ -3 \end{pmatrix}$ と $\begin{pmatrix} 5 \\ 4 \end{pmatrix}$ に写す一次変換が存在する場合、対応する行列を求める。 (4) ベクトル $\begin{pmatrix} 2 \\ -1 \end{pmatrix}$ と $\begin{pmatrix} -4 \\ 2 \end{pmatrix}$ をそれぞれ $\begin{pmatrix} 1 \\ 4 \end{pmatrix}$ と $\begin{pmatrix} 2 \\ -1 \end{pmatrix}$ に写す一次変換が存在する場合、対応する行列を求める。 (5) 以下の写像 $f$ が一次変換であるかどうかを判定し、一次変換であれば対応する行列を求める。 (i) $f\left(\begin{pmatrix} x \\ y \end{pmatrix}\right) = \begin{pmatrix} y \\ x \end{pmatrix}$ (ii) $f\left(\begin{pmatrix} x \\ y \end{pmatrix}\right) = \begin{pmatrix} x+1 \\ y-1 \end{pmatrix}$ (iii) $f\left(\begin{pmatrix} x \\ y \end{pmatrix}\right) = \begin{pmatrix} xy \\ y \end{pmatrix}$ (iv) $f\left(\begin{pmatrix} x \\ y \end{pmatrix}\right) = \begin{pmatrix} x^2 \\ y \end{pmatrix}$ (6) 2x2回転行列 $R(\theta) = \begin{pmatrix} \cos \theta & -\sin \theta \\ \sin \theta & \cos \theta \end{pmatrix}$ に対して、$R(\theta_1) R(\theta_2) = R(\theta_1 + \theta_2)$ を示す。

代数学行列一次変換回転行列行列のn乗線形写像
2025/6/6

1. 問題の内容

この問題は、行列のn乗の計算、一次変換を表す行列の決定、写像が一次変換であるかの判定、および回転行列に関する等式の証明に関するものです。具体的には以下の4つの問題があります。
(1) 行列 A=(1a01)A = \begin{pmatrix} 1 & a \\ 0 & 1 \end{pmatrix} に対して、AnA^n を求める。
(2) 行列 A=(a10a)A = \begin{pmatrix} a & 1 \\ 0 & a \end{pmatrix} に対して、AnA^n を求める。
(3) ベクトル (21)\begin{pmatrix} 2 \\ -1 \end{pmatrix}(13)\begin{pmatrix} 1 \\ 3 \end{pmatrix} をそれぞれ (23)\begin{pmatrix} -2 \\ -3 \end{pmatrix}(54)\begin{pmatrix} 5 \\ 4 \end{pmatrix} に写す一次変換が存在する場合、対応する行列を求める。
(4) ベクトル (21)\begin{pmatrix} 2 \\ -1 \end{pmatrix}(42)\begin{pmatrix} -4 \\ 2 \end{pmatrix} をそれぞれ (14)\begin{pmatrix} 1 \\ 4 \end{pmatrix}(21)\begin{pmatrix} 2 \\ -1 \end{pmatrix} に写す一次変換が存在する場合、対応する行列を求める。
(5) 以下の写像 ff が一次変換であるかどうかを判定し、一次変換であれば対応する行列を求める。
(i) f((xy))=(yx)f\left(\begin{pmatrix} x \\ y \end{pmatrix}\right) = \begin{pmatrix} y \\ x \end{pmatrix}
(ii) f((xy))=(x+1y1)f\left(\begin{pmatrix} x \\ y \end{pmatrix}\right) = \begin{pmatrix} x+1 \\ y-1 \end{pmatrix}
(iii) f((xy))=(xyy)f\left(\begin{pmatrix} x \\ y \end{pmatrix}\right) = \begin{pmatrix} xy \\ y \end{pmatrix}
(iv) f((xy))=(x2y)f\left(\begin{pmatrix} x \\ y \end{pmatrix}\right) = \begin{pmatrix} x^2 \\ y \end{pmatrix}
(6) 2x2回転行列 R(θ)=(cosθsinθsinθcosθ)R(\theta) = \begin{pmatrix} \cos \theta & -\sin \theta \\ \sin \theta & \cos \theta \end{pmatrix} に対して、R(θ1)R(θ2)=R(θ1+θ2)R(\theta_1) R(\theta_2) = R(\theta_1 + \theta_2) を示す。

2. 解き方の手順

(1)
A=(1a01)A = \begin{pmatrix} 1 & a \\ 0 & 1 \end{pmatrix} の場合:
A2=(1a01)(1a01)=(12a01)A^2 = \begin{pmatrix} 1 & a \\ 0 & 1 \end{pmatrix} \begin{pmatrix} 1 & a \\ 0 & 1 \end{pmatrix} = \begin{pmatrix} 1 & 2a \\ 0 & 1 \end{pmatrix}
A3=A2A=(12a01)(1a01)=(13a01)A^3 = A^2 A = \begin{pmatrix} 1 & 2a \\ 0 & 1 \end{pmatrix} \begin{pmatrix} 1 & a \\ 0 & 1 \end{pmatrix} = \begin{pmatrix} 1 & 3a \\ 0 & 1 \end{pmatrix}
したがって、An=(1na01)A^n = \begin{pmatrix} 1 & na \\ 0 & 1 \end{pmatrix} と推測できる。
(2)
A=(a10a)A = \begin{pmatrix} a & 1 \\ 0 & a \end{pmatrix} の場合:
A2=(a10a)(a10a)=(a22a0a2)A^2 = \begin{pmatrix} a & 1 \\ 0 & a \end{pmatrix} \begin{pmatrix} a & 1 \\ 0 & a \end{pmatrix} = \begin{pmatrix} a^2 & 2a \\ 0 & a^2 \end{pmatrix}
A3=A2A=(a22a0a2)(a10a)=(a33a20a3)A^3 = A^2 A = \begin{pmatrix} a^2 & 2a \\ 0 & a^2 \end{pmatrix} \begin{pmatrix} a & 1 \\ 0 & a \end{pmatrix} = \begin{pmatrix} a^3 & 3a^2 \\ 0 & a^3 \end{pmatrix}
したがって、An=(annan10an)A^n = \begin{pmatrix} a^n & na^{n-1} \\ 0 & a^n \end{pmatrix} と推測できる。
(3)
求める行列を B=(pqrs)B = \begin{pmatrix} p & q \\ r & s \end{pmatrix} とする。
(pqrs)(21)=(23)\begin{pmatrix} p & q \\ r & s \end{pmatrix} \begin{pmatrix} 2 \\ -1 \end{pmatrix} = \begin{pmatrix} -2 \\ -3 \end{pmatrix} より、2pq=22p - q = -22rs=32r - s = -3 が得られる。
(pqrs)(13)=(54)\begin{pmatrix} p & q \\ r & s \end{pmatrix} \begin{pmatrix} 1 \\ 3 \end{pmatrix} = \begin{pmatrix} 5 \\ 4 \end{pmatrix} より、p+3q=5p + 3q = 5r+3s=4r + 3s = 4 が得られる。
これらの連立方程式を解くと、p=1/7,q=12/7,r=13/7,s=5/7p = -1/7, q = 12/7, r = -13/7, s = -5/7 となる。
したがって、B=17(112135)B = \frac{1}{7} \begin{pmatrix} -1 & 12 \\ -13 & -5 \end{pmatrix} である。
(4)
求める行列を B=(pqrs)B = \begin{pmatrix} p & q \\ r & s \end{pmatrix} とする。
(pqrs)(21)=(14)\begin{pmatrix} p & q \\ r & s \end{pmatrix} \begin{pmatrix} 2 \\ -1 \end{pmatrix} = \begin{pmatrix} 1 \\ 4 \end{pmatrix} より、2pq=12p - q = 12rs=42r - s = 4 が得られる。
(pqrs)(42)=(21)\begin{pmatrix} p & q \\ r & s \end{pmatrix} \begin{pmatrix} -4 \\ 2 \end{pmatrix} = \begin{pmatrix} 2 \\ -1 \end{pmatrix} より、4p+2q=2-4p + 2q = 24r+2s=1-4r + 2s = -1 が得られる。
最初の式を2倍すると 4p+2q=2(2p+q)=2-4p + 2q = 2(-2p + q) = 2。2つ目の式を2倍すると4r+2s=2(2r+s)=1-4r+2s = 2(-2r+s) = -1となる。しかし、ベクトル(21)\begin{pmatrix} 2 \\ -1 \end{pmatrix}(42)\begin{pmatrix} -4 \\ 2 \end{pmatrix}は線形従属なので、解が一意に定まらない。線形独立なベクトルではないので、この条件下での一次変換は存在しない。
(5)
(i) f((xy))=(yx)f\left(\begin{pmatrix} x \\ y \end{pmatrix}\right) = \begin{pmatrix} y \\ x \end{pmatrix} は一次変換である。対応する行列は (0110)\begin{pmatrix} 0 & 1 \\ 1 & 0 \end{pmatrix} である。
(ii) f((xy))=(x+1y1)f\left(\begin{pmatrix} x \\ y \end{pmatrix}\right) = \begin{pmatrix} x+1 \\ y-1 \end{pmatrix} は一次変換ではない。なぜなら、f((00))=(11)(00)f\left(\begin{pmatrix} 0 \\ 0 \end{pmatrix}\right) = \begin{pmatrix} 1 \\ -1 \end{pmatrix} \neq \begin{pmatrix} 0 \\ 0 \end{pmatrix} だからである。
(iii) f((xy))=(xyy)f\left(\begin{pmatrix} x \\ y \end{pmatrix}\right) = \begin{pmatrix} xy \\ y \end{pmatrix} は一次変換ではない。なぜなら、f(cx)cf(x)f(c\vec{x}) \ne cf(\vec{x}) となるからである。
(iv) f((xy))=(x2y)f\left(\begin{pmatrix} x \\ y \end{pmatrix}\right) = \begin{pmatrix} x^2 \\ y \end{pmatrix} は一次変換ではない。なぜなら、f(cx)cf(x)f(c\vec{x}) \ne cf(\vec{x}) となるからである。
(6)
R(θ1)=(cosθ1sinθ1sinθ1cosθ1)R(\theta_1) = \begin{pmatrix} \cos \theta_1 & -\sin \theta_1 \\ \sin \theta_1 & \cos \theta_1 \end{pmatrix}
R(θ2)=(cosθ2sinθ2sinθ2cosθ2)R(\theta_2) = \begin{pmatrix} \cos \theta_2 & -\sin \theta_2 \\ \sin \theta_2 & \cos \theta_2 \end{pmatrix}
R(θ1)R(θ2)=(cosθ1cosθ2sinθ1sinθ2cosθ1sinθ2sinθ1cosθ2sinθ1cosθ2+cosθ1sinθ2sinθ1sinθ2+cosθ1cosθ2)R(\theta_1) R(\theta_2) = \begin{pmatrix} \cos \theta_1 \cos \theta_2 - \sin \theta_1 \sin \theta_2 & -\cos \theta_1 \sin \theta_2 - \sin \theta_1 \cos \theta_2 \\ \sin \theta_1 \cos \theta_2 + \cos \theta_1 \sin \theta_2 & -\sin \theta_1 \sin \theta_2 + \cos \theta_1 \cos \theta_2 \end{pmatrix}
三角関数の加法定理より、
cos(θ1+θ2)=cosθ1cosθ2sinθ1sinθ2\cos(\theta_1 + \theta_2) = \cos \theta_1 \cos \theta_2 - \sin \theta_1 \sin \theta_2
sin(θ1+θ2)=sinθ1cosθ2+cosθ1sinθ2\sin(\theta_1 + \theta_2) = \sin \theta_1 \cos \theta_2 + \cos \theta_1 \sin \theta_2
したがって、
R(θ1)R(θ2)=(cos(θ1+θ2)sin(θ1+θ2)sin(θ1+θ2)cos(θ1+θ2))=R(θ1+θ2)R(\theta_1) R(\theta_2) = \begin{pmatrix} \cos(\theta_1 + \theta_2) & -\sin(\theta_1 + \theta_2) \\ \sin(\theta_1 + \theta_2) & \cos(\theta_1 + \theta_2) \end{pmatrix} = R(\theta_1 + \theta_2)

3. 最終的な答え

(1) An=(1na01)A^n = \begin{pmatrix} 1 & na \\ 0 & 1 \end{pmatrix}
(2) An=(annan10an)A^n = \begin{pmatrix} a^n & na^{n-1} \\ 0 & a^n \end{pmatrix}
(3) B=17(112135)B = \frac{1}{7} \begin{pmatrix} -1 & 12 \\ -13 & -5 \end{pmatrix}
(4) 存在しない
(5) (i) 一次変換であり、(0110)\begin{pmatrix} 0 & 1 \\ 1 & 0 \end{pmatrix} (ii), (iii), (iv) 一次変換ではない
(6) R(θ1)R(θ2)=R(θ1+θ2)R(\theta_1) R(\theta_2) = R(\theta_1 + \theta_2)

「代数学」の関連問題

与えられた連立方程式を解く問題です。方程式は以下の通りです。 $4x + 3y = 10$ $-2x + y = 4x + 3y$

連立方程式一次方程式代入法方程式の解
2025/6/6

与えられた連立方程式を解いて、$x$と$y$の値を求める問題です。連立方程式は次の通りです。 $\begin{cases} -2x + y = 4x + 3y \\ 4x + 3y = 10 \end...

連立方程式一次方程式代入法解法
2025/6/6

与えられた式を簡略化してください。 与えられた式は次の通りです: $\frac{ab}{2} + 4a - \frac{3}{2}ab - a$

式の簡略化同類項分数
2025/6/6

与えられた2次関数 $y = ax^2 + bx + c$ のグラフから、$a$, $b$, $c$ の符号を判定する問題です。

二次関数グラフ符号判定
2025/6/6

3点(1,1), (2,-5), (3,-15)を通る2次関数を求めます。

二次関数連立方程式2次関数
2025/6/6

与えられた連立方程式を解く問題です。 連立方程式は以下の通りです。 $ \begin{cases} 2x + 5y = 18 \\ x = 2y \end{cases} $

連立方程式代入法一次方程式
2025/6/6

与えられた連立方程式を解く問題です。連立方程式は次の通りです。 $4x + y = 4$ $x + y = -5$

連立方程式加減法代入法線形方程式
2025/6/6

与えられた連立方程式を解く問題です。連立方程式は以下の通りです。 $ \begin{cases} y = 3x - 2 \\ y = 2x + 3 \end{cases} $

連立方程式代入法一次方程式
2025/6/6

与えられた連立方程式を解いて、$x$ と $y$ の値を求めます。 連立方程式は以下の通りです。 $ \begin{cases} 4x - 5y = 3 \\ 5y = 8x - 11 \end{ca...

連立方程式代入法方程式
2025/6/6

6. 次の連立方程式を解く問題です。 $0.2(1-2x) = 3y - 2$ $\frac{x-y}{2} - \frac{x-5}{5} = 1$ 7. 次の2次方程式を解く問題です。...

連立方程式二次方程式式の計算正多角形
2025/6/6