end0tknr's kipple - web写経開発

太宰府天満宮の狛犬って、妙にカワイイ

線形代数 振り返り - 交換法則、結合法則、分配法則、指数法則

https://oguemon.com/study/linear-algebra/matrix-notice/

上記urlの写経です

一覧

|法則名 |和|積|指数| |交換 |○|△| - | |結合 |○|○| - | |分配 |○|○| - | |指数 |-|-| ○ |

交換法則

和の場合、成立します

\large{
\textbf{A} + \textbf{B} = \textbf{B} + \textbf{A}
}

ただし、積の場合、必ずしも成立しません。以下、例

\large{
  \begin{pmatrix}1 0 \\ 1 1 \end{pmatrix}
  \begin{pmatrix}1 1 \\ 0 1 \end{pmatrix}
  = \begin{pmatrix}1\cdot 1+0 \cdot 0 1 \cdot 1+0 \cdot 1 \\
                   1\cdot 1+1 \cdot 0 1 \cdot 1+1 \cdot 1 \end{pmatrix}
  = \begin{pmatrix}1 1 \\ 1 2 \end{pmatrix}
} \large{
  \begin{pmatrix}1 1 \\ 0 1 \end{pmatrix}
  \begin{pmatrix}1 0 \\ 1 1 \end{pmatrix}
  = \begin{pmatrix}1\cdot 1+1 \cdot 1 1 \cdot 0+1 \cdot 1 \\
                   0\cdot 1+1 \cdot 1 0 \cdot 0+1 \cdot 1 \end{pmatrix}
  = \begin{pmatrix}2 1 \\ 1 1 \end{pmatrix}
}

結合法則

\large{
 (\textbf{A} + \textbf{B}) + \textbf{C} =
  \textbf{A} + (\textbf{B}  + \textbf{C} )
}

\large{
 (\textbf{A} \textbf{B}) \textbf{C} =
  \textbf{A} (\textbf{B} \textbf{C} )
}

分配法則

\large{
 \textbf{A} (\textbf{B} + \textbf{C} ) =
  \textbf{A} \textbf{B}  + \textbf{A} \textbf{C}
}

\large{
 (\textbf{A} + \textbf{B} ) \textbf{C} =
  \textbf{A} \textbf{C}  + \textbf{B} \textbf{C}
}

指数法則

\large{
 \textbf{A}^n \textbf{A}^m =  \textbf{A}^{n+m}
}

\large{
 ( \textbf{A}^n )^m =  \textbf{A}^{nm}
}