행렬방정식

이 페이지에서는 행렬 방정식이 무엇인지, 그리고 이를 푸는 방법을 배우게 됩니다. 또한 행렬이 포함된 방정식의 예제와 해결 연습도 찾을 수 있습니다.

행렬 방정식이란 무엇입니까?

행렬 방정식은 일반 방정식과 유사하지만 숫자로 구성되지 않고 행렬로 구성됩니다. 예를 들어:

\displaystyle  AX=B

따라서 솔루션 X도 행렬이 됩니다.

이미 알고 있듯이 행렬은 분할될 수 없습니다. 따라서 행렬 X는 방정식의 반대쪽에 곱한 행렬을 나누어서 정리할 수 없습니다.

\renewcommand{\CancelColor}{\color{red}}  \xcancel{X =\cfrac{B}{A}}

반대로 X 행렬을 클리어하려면 전체적인 과정을 거쳐야 한다. 이제 해결된 연습문제를 통해 행렬 방정식을 푸는 방법을 살펴보겠습니다.

행렬 방정식을 푸는 방법. 예:

  • 다음 행렬 방정식을 푼다:

\displaystyle  AX+B = C

\displaystyle  A =\begin{pmatrix}2 & 1 \\[1.1ex] 4 & 3 \end{pmatrix} \qquad B = \begin{pmatrix} 3 & -1 \\[1.1ex] 0 & 5 \end{pmatrix} \qquad C =\begin{pmatrix} 2 & 1 \\[1.1ex] 6 & -3\end{pmatrix}

가장 먼저 해야 할 일은 행렬 X를 푸는 것입니다. 따라서 방정식의 반대쪽에서 행렬 B를 뺍니다 .

\displaystyle  AX+B = C

\displaystyle  AX = C-B

클리어를 완료하려면 매트릭스를 분할할 수 없습니다. 하지만 우리는 다음을 수행해야 합니다:

우리는 방정식의 양변에 행렬 X를 곱하는 행렬의 역함수를 곱하고, 추가적으로 상기 행렬이 위치한 변을 양변에 곱해야 합니다.

이 경우 X를 곱하는 행렬은 A이고 왼쪽에 있습니다. 따라서 우리는 방정식의 좌변에 A (A -1 )의 역수를 곱합니다.

\displaystyle  AX = C-B

\displaystyle  \definecolor{vermell}{HTML}{F44336} \color{vermell}\bm{A^{-1}} \color{black} \cdot AX =  \color{vermell}\bm{A^{-1}} \color{black}  \cdot (C-B)

역행렬을 곱한 행렬은 단위행렬과 같습니다. 아직

\bm{A^{-1} \cdot A = I }:

\displaystyle  IX = A^{-1} \cdot (C-B)

단위 행렬을 곱한 모든 행렬은 동일한 행렬을 제공합니다. 아직:

\displaystyle  X = A^{-1} \cdot (C-B)

그리고 이런 방식으로 우리는 이미 X를 지웠습니다. 이제 행렬 연산을 수행하면 됩니다. 따라서 먼저 A의 2 × 2 역행렬을 계산합니다.

\displaystyle  A =\begin{pmatrix}2 & 1 \\[1.1ex] 4 & 3 \end{pmatrix}

\displaystyle A^{-1} = \cfrac{1}{\vert A \vert } \cdot \Bigl( \text{Adj}(A)\Bigr)^{\bm{t}}

행렬 A의 수반을 계산합니다.

\displaystyle  A^{-1} = \cfrac{1}{2} \cdot \begin{pmatrix}3 & -4 \\[1.1ex] -1 & 2 \end{pmatrix}^{\bm{t}}

그리고 수반 행렬이 발견되면 역행렬을 결정하기 위해 전치행렬 계산을 진행합니다.

\displaystyle  A^{-1} = \cfrac{1}{2} \cdot \begin{pmatrix}3 & -1 \\[1.1ex] -4 & 2 \end{pmatrix}

\displaystyle  A^{-1} = \begin{pmatrix} \frac{3}{2} & -\frac{1}{2} \\[1.3ex] -2 & 1 \end{pmatrix}

이제 X를 계산하기 위해 모든 행렬을 표현식으로 대체합니다.

\displaystyle  X = A^{-1} \cdot (C-B)

