Skip to content

2. Linear Equation and Linear System


1. 키워드

  • Linear Equation(선형방정식): 최고 차수의 항의 차수가 1을 넘지 않는 다항 방정식
  • Linear System(선형시스템): 동일한 변수를 포함하는 하나 이상의 선형방정식의 모음
  • Identity Matrix(단위 행렬): 대각선 항목이 모두 1이고 다른 모든 항목이 0인 정방 행렬
  • Inverse Matrix(역행렬): 어떤 행렬과 곱했을 때 곱셈에 대한 단위 행렬이 나오게 하는 행렬


2. Linear Equation

A linear equation in the variables x1,,xn is an equation that can be written in the form a1x1+a2x2++anxn=b, where b and the coefficients a1,,an are real or complex numbers that are usually known in advance.

The above equation can be written as aTx=b where a=[a1a2an] and X=[x1x2xn].


3. Linear System: Set of Equations

A System of linear equations (or a linear system) is a collection of one or more linear equations involving the same variables - say, x1,,xn.


4. Linear System Example

Suppose we collected persons' weight, height, and life-span (e.g., how long s/he lived)


Person ID Weight Height Is_smoking Life-span
1 60kg 5.5ft Yes (=1) 66
2 65kg 5.0ft No (=0) 74
3 55kg 6.0ft Yes (=1) 78


We want to set up the following linear system:

60x1+5.5x2+1x3=6665x1+5.0x2+0x3=7455x1+6.0x2+1x3=78

Once we solve for x1, x2, and x3, given a new person with his/her weight, height, and is_smoking, we can predict his/her life-span.


The essential information of a linear system can be written compactly using a matrix.

In the following set of equations:

60x1+5.5x2+1x3=6665x1+5.0x2+0x3=7455x1+6.0x2+1x3=78

Let’s collect all the coefficients on the left and form a matrix:

A=[605.51655.00556.01]

Also, let’s form two vectors:

x=[x1x2x3]b=[667478]


5. From Multiple Equations to Single Matrix Equation

Multiple equations can be converted into a single matrix equations:

60x1+5.5x2+1x3=6665x1+5.0x2+0x3=7455x1+6.0x2+1x3=78 → [605.51655.00556.01][x1x2x3]=[667478] ← a1Tx=66a2Tx=74a2Tx=78

How can we solve for x?


6. Identity Matrix

Definition: An identity matrix is a square matrix whose diagonal entries are all 1's, and all the other entries are zeros. Often, we denote it as InRn×n.

Example

I3=[100010001]


An identity matrix In preserves any vector xRn after multiplying x by In:

xRnInx=x


7. Inverse Matrix

Definition: For a square matrix ARn×n, its inverse matrix A1 is defined such that A1A=AA1=In .


For a 2×2 matrix A=[abcd], its inverse matrix A1 is defined as A1=1adbc[dbca].


8. Solving Linear System via Inverse Matrix

We can now solve Ax=b as follows:

Ax=bA1Ax=A1bInx=A1bx=A1b


Example

[605.51655.00556.01][x1x2x3]=[667478] → A1=[0.08700.00870.08701.13040.08701.13142.00001.00001.0000]

One can verify A1A=AA1=In .


x=A1b=[0.08700.00870.08701.13040.08701.13142.00001.00001.0000][667478]=[0.42020]


Now, the life-span can be written as ( life-span )=0.4×( weight )+20×( height )20×( is\_smoking ).


9. Non-Invertible Matrix A for Ax=b

Note that if A is invertible, the solution is uniquely obtained as x=A1b.

What if A is non-invertible, i.e., the inverse does not exist?

E.g., For A=[1224], in A1=1adbc[dbca], the denominator adbc=0, so A is not invertible.

For A=[abcd], adbc is called the determinant of A, or detA.


10. Does a Matrix Have an Inverse Matrix?

detA determines whether A is invertible (when detA0) or not (when detA=0).


11. Non-Invertible Matrix A for Ax=b

Back to the linear system, if A is non-invertible, Ax=b will have either no solution or infinitely many solutions.


12. Rectangular Matrix A in Ax=b

What if A is a rectangular matrix, e.g., ARm×n, where mn?


[605.51655.00556.01][x1x2x3]=[667478]


Recall m= #equations and n= #variables.

m<n: more variables than equations

  • Usually infinitely many solutions exist (under-determined system).

m>n: more equations than variables

  • Usually no solution exists (over-determined system).

References