2×2行列の固有値・固有ベクトルの計算
数式
A = \begin{pmatrix} {{a}} & {{b}} \\ {{c}} & {{d}} \end{pmatrix}
入力
| 第1行 第1列 | 2 |
|---|---|
| 第1行 第2列 | 1 |
| 第2行 第1列 | 1 |
| 第2行 第2列 | 2 |
2×2行列の固有値・固有ベクトルの計算
入力
A = \begin{pmatrix} {{a}} & {{b}} \\ {{c}} & {{d}} \end{pmatrix}
結果
値を入力すると計算結果が表示されます。
トレースと行列式
固有値
\begin{aligned} 0 &= \lambda^2 - (\operatorname{tr}A)\lambda + \det A \\ &= \lambda^2 - \left(?\right)\lambda + \left(?\right) \\ \Delta &= (\operatorname{tr}A)^2 - 4\det A = ? \end{aligned}
\begin{aligned} \lambda_1 &= \dfrac{\operatorname{tr}A + \sqrt{\Delta}}{2} \\ &= \dfrac{? + \sqrt{?}}{2} \\ &= ? \end{aligned}
\begin{aligned} \lambda_2 &= \dfrac{\operatorname{tr}A - \sqrt{\Delta}}{2} \\ &= \dfrac{? - \sqrt{?}}{2} \\ &= ? \end{aligned}
\begin{aligned} \mathbf{v}_1 &= \begin{pmatrix} {\text{?}} \\ {\text{?}} \end{pmatrix} \quad (\lambda_1) \\ \mathbf{v}_2 &= \begin{pmatrix} {\text{?}} \\ {\text{?}} \end{pmatrix} \quad (\lambda_2) \end{aligned}