포스트

1. Notations

1. Review of linear algebra

1) Notation

기본 Notation

ScalarVectorMatrix
$x$ (소문자)$\textbf{x}$ (두꺼운 소문자)$X$ (대문자)
$ x \in \mathbb{R}$$ \textbf{x} \in \mathbb{R}^n$$X \in \mathbb{R}^{m \times n}$

행렬의 종류별 Notation

$\mathbb{S}^{n \times n}, \mathbb{S}^{n}$$I$$A^{-1}$$A^T$
대칭행렬단위행렬역행렬전치행렬

2) Formula

  • $A\textbf{x} = \textbf{b}$
    • $A \in \mathbb{R}^{m \times n}$
    • $\textbf{x} \in \mathbb{R}^{n}$
    • $\textbf{b} \in \mathbb{R}^{m}$

행렬 연산 시 모양(Dimension)이 맞는지 항상 확인해야 한다.

  1. 내적과 외적
    • $\textbf{x, c} \in \mathbb{R^n}$
      • $\textbf{c}^T \textbf{x} = \textbf{c} \cdot \textbf{x}\rightarrow$ Scalar
      • $\textbf{c} \textbf{x}^T = \textbf{c} \times \textbf{x} \rightarrow$ Rank-1 Matrix (nxn)
  2. Quadratic Form
    • $Q \in \mathbb{S}^n, \textbf{x} \in \mathbb{R}^n$
      • $\textbf{x}^T Q \textbf{x} \rightarrow$ Scalar
      • $\textbf{x}^T Q \textbf{x} \rightarrow \textbf{x}$ 의 Quadratic Form(2차함수)
      • $f(x)=\textbf{x}^T Q \textbf{x} \rightarrow ax^2 \rightarrow$ 아래로 볼록(Convex Function)

  • ${AA^{-1} = A^{-1}A = I}$

  • $(AB)^{-1}=B^{-1}A^{-1}$

  • $(AB)^{T}=B^{T}A^{T}$

  • $(A+B)^{T}=A^{T}+B^{T}$

  • $(A^{-1})^{T} = (A^T)^{-1} = A^{-T}$

이 기사는 저작권자의 CC BY 4.0 라이센스를 따릅니다.