치환행렬: 두 판 사이의 차이

내용 삭제됨 내용 추가됨
편집 요약 없음
116번째 줄:
 
 
*의도된 (복잡한) 순환행렬순열행렬
:<math>A = \begin{pmatrix}
\color{red}{a} & b & c\\
168번째 줄:
==성분 치환 행렬==
일반적으로 치환 행렬은 행 또는 열을 교환한다.
그러나 치환행렬은 [[전치행렬행렬]] 고유의 연산 과 [[시프트 대각행렬행렬]]등과 등 다른 행렬들과 함께해서 결과적으로 행렬의 성분(원소)만을 치환할수있는 방법을 제공한다.
 
:<math> A =
\begin{pmatrix}
a & b & {\color{green}{c}} \\
d & e & {\color{green}{f}} \\
g & h & i
\end{pmatrix}
\;\;, \;\;
\;\;\;\; z =
\begin{pmatrix}
a & b & {\color{green}{f}} \\
d & e & {\color{green}{c}} \\
g & h & i
\end{pmatrix}
</math>
:<math> I =
\begin{pmatrix}
1 & 0 & 0 \\
0 & 1 & 0 \\
0 & 0 & 1
\end{pmatrix}
\;\;, \;\;
\;\;\;\; I^a =
\begin{pmatrix}
0 & 0 & 1 \\
0 & 1 & 0 \\
1 & 0 & 0
\end{pmatrix}
\;\; , \;\; I^b =
\begin{pmatrix}
0 & 1 & 0 \\
1 & 0 & 0 \\
0 & 0 & 1
\end{pmatrix}
</math> [[단위 행렬]] , 순열 행렬
:<math>
S =
\begin{pmatrix}
0 & 1 & 0 \\
0 & 0 & 1 \\
0 & 0 & 0
\end{pmatrix}
\;\; , \;\; S^2 =
\begin{pmatrix}
0 & 0 & 1 \\
0 & 0 & 0 \\
0 & 0 & 0
\end{pmatrix}
</math> [[시프트 행렬]]
:<math>
B =
\begin{pmatrix}
1 & 0 & 0 \\
0 & 1 & 0 \\
0 & 0 & 0
\end{pmatrix}
</math> [[이진 행렬]]
 
<!-- 이러한 원소수준에서의 치환은 행이나 열 수준에서의 치환보다 복잡하다. -->
:<math>AB=
\begin{pmatrix}
a & b & 0\\
d & e & 0 \\
g & h & 0
\end{pmatrix}
</math>
 
:<math>I^{a} S^{2} =
\begin{pmatrix}
0 & 0 & 0 \\
0 & 0 & 0 \\
0 & 0 & 1
\end{pmatrix}</math>
 
:<math>I^b A =
\begin{pmatrix}
d & e & {\color{green}{f}} \\
a & b & {\color{green}{c}} \\
g & h & i
\end{pmatrix}
</math>
 
:<math>\left(I^b A \right) \left( I^{a} S^{2} \right) =
\begin{pmatrix}
0 & 0 & {\color{green}{f}} \\
0 & 0 & {\color{green}{c}} \\
0 & 0 & i
\end{pmatrix}
</math>
:<math>\left( AB \right) + \left( { \left(I^b A \right) \left( I^{a} S^{2} \right) } \right)=
\begin{pmatrix}
a & b & {\color{green}{f}} \\
d & e & {\color{green}{c}} \\
g & h & i
\end{pmatrix} =\; z
</math>
 
==함께보기==