예제 풀이 - 선형 변환

김민욱·2025년 6월 7일

예제 1.

다음과 같은 선형 연산자 LL이 2×2 행렬의 벡터 공간에 있다.

L(x    yz    w)=(1    23    4)(x    yz    w)L\begin{pmatrix}x\;\;y\\z\;\;w\end{pmatrix}=\begin{pmatrix}1\;\;2\\3\;\;4\end{pmatrix}\begin{pmatrix}x\;\;y\\z\;\;w\end{pmatrix}

기저 E1,E2,E3,E4E_1, E_2,E_3,E_4에 대한 LL의 행렬을 찾아라.

E1=(1    00    0),E2=(0    10    0),E3=(0    01    0),E4=(0    00    1)E_1=\begin{pmatrix}1\;\;0\\0\;\;0\end{pmatrix},E_2=\begin{pmatrix}0\;\;1\\0\;\;0\end{pmatrix},E_3=\begin{pmatrix}0\;\;0\\1\;\;0\end{pmatrix},E_4=\begin{pmatrix}0\;\;0\\0\;\;1\end{pmatrix}

풀이.

MLM_L을 우리가 찾으려는 행렬이라고 하자.
정의에 따라서 MLM_LL(E1),L(E2),L(E3),L(E4)L(E_1),L(E_2),L(E_3),L(E_4)의 기저 E1,E2,E3,E4E_1, E_2, E_3, E_4에 대한 좌표 벡터를 열로 가지는 4×4 행렬이다.

ML=[[L(E1)]E,[L(E2)]E,[L(E3)]E,[L(E4)]E]M_L = [[L(E_1)]_E,[L(E_2)]_E,[L(E_3)]_E,[L(E_4)]_E]

L(E1)=(1    23    4)(1    00    0)=(1    03    0)[1,0,3,0]TL(E_1) = \begin{pmatrix}1\;\;2\\3\;\;4\end{pmatrix}\begin{pmatrix}1\;\;0\\0\;\;0\end{pmatrix}=\begin{pmatrix}1\;\;0\\3\;\;0\end{pmatrix}\Rarr[1,0,3,0]^T

L(E2)=(1    23    4)(0    10    0)=(0    10    3)[0,1,0,3]TL(E_2) = \begin{pmatrix}1\;\;2\\3\;\;4\end{pmatrix}\begin{pmatrix}0\;\;1\\0\;\;0\end{pmatrix}=\begin{pmatrix}0\;\;1\\0\;\;3\end{pmatrix}\Rarr[0,1,0,3]^T

L(E3)=(1    23    4)(0    01    0)=(2    04    0)[2,0,4,0]TL(E_3) = \begin{pmatrix}1\;\;2\\3\;\;4\end{pmatrix}\begin{pmatrix}0\;\;0\\1\;\;0\end{pmatrix}=\begin{pmatrix}2\;\;0\\4\;\;0\end{pmatrix}\Rarr[2,0,4,0]^T

L(E4)=(1    23    4)(0    00    1)=(0    20    4)[0,2,0,4]TL(E_4) = \begin{pmatrix}1\;\;2\\3\;\;4\end{pmatrix}\begin{pmatrix}0\;\;0\\0\;\;1\end{pmatrix}=\begin{pmatrix}0\;\;2\\0\;\;4\end{pmatrix}\Rarr[0,2,0,4]^T

\therefore ML=(1    0    2    00    1    0    23    0    4    00    3    0    4)M_L = \begin{pmatrix}1\;\;0\;\;2\;\;0\\0\;\;1\;\;0\;\;2\\3\;\;0\;\;4\;\;0\\0\;\;3\;\;0\;\;4\end{pmatrix}

이 결과는 다음과 같은 동치관계를 의미한다.

(x1    y1z1    w1)=(1    23    4)(x    yz    w)(x1y1z1w1)=(1    0    2    00    1    0    23    0    4    00    3    0    4)(xyzw)\begin{pmatrix}x_1\;\;y_1\\z_1\;\;w_1\end{pmatrix}=\begin{pmatrix}1\;\;2\\3\;\;4\end{pmatrix}\begin{pmatrix}x\;\;y\\z\;\;w\end{pmatrix}\Longleftrightarrow\begin{pmatrix}x_1\\y_1\\z_1\\w_1\end{pmatrix}=\begin{pmatrix}1\;\;0\;\;2\;\;0\\0\;\;1\;\;0\;\;2\\3\;\;0\;\;4\;\;0\\0\;\;3\;\;0\;\;4\end{pmatrix}\begin{pmatrix}x\\y\\z\\w\end{pmatrix}

예제 2.

다음과 같은 선형 연산자 L:R2R2L : \mathbb R^2 \rarr \mathbb R^2가 있다.

L(xy)=(1    10    1)(xy)L\begin{pmatrix}\mathbf x\\\mathbf y\end{pmatrix}=\begin{pmatrix}1\;\;1\\0\;\;1\end{pmatrix}\begin{pmatrix}\mathbf x\\\mathbf y\end{pmatrix}

기저 v1=(3,1),v2=(2,1)\mathbf v_1 = (3, 1), \mathbf v_2=(2, 1)에 대한 LL의 행렬을 찾아라.

풀이 1. 행렬 변환을 사용한 풀이

NN을 우리가 찾을 행렬이라고 하자.
행렬 NN의 열들은 기저 v1,v2\mathbf v_1, \mathbf v_2에 대한 L(v1)L(\mathbf v_1)L(v2)L(\mathbf v_2)의 좌표 벡터이다.

L(v1)=(1    10    1)(31)=(41)L(\mathbf v_1) = \begin{pmatrix}1\;\;1\\0\;\;1\end{pmatrix}\begin{pmatrix}3\\1\end{pmatrix} = \begin{pmatrix}4\\1\end{pmatrix}

L(v2)=(1    10    1)(21)=(31)L(\mathbf v_2) = \begin{pmatrix}1\;\;1\\0\;\;1\end{pmatrix}\begin{pmatrix}2\\1\end{pmatrix} = \begin{pmatrix}3\\1\end{pmatrix}

L(v1)=αv1+βv2{3α+2β=4α+β=1{α=2β=1L(\mathbf v_1) = \alpha\mathbf v_1 + \beta\mathbf v_2 \Longleftrightarrow \begin{cases}3\alpha+2\beta=4\\\alpha+\beta=1\end{cases}\Longleftrightarrow \begin{cases}\alpha = 2\\\beta = -1\end{cases}

L(v2)=v1=1v1+0v2L(\mathbf v_2) = \mathbf v_1 = 1\mathbf v_1 + 0\mathbf v_2

N=(    2    11    0)\therefore N=\begin{pmatrix}\;\;2\;\;1\\-1\;\;0\end{pmatrix}

풀이 2. 기저 변환을 사용한 풀이

표준 기저에 대한 LL의 행렬을 SS라고 하자.

S=(1    10    1)S = \begin{pmatrix}1\;\;1\\0\;\;1\end{pmatrix}

UU는 기저 v1,v2\mathbf v_1, \mathbf v_2에서 표준 기저 e1,e2\mathbf e_1, \mathbf e_2로의 변환 행렬이다.

U=(3    21    1)U = \begin{pmatrix}3\;\;2\\1\;\;1\end{pmatrix}

기저 v1,v2\mathbf v_1, \mathbf v_2에 대한 LL의 행렬을 NN이라고 하자.

그러면 N=U1SUN=U^{-1}SU가 성립한다.

N=U1SU=(    1  21      3)(1    10    1)(3    21    1)=(  2      11    0)N = U^{-1}SU = \begin{pmatrix}\;\;1\;-2\\-1\;\;\;3\end{pmatrix}\begin{pmatrix}1\;\;1\\0\;\;1\end{pmatrix}\begin{pmatrix}3\;\;2\\1\;\;1\end{pmatrix}=\begin{pmatrix}\;2\;\;\;1\\-1\;\;0\end{pmatrix}

예제 3.

DDP3P_3에 대한 미분 연산자이다.
표준 기저 {1,x,x2}\{1, x, x^2\}에 대한 DD의 행렬 BB와 기저 {1,2x,4x22}\{1, 2x, 4x^2-2\}에 대한 DD의 행렬 AA를 구하여라.

풀이.

D(1)=01+0x+0x2[0,0,0]TD(1) = 0\cdot 1+0\cdot x+0\cdot x^2 \Rarr [0,0,0]^T
D(x)=11+0x+0x2[1,0,0]TD(x) = 1\cdot1 +0\cdot x +0\cdot x^2 \Rarr [1,0,0]^T
D(x2)=01+2x+0x2[0,2,0]TD(x^2) = 0\cdot 1 + 2\cdot x+0\cdot x^2 \Rarr [0,2,0]^T

B=(0    1    00    0    20    0    0)\therefore B = \begin{pmatrix}0\;\;1\;\;0\\0\;\;0\;\;2\\0\;\;0\;\;0\end{pmatrix}

D(1)=01+02x+0(4x22)[0,0,0]TD(1) = 0\cdot 1+0\cdot 2x+0\cdot (4x^2-2) \Rarr [0,0,0]^T
D(2x)=21+02x+0(4x22)[2,0,0]TD(2x) = 2\cdot1 +0\cdot 2x +0\cdot (4x^2-2) \Rarr [2,0,0]^T
D(4x22)=01+42x+0(4x22)[0,4,0]TD(4x^2-2) = 0\cdot 1 + 4\cdot 2x+0\cdot (4x^2-2) \Rarr [0,4,0]^T

A=(0    2    00    0    40    0    0)\therefore A = \begin{pmatrix}0\;\;2\;\;0\\0\;\;0\;\;4\\0\;\;0\;\;0\end{pmatrix}

{1,2x,4x22}\{1, 2x, 4x^2-2\}에서 {1,x,x2}\{1, x, x^2\}로의 기저 변환 행렬을 SS라고 할 때

S=(  1      0  20      2        00      0        4)S = \begin{pmatrix}\;1\;\;\;0\;-2\\0\;\;\;2\;\;\;\;0\\0\;\;\;0\;\;\;\;4\end{pmatrix}

S1=(    1            0          1/20        1/2          0    0          0          1/4)S^{-1}=\begin{pmatrix}\;\;1\;\;\;\;\;\;0\;\;\;\;\;1/2\\0\;\;\;\;1/2\;\;\;\;\;0\\\;\;0\;\;\;\;\;0\;\;\;\;\;1/4\end{pmatrix}이고,

A=S1BSA = S^{-1}BS이므로 AABB는 유사(similar) 행렬이다.

예제 4.

L(x)=AxL(\mathbf x)=A\mathbf x로 정의된 LLR3\mathbb R^3에서 R3\mathbb R^3으로의 사상인 선형 연산자이다.
여기서 AA는 다음과 같다.

A=(2    2    01    1    21    1    2)A=\begin{pmatrix}2\;\;2\;\;0\\1\;\;1\;\;2\\1\;\;1\;\;2\end{pmatrix}

행렬 AA는 기저 {e1,e2,e3}\{\mathbf e_1,\mathbf e_2, \mathbf e_3\}에 대한 LL의 행렬 표현이다.
기저 {y1,y2,y3}\{\mathbf y_1, \mathbf y_2, \mathbf y_3\}에 대한 LL을 표현하는 행렬을 구하여라.

y1=(110),  y2=(211),  y3=(111)\mathbf y_1=\begin{pmatrix}1\\-1\\0\end{pmatrix},\;\mathbf y_2=\begin{pmatrix}-2\\1\\1\end{pmatrix},\;\mathbf y_3=\begin{pmatrix}1\\1\\1\end{pmatrix}

풀이.

구하려는 행렬을 DD라고 하자.

L(y1)=Ay1=0=0y1+0y2+0y3[0,0,0]TL(\mathbf y_1) = A\mathbf y_1=\mathbf 0=0\mathbf y_1+0\mathbf y_2+0\mathbf y_3\Rarr[0,0,0]^T

L(y2)=Ay2=(211)=y2=0y1+1y2+0y3[0,1,0]TL(\mathbf y_2) = A\mathbf y_2=\begin{pmatrix}-2\\1\\1\end{pmatrix}=\mathbf y_2 =0\mathbf y_1+1\mathbf y_2+0\mathbf y_3\Rarr[0,1,0]^T

L(y3)=Ay3=(444)=4y3=0y1+0y2+4y3[0,0,4]TL(\mathbf y_3) = A\mathbf y_3=\begin{pmatrix}4\\4\\4\end{pmatrix}=4\mathbf y_3=0\mathbf y_1+0\mathbf y_2+4\mathbf y_3\Rarr[0,0,4]^T

D=(0    0    00    1    00    0    4)\therefore D = \begin{pmatrix}0\;\;0\;\;0\\0\;\;1\;\;0\\0\;\;0\;\;4\end{pmatrix}


<참고자료>
Steve J. Leon, Linear Algebra with Application, 10th edition, 2021.

0개의 댓글