\displaystyle  X = \begin{pmatrix} \frac{3}{2} & -\frac{1}{2} \\[1.3ex] -2 & 1\end{pmatrix} \cdot \left(\begin{pmatrix} \vphantom{\frac{3}{2}} 2 & 1 \\[1.3ex] 6 & -3\end{pmatrix}-\begin{pmatrix} \vphantom{\frac{3}{2}}3 & -1 \\[1.3ex] 0 & 5 \end{pmatrix}\right)

그리고 우리는 행렬을 사용하여 연산을 해결합니다. 먼저 행렬을 빼서 괄호를 계산합니다.

\displaystyle  X = \begin{pmatrix} \frac{3}{2} & -\frac{1}{2} \\[1.3ex] -2 & 1\end{pmatrix}\begin{pmatrix} -1 & 2 \\[1.1ex] 6 & -8 \end{pmatrix}

그리고 마지막으로 행렬을 곱합니다.

\displaystyle  X = \begin{pmatrix} \frac{3}{2}\cdot (-1) + \left(-\frac{1}{2} \right) \cdot 6 & \frac{3}{2}\cdot 2 + \left(-\frac{1}{2} \right)\cdot (-8) \\[1.3ex] -2\cdot (-1)+1\cdot 6 & -2\cdot 2 +1\cdot (-8) \end{pmatrix}

\displaystyle  X = \begin{pmatrix} -\frac{3}{2} -\frac{6}{2} & 3 + 4 \\[1.3ex] 2+6 & -4-8 \end{pmatrix}

\displaystyle  \bm{X =} \begin{pmatrix} \bm{-} \frac{\bm{9}}{\bm{2}} & \bm{7} \\[1.3ex] \bm{8} & \bm{-12} \end{pmatrix}

해결 행렬 방정식 문제

연습하고 개념을 잘 이해할 수 있도록 몇 가지 해결된 행렬 방정식을 아래에 남겨둡니다. 연습을 해보고 솔루션에 성공했는지 확인할 수 있습니다. 댓글에서 발생하는 질문을 우리에게 물어볼 수도 있다는 것을 잊지 마십시오.

연습 1

BE

\displaystyle A

그리고

\displaystyle B

다음과 같은 2×2 차원의 정사각형 행렬:

\displaystyle A =\begin{pmatrix} 3 & -1 \\[1.1ex] 1 & 0 \end{pmatrix} \qquad B = \begin{pmatrix} 4 & 2 \\[1.1ex] -1 & 3 \end{pmatrix}

행렬 계산

X

이는 다음 행렬 방정식을 만족합니다.

\displaystyle AX=B

먼저 매트릭스를 비워야 합니다.

X

행렬 방정식:

\displaystyle AX=B

\displaystyle A^{-1} \cdot AX=A^{-1} \cdot B

\displaystyle IX=A^{-1} \cdot B

\displaystyle X=A^{-1} \cdot B

일단 매트릭스를 가지면

X

명확합니다. 행렬을 사용하여 작업하면 됩니다. 따라서 먼저 A의 역행렬을 계산합니다.

\displaystyle  A =\begin{pmatrix} 3 & -1 \\[1.1ex] 1 & 0 \end{pmatrix}

\displaystyle A^{-1} = \cfrac{1}{\vert A \vert } \cdot \Bigl( \text{Adj}(A)\Bigr)^{\bm{t}}

\displaystyle  A^{-1} = \cfrac{1}{1} \cdot \begin{pmatrix} 0 & -1 \\[1.1ex] 1 & 3 \end{pmatrix}^{\bm{t}}

\displaystyle  A^{-1} = \cfrac{1}{1} \cdot \begin{pmatrix}0 & 1 \\[1.1ex] -1 & 3 \end{pmatrix}

\displaystyle  A^{-1} = \begin{pmatrix} 0 & 1 \\[1.1ex] -1 & 3\end{pmatrix}

이제 방정식의 모든 행렬을 대체하여 행렬을 계산합니다.

X :

\displaystyle X=A^{-1} \cdot B

\displaystyle X= \begin{pmatrix} 0 & 1 \\[1.1ex] -1 & 3\end{pmatrix}\cdot \begin{pmatrix} 4 & 2 \\[1.1ex] -1 & 3 \end{pmatrix}

그리고 마지막으로 행렬의 곱셈을 수행합니다.

\displaystyle \bm{X=} \begin{pmatrix}\bm{ -1} & \bm{3} \\[1.1ex] \bm{-7} & \bm{7}\end{pmatrix}

연습 2

BE

\displaystyle A

,

\displaystyle B

그리고

\displaystyle C

