diff --git a/1-12-1.html b/1-12-1.html index e7b1640..aa32868 100644 --- a/1-12-1.html +++ b/1-12-1.html @@ -430,6 +430,67 @@

總結表格

+

線性方程組的解

+

𝑅²代表二維平面空間,有XY軸,所有實數 𝑅 皆能位於該平面上。

+

假設有一組2個式子的線性方程組,畫在𝑅²平面上就是兩條線,兩條線相交部分就是解。

+

以上情境共有以下幾種解:

+ +

𝑅³代表三維立體空間,有XYZ軸,所有實數 𝑅 皆能位於該空間內。

+

假設有一組2個式子的線性方程組,畫在𝑅³空間內就是3個面,三個面相交部分就是解。

+

以上情境共有以下幾種解:

+
    +
  1. + 唯一解 +
    + 如果三個平面交於一個點,那麼方程組有唯一解。這種情況對應於係數矩陣 𝐴 的行列式不為零 +
    + (即 ∣ 𝐴 ∣ ≠ 0 ),表示三個平面在空間中相交於一點。 +
  2. +
  3. + 無限多解 +
    + 無限多解的情況分為以下幾種: + +
  4. +
  5. + 無解 +
    + 無解的情況分為以下幾種: +
    + +
  6. +
diff --git a/1-12-2.html b/1-12-2.html new file mode 100644 index 0000000..67c8cdc --- /dev/null +++ b/1-12-2.html @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+ +
+

1-12-2 矩陣求解

+

Row Reduction

+

範例1

+ +

範例2

+ +

範例3

+ +
+
+ + + diff --git a/assets/image/1-12-2/1.jpg b/assets/image/1-12-2/1.jpg new file mode 100644 index 0000000..552b019 Binary files /dev/null and b/assets/image/1-12-2/1.jpg differ diff --git a/assets/image/1-12-2/2.jpg b/assets/image/1-12-2/2.jpg new file mode 100644 index 0000000..979ef70 Binary files /dev/null and b/assets/image/1-12-2/2.jpg differ diff --git a/assets/image/1-12-2/3.jpg b/assets/image/1-12-2/3.jpg new file mode 100644 index 0000000..0158803 Binary files /dev/null and b/assets/image/1-12-2/3.jpg differ diff --git a/js/menuTree.js b/js/menuTree.js index 4f7c73e..085ab32 100644 --- a/js/menuTree.js +++ b/js/menuTree.js @@ -310,8 +310,13 @@ export const menu = [ anchorMenu: [ { id: '1-12-1', - title: '1-12-1 Linear Equation 線性方程式 🚧', + title: '1-12-1 Linear Equation 線性方程式 ', href: '1-12-1.html' + }, + { + id: '1-12-2', + title: '1-12-2 矩陣求解 🚧', + href: '1-12-2.html' } ] },