[LA] Linear Equation (선형 방정식) and Linear System 정리.

2024. 2. 16. 12:48·.../Linear Algebra
728x90
728x90

Linear Equation

linear equation(선형 방정식)은

  • variables(변수들) $x_1, \cdots, x_n$에 대한 equation(방정식)으로,
  • $a_1, \cdots, a_n$와 같은 real (or complex) scalar coefficients(계수들, weights) 와
  • real (or complex) scalar $b$를 사용하여

다음과 같은 형태로 표현됨.:

 

$$a_1x_1 + a_2x_2 + \cdots + a_nx_n = b$$.

 

degree가 1인 polynomial equation이기 때문에 1차 방정식이라고도 불림.

Polynomial Equation(다항식 에 대한 자세한 내용): 2023.06.03 - [.../Math] - [Math] Monomial and Polynomial (단항식 과 다항식)

 

위의 Linear Equation의 수식에서 variable 각각을 variable vector로 일반화 (이 경우 right side도 vector가 됨)하면,
left side를 linear combination이라고 지칭함: vector $\mathbf{b}$를 linear combination으로 표현한 것이 됨.

2024.02.16 - [.../Linear Algebra] - [LA] linear combination

 

[LA] linear combination

Linear Combination이란linear equation 에서 variables가 scalars가 아닌 vectors로 대체한 형태 (상수가 놓이는 Right Side가 아닌 Left Side)scalar를 component가 1개인 vector라고 생각할 수 있으므로, linear equaiton의 (right

dsaint31.tistory.com


System of Linear Equations (=Linear Systems)

  • 연립일차방정식을 가르킴.
  • 여러 linear equations로 구성됨.
  • Linear algebra의 기본이며, 흔히 vector나 matrix를 이용한 표기를 사용함.

예시

다음은 linear system의 한 예임 (3개의 linear equations로 구성)

$$\begin {aligned}
x_1 +2x_2 &= 7 \\
-2x_1 +5 x_2 &= 4 \\
-5 x_1 + 6 x_2 &= -3
\end {aligned}$$

 

이를 vector equation으로 표현하면 다음과 같음.

$$ x_1\begin{bmatrix}1 \\ -2 \\ -5 \end{bmatrix} + x_2\begin{bmatrix}2 \\ 5 \\ 6 \end{bmatrix} = \begin{bmatrix}7 \\ 4 \\ -3 \end{bmatrix} $$

 

참고로 이를 augmented matrix로 표현하면 다음과 같음 (coefficient matrix가 아님에 주의).

$$ \begin {bmatrix} 1 & 2 & 7 \\ -2 & 5 & 4 \\ -5 & 6 & -3 \end {bmatrix}$$

 

이를 matrix equation으로 표현하면 다음과 같음.

$$ \begin {bmatrix} 1 & 2 \\ -2 & 5 \\ -5 & 6 \end {bmatrix}\begin {bmatrix} x_1 \\ x_2 \\ \end {bmatrix}=\begin {bmatrix} 7 \\ 4 \\ -3 \end {bmatrix}$$

 

이들은 모두 표현방법만 다를 뿐 solution (해)을 공유하는 equivalent (=solution이 같은 경우를 가르킴)를 만족한다.

즉, 가장 편한 방식으로 골라 쓸 수 있음.

 

다시 한번 말하지만, linear algebra에서는 vector와 matrix를 통해 linear system을 다루는게 일반적임.

linear system은 보통 가장 compact form인 Matrix Equation을 사용한다.

$$A \mathbf{x} = \mathbf{b}$$

where

  • $A$: Coefficient Matrix
  • $\mathbf{b}$: Constant Vector
  • $\mathbf{x}$: Variable Vector. Matrix Equation(=Linear System)이 성립하게 하는 $\mathbf{x}$들의 집합을 solution set이라고 부름.


Solution and Solution Set

  • Solution (해): Linear System의 linear equations가 모두 true statement가 되게 하는 변수 값들의 list.
  • Solution Set: 가능한 모든 Solution들을 element로 가지는 set(집합)

2022.05.19 - [.../Math] - [Math] 필요조건, 충분조건, 필요충분조건

 

[Math] 필요조건, 충분조건, 필요충분조건

필요조건, 충분조건, 필요충분조건 명제 (proposition)을 다룰 때 자주 나오는 애기임. 명제 (proposition)이란? 참(True)이나 거짓(False)를 판별할 수 있는 식(expression)이나 문장(statment). 실상은, premise와 co

dsaint31.tistory.com


Equivalent (항등, 동치)와 Consistence

두 Linear Systems 가 solution set을 공유할 경우, 이 두 system이 equivalent라고 표현함.

 

Linear System에서 Solution은 다음 세가지 중 하나에 해당함.

1. solution이 없는 경우 : inconsistent system.

2. 하나의 solution만 존재: unique solution

3. 무수히 많은 solution이 존재: infinite solution set

 

2,3의 경우, 해당 linear system이 consistent하다라고 애기함.

2024.02.17 - [.../Linear Algebra] - [LA] Existence and Uniqueness Theorem

 

[LA] Existence and Uniqueness Theorem

Consistent Linear System만약 Linear system이 consistent하다는 애기는 다음과 equivalent임.해당 system의 augmented matrix에서 pivot column vector가 맨 오른쪽의 column이 되는 경우가 없음.이는 REF (row echelon form)로 augment

dsaint31.tistory.com

equivalent를 실제로 연립방정식을 푸는데 사용하는 경우에는 row-equivalent임:

https://dsaint31.tistory.com/666#Row%20Equivalent%20(and%20Column%20Equvalent).-1-2

 

[LA] Row Operations and Row Equivalent

Linear Algebra에서는 "Row Operations"와 유사하게 "Column Operation"도 존재. 이 두 유형의 Operations은 Matrix를 다룰 때 중요한 Tool로,matrix의 성질을 조사하거나특정한 형태(Echelon form등)로 변환하는 데 사용.

dsaint31.tistory.com


같이 읽어보면 좋은 자료들

2024.02.16 - [.../Linear Algebra] - [LA] linear combination

 

[LA] linear combination

linear equation 에서 variables가 scalars가 아닌 vectors로 바꾼 경우. scalar를 component가 1개인 vector라고 생각할 수 있으므로, linear equaiton의 일반화 라고 봐도 된다. weighted sum이라고도 불림. 정의 정의는 다

dsaint31.tistory.com

2023.06.03 - [.../Math] - [Math] Monomial and Polynomial (단항식 과 다항식)

 

[Math] Monomial and Polynomial (단항식 과 다항식)

Monomial (단항식)constant와 variable의 product로 이루어진 algebraic expression.monomial expression이라고 불림.수학에서 monomial은 하나의 term(항)으로 구성된 algebraic expression (대수적 표현식)임.이 하나의 term은 co

dsaint31.tistory.com

2023.08.21 - [.../Signals and Systems] - [SS] System의 종류 (1) : Coninuous, Linear

 

[SS] System의 종류 (1) : Coninuous, Linear

1. Continuous System & Discrete System Continuous System 입력과 출력이 연속 신호인 시스템 Discrete System 입력과 출력이 이산 신호인 시스템 2. Linear System & Non-linear system Linear system $\mathcal{T}\left\{ \quad \right\}$은

dsaint31.tistory.com

 

'... > Linear Algebra' 카테고리의 다른 글

[LA] Pivot and Pivot Column  (0) 2024.02.17
[LA] Existence and Uniqueness Theorem  (1) 2024.02.17
[LA] Affine Combination, Affine Hull and Affine Set  (0) 2024.02.16
[LA] linear combination  (1) 2024.02.16
[LA] Linear and Affine: Summary  (1) 2024.01.03
'.../Linear Algebra' 카테고리의 다른 글
  • [LA] Pivot and Pivot Column
  • [LA] Existence and Uniqueness Theorem
  • [LA] Affine Combination, Affine Hull and Affine Set
  • [LA] linear combination
dsaint31x
dsaint31x
    반응형
    250x250
  • dsaint31x
    Dsaint31's blog
    dsaint31x
  • 전체
    오늘
    어제
    • 분류 전체보기 (746)
      • Private Life (13)
      • Programming (192)
        • DIP (110)
        • ML (26)
      • Computer (119)
        • CE (53)
        • ETC (33)
        • CUDA (3)
        • Blog, Markdown, Latex (4)
        • Linux (9)
      • ... (351)
        • Signals and Systems (103)
        • Math (172)
        • Linear Algebra (33)
        • Physics (42)
        • 인성세미나 (1)
      • 정리필요. (54)
        • 의료기기의 이해 (6)
        • PET, MRI and so on. (1)
        • PET Study 2009 (1)
        • 방사선 장해방호 (4)
        • 방사선 생물학 (3)
        • 방사선 계측 (9)
        • 기타 방사능관련 (3)
        • 고시 (9)
        • 정리 (18)
      • RI (0)
      • 원자력,방사능 관련법 (2)
  • 블로그 메뉴

    • Math
    • Programming
    • SS
    • DIP
  • 링크

    • Convex Optimization For All
  • 공지사항

    • Test
    • PET Study 2009
    • 기타 방사능관련.
  • 인기 글

  • 태그

    numpy
    DIP
    math
    Probability
    Python
    인허가제도
    function
    signal_and_system
    cv2
    linear algebra
    Convolution
    Vector
    Optimization
    SS
    Term
    fourier transform
    opencv
    signals_and_systems
    SIGNAL
    Programming
  • 최근 댓글

  • 최근 글

  • hELLO· Designed By정상우.v4.10.3
dsaint31x
[LA] Linear Equation (선형 방정식) and Linear System 정리.
상단으로

티스토리툴바