다음 차수 2 행렬:

\displaystyle A =\begin{pmatrix} 3 & 6 \\[1.1ex] 2 & -1 \end{pmatrix} \qquad B = \begin{pmatrix} -2 & 1 \\[1.1ex] 3 & -3 \end{pmatrix}\qquad C = \begin{pmatrix} 6 & 4 \\[1.1ex] 3 & -2 \end{pmatrix}

행렬 계산

X

이는 다음 행렬 방정식을 만족합니다.

\displaystyle A+ XB=C

가장 먼저 해야 할 일은 행렬을 비우는 것입니다.

X

행렬 방정식:

\displaystyle A+ XB=C

\displaystyle  XB=C-A

\displaystyle XB \cdot B^{-1}=\left(C-A\right)\cdot B^{-1}

\displaystyle XI=\left(C-A\right)\cdot B^{-1}

\displaystyle X = \left(C-A\right)\cdot B^{-1}

매트릭스를 분리한 후에는

X

, 행렬을 사용하여 작업해야 합니다. 따라서 먼저 B의 역행렬을 계산합니다.

\displaystyle  B =\begin{pmatrix} -2 & 1 \\[1.1ex] 3 & -3 \end{pmatrix}

\displaystyle B^{-1} = \cfrac{1}{\vert B \vert } \cdot \Bigl( \text{Adj}(B)\Bigr)^{\bm{t}}

\displaystyle  B^{-1} = \cfrac{1}{3} \cdot \begin{pmatrix} -3 & -3 \\[1.1ex] -1 & -2 \end{pmatrix}^{\bm{t}}

\displaystyle  B^{-1} = \cfrac{1}{3} \cdot \begin{pmatrix} -3 & -1 \\[1.1ex] -3 & -2 \end{pmatrix}

\displaystyle  B^{-1} = \begin{pmatrix} -1 & -\frac{1}{3} \\[1.3ex] -1 & -\frac{2}{3} \end{pmatrix}

이제 방정식의 모든 행렬을 대체하여 행렬을 계산합니다.

X :

\displaystyle X=\left(C-A\right)\cdot B^{-1}

\displaystyle  X=\left(\begin{pmatrix} 6 & 4 \\[1.3ex] 3 & -2 \end{pmatrix}-\begin{pmatrix} 3 & 6 \\[1.3ex] 2 & -1 \end{pmatrix}\right)\cdot \begin{pmatrix} -1 & -\frac{1}{3} \\[1.3ex] -1 & -\frac{2}{3} \end{pmatrix}

행렬을 빼서 괄호를 풉니다.

\displaystyle X=\begin{pmatrix} 3 & -2 \\[1.3ex] 1 & -1 \end{pmatrix}\cdot \begin{pmatrix} -1 & -\frac{1}{3} \\[1.3ex] -1 & -\frac{2}{3} \end{pmatrix}

그리고 마지막으로 행렬을 곱합니다.

\displaystyle X=\begin{pmatrix} -3+2 & -1+\frac{4}{3} \\[1.3ex] -1+1 & -\frac{1}{3}+\frac{2}{3} \end{pmatrix}

\displaystyle \bm{X=} \begin{pmatrix}\bm{ -1} & \frac{\bm{1}}{\bm{3}} \\[1.3ex] \bm{0} & \frac{\bm{1}}{\bm{3}} \end{pmatrix}

연습 3

BE

\displaystyle A

,

\displaystyle B

그리고

\displaystyle C

다음 2차 행렬:

\displaystyle A =\begin{pmatrix} -1 & 1 \\[1.1ex] 1 & 0 \end{pmatrix} \qquad B = \begin{pmatrix} 4 & -2 \\[1.1ex] 1 & 0 \end{pmatrix}\qquad C = \begin{pmatrix} 6 & 4 \\[1.1ex] 22 & 14 \end{pmatrix}

매트릭스를 찾아라

X

이는 다음 행렬 방정식을 만족합니다.

\displaystyle AXB=C

먼저 매트릭스를 지워야 합니다.

X

행렬 방정식:

\displaystyle AXB=C

\displaystyle A^{-1}\cdot AXB\cdot B^{-1}=A^{-1}\cdot C\cdot B^{-1}

\displastyle IXI=A^{-1}\cdot C\cdot B^{-1}

\displastyle X=A^{-1}\cdot C\cdot B^{-1}

매트릭스를 비운 후에는

X

, 행렬을 사용하여 작업해야 합니다. 따라서 먼저 A의 역행렬을 계산합니다.

\displaystyle  A =\begin{pmatrix} -1 & 1 \\[1.1ex] 1 & 0 \end{pmatrix}

\displaystyle A^{-1} = \cfrac{1}{\vert A \vert } \cdot \Bigl( \text{Adj}(A)\Bigr)^{\bm{t}}

\displaystyle  A^{-1} = \cfrac{1}{-1} \cdot \begin{pmatrix} 0 & -1 \\[1.1ex] -1 & -1 \end{pmatrix}^{\bm{t}}

\displaystyle  A^{-1} = \cfrac{1}{-1} \cdot \begin{pmatrix} 0 & -1 \\[1.1ex] -1 & -1 \end{pmatrix}

\displaystyle  A^{-1} = \begin{pmatrix} 0 & 1 \\[1.1ex] 1 & 1 \end{pmatrix}

그리고 행렬 B도 반전합니다.

\displaystyle  B =\begin{pmatrix} 4 & -2 \\[1.1ex] 1 & 0 \end{pmatrix}

\displaystyle B^{-1} = \cfrac{1}{\vert B \vert } \cdot \Bigl( \text{Adj}(B)\Bigr)^{\bm{t}}

\displaystyle  B^{-1} = \cfrac{1}{2} \cdot \begin{pmatrix} 0 & -1 \\[1.1ex] 2 & 4 \end{pmatrix}^{\bm{t}}

\displaystyle  B^{-1} = \cfrac{1}{2} \cdot \begin{pmatrix} 0 & 2 \\[1.1ex] -1 & 4 \end{pmatrix}

\displaystyle  B^{-1} = \begin{pmatrix} 0 & 1 \\[1.3ex] -\frac{1}{2} & 2 \end{pmatrix}

이제 모든 행렬을 표현식에 대체하여 행렬을 계산합니다.

X :

\displaystyle X=A^{-1}\cdot C\cdot B^{-1}

\displaystyle X=\begin{pmatrix} 0 & 1 \\[1.3ex] 1 & 1 \end{pmatrix}\cdot\begin{pmatrix} 6 & 4 \\[1.3ex] 22 & 14 \end{pmatrix}\cdot \begin{pmatrix} 0 & 1 \\[1.3ex] -\frac{1}{2} & 2 \end{pmatrix}

먼저 왼쪽의 곱셈을 푼다.

\displaystyle X=\begin{pmatrix} 0+22 & 0+14 \\[1.3ex] 6+22 & 4+14 \end{pmatrix}\cdot \begin{pmatrix} 0 & 1 \\[1.3ex] -\frac{1}{2} & 2 \end{pmatrix}

\displaystyle X=\begin{pmatrix} 22 & 14 \\[1.3ex] 28 & 18 \end{pmatrix}\cdot \begin{pmatrix} 0 & 1 \\[1.3ex] -\frac{1}{2} & 2 \end{pmatrix}

그리고 마지막으로 나머지 곱셈을 수행합니다.

\displaystyle X=\begin{pmatrix} 0-7 & 22+28 \\[1.3ex] 0-9 & 28+36 \end{pmatrix}

\displaystyle \bm{X=} \begin{pmatrix}\bm{-7} & \bm{50} \\[1.3ex] \bm{-9} & \bm{64} \end{pmatrix}

연습 4

BE

\displaystyle A

그리고

\displaystyle B

다음과 같은 차원 3×3 행렬:

\displaystyle A =\begin{pmatrix}1 & 0 & 1\\[1.1ex] 0 & -1 & 0 \\[1.1ex] 1 & 2 & 2 \end{pmatrix} \qquad B = \begin{pmatrix} 1 & -1 & 0 \\[1.1ex] 2 & 3 & -2 \\[1.1ex] -3 & 1 & -1 \end{pmatrix}

행렬 계산

X

이는 다음 행렬 방정식을 만족합니다.

\displaystyle B^{t}- AX=B

먼저 행렬을 지웁니다.

X

행렬 방정식:

\displaystyle B^t- AX=B

\displaystyle B^t- B=AX

\displaystyle A^{-1}\cdot \left(B^t- B \right)=A^{-1}\cdot AX

\displaystyle A^{-1}\cdot \left(B^t- B \right)=IX

\displaystyle A^{-1}\cdot \left(B^t- B \right)=X

\displaystyle X=A^{-1}\cdot \left(B^t- B \right)

매트릭스를 분리한 후에는

X

, 행렬을 사용하여 작업해야 합니다. 따라서 먼저 A의 역행렬을 계산합니다.

\displaystyle  A =\begin{pmatrix} 1 & 0 & 1\\[1.1ex] 0 & -1 & 0 \\[1.1ex] 1 & 2 & 2 \end{pmatrix}

\displaystyle A^{-1} = \cfrac{1}{\vert A \vert } \cdot \Bigl( \text{Adj}(A)\Bigr)^{\bm{t}}

\displaystyle  A^{-1} = \cfrac{1}{-1} \cdot \begin{pmatrix} \begin{vmatrix} -1 & 0 \\ 2 & 2 \end{vmatrix} & -\begin{vmatrix} 0 & 0 \\  1 & 2 \end{vmatrix} & \begin{vmatrix}  0 & -1  \\ 1 & 2 \end{vmatrix}\\[4ex] -\begin{vmatrix}  0 & 1 \\ 2 & 2 \end{vmatrix} & \begin{vmatrix} 1  & 1\\ 1 & 2 \end{vmatrix} & -\begin{vmatrix} 1 & 0 \\ 1 & 2  \end{vmatrix} \\[4ex] \begin{vmatrix} 0 & 1\\  -1 & 0 \end{vmatrix} & -\begin{vmatrix} 1  & 1\\ 0 & 0  \end{vmatrix} & \begin{vmatrix} 1 & 0 \\ 0 & -1 \end{vmatrix} \end{pmatrix}^{\bm{t}}

\displaystyle  A^{-1} = \cfrac{1}{-1} \cdot \begin{pmatrix} -2 & 0 & 1 \\[1.1ex] 2 & 1 & -2 \\[1.1ex] 1  & 0 & -1 \end{pmatrix}^{\bm{t}}

\displaystyle  A^{-1} = -1 \cdot \begin{pmatrix} -2 & 2 & 1 \\[1.1ex] 0 & 1 & 0 \\[1.1ex] 1  & -2 & -1 \end{pmatrix}

\displaystyle  A^{-1} = \begin{pmatrix} 2 & -2 & -1 \\[1.1ex] 0 & -1 & 0 \\[1.1ex] -1  & 2 & 1 \end{pmatrix}

이제 X를 계산하기 위해 모든 행렬을 표현식으로 대체합니다.

\displaystyle X=A^{-1}\cdot \left(B^t- B \right)

\displaystyle X=\begin{pmatrix} 2 & -2 & -1 \\[1.1ex] 0 & -1 & 0 \\[1.1ex] -1  & 2 & 1 \end{pmatrix}\cdot \left(\begin{pmatrix} 1 & -1 & 0 \\[1.1ex] 2 & 3 & -2 \\[1.1ex] -3 & 1 & -1 \end{pmatrix}^t- \begin{pmatrix} 1 & -1 & 0 \\[1.1ex] 2 & 3 & -2 \\[1.1ex] -3 & 1 & -1 \end{pmatrix} \right)

행렬 B를 전치합니다:

\displaystyle X=\begin{pmatrix} 2 & -2 & -1 \\[1.1ex] 0 & -1 & 0 \\[1.1ex] -1  & 2 & 1 \end{pmatrix}\cdot \left(\begin{pmatrix} 1 & 2 & -3 \\[1.1ex] -1 & 3 & 1 \\[1.1ex] 0 & -2 & -1 \end{pmatrix}- \begin{pmatrix} 1 & -1 & 0 \\[1.1ex] 2 & 3 & -2 \\[1.1ex] -3 & 1 & -1 \end{pmatrix} \right)

행렬을 빼서 괄호를 푼다:

\displaystyle X=\begin{pmatrix} 2 & -2 & -1 \\[1.1ex] 0 & -1 & 0 \\[1.1ex] -1  & 2 & 1 \end{pmatrix}\cdot \begin{pmatrix} 0 & 3 & -3 \\[1.1ex] -3 & 0 & 3 \\[1.1ex] 3 & -3 & 0 \end{pmatrix}

마지막으로 행렬 곱셈을 수행합니다.

\displaystyle \bm{X=}\begin{pmatrix} \bm{3} & \bm{9} & \bm{-12} \\[1.1ex] \bm{3} & \bm{0} & \bm{-3} \\[1.1ex] \bm{-3}  & \bm{-6} & \bm{9} \end{pmatrix}

댓글 달기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다

Scroll to Top