1
1

More than 3 years have passed since last update.

「ラビット・チャレンジ(応用数学レポート)」を参考にWolframAlphaとSymPy Liveでやってみたい。

Last updated at Posted at 2021-07-15

original link

WolframAlphaで

第1章:線形代数

(途中勉強中)

固有値・固有ベクトルの求め方

固有値:
λ_1 = 5
λ_2 = -1

固有ベクトル:
v_1 = (1, 1)
v_2 = (-2, 1)

対角化:
M = S.J.S^(-1)
ここでのそれぞれの値は以下の通りである
M = (1 | 4
2 | 3)
S = (-2 | 1
1 | 1)
J = (-1 | 0
0 | 5)
S^(-1) = (-1/3 | 1/3
1/3 | 2/3)

固有値分解

結果:
{5, -1}

特異値分解

結果:
M = U.Σ.V^†
ここでのそれぞれの値は以下の通りである
M = (1 | 2 | 3
3 | 2 | 1)
U = (1/sqrt(2) | -1/sqrt(2)
1/sqrt(2) | 1/sqrt(2))
Σ = (2 sqrt(6) | 0 | 0
0 | 2 | 0)
V = (1/sqrt(3) | 1/sqrt(2) | 1/sqrt(6)
1/sqrt(3) | 0 | -sqrt(2/3)
1/sqrt(3) | -1/sqrt(2) | 1/sqrt(6))

SymPy Liveで

以下のソースコードを貼り付けて、Evaluateです。

勉強中

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1