Matrices for solving systems by elimination
Solve Linear System with matrix row-echelon form
我們可以利用矩陣之力,將 Linear system 轉為矩陣快速解出答案
⎩⎨⎧x1+2x2+x3+x4=7x1+2x2+2x3−x4=122x1+4x2+6x4=4 可以轉為 Augmented matrix
A=1122241201−167124 將矩陣運算至 Reduced Row-echelon form
紅色的為 Leading 1s 只在該列有他一個 1 存在,該元素又稱為 pivot value
1002000103−20250=rref(A) 我們可以將結果轉回 equations
⇒{x1+2x2+3x4=2x3−2x4=5{x1=2−2x2−3x4x3=5+2x4 並且可以表示成像 linear combination 的形式
x1x2x3x4=2050+x2−2100+x4−3021 在圖形上看起來像是這樣
linear systems
若你的 reduced-row echelon form 算到變成這樣時
1002000103−2044−4 表示你的三個 R4 向量在空間內是沒有交集的,所以是無解 (no solution)
而每一個 leading ones 都可以對應一個值,這樣子代表唯一解 (uniqle solution)
1000x100xx10xxx1abcd 而上面的例題中,含有 free variables 的,代表沒有唯一解,也就是無限多解
1002000103−20250