de-CH
utf-8
math math-format
Eigenwerte berechnen
ew-01-01
multiple
43776
randRange(1,9) randRangeExclude(-9,9,[0,-K,K]) K + L2 L1 + L2 L1 * L2
randRange(-8,8) randRangeNonZero(-8,8) T-A fractionReduce(A*D - det,B) (A*D- det)/B

Bestimmen Sie die Eigenwerte \color{red} \lambda_1 und \color{blue} \lambda_2 der Matrix \begin{pmatrix} A & B\\ C & D \end{pmatrix} mit {\color{red} \lambda_1} > \color{blue} \lambda_2.

a \color{red} \lambda_1 = L1
a \color{blue} \lambda_2 = L2

Die Eigenwerte sind die Nullstellen des Charakteristischen Polynoms \det \begin{pmatrix} A - \lambda & B\\ C & D-\lambda \end{pmatrix}.

Dies ist die Quadratische Gleichung \left(A - \lambda \right) \left(D- \lambda \right) - negParens(B*CN)= 0 = \lambda^2 -T \lambda + det.

Wir faktorisieren \lambda^2 -T \lambda + det = \left( \lambda - L1 \right) \left( \lambda - L2 \right) .

Wir lesen direkt die Nullstellen als Eigenwerte ab: \color{red} \lambda_1 = L1 und \color{blue} \lambda_2 = L2.