summaryrefslogtreecommitdiff
path: root/homeworks/hw-7.org
diff options
context:
space:
mode:
authorElizabeth Hunt <elizabeth.hunt@simponic.xyz>2023-11-27 13:32:05 -0700
committerElizabeth Hunt <elizabeth.hunt@simponic.xyz>2023-11-27 13:32:05 -0700
commit76e00682b2fcc557f24af9db7629d1c868bdf93c (patch)
tree65815aa6f50bece63fcc67b982bcf72e76b7da83 /homeworks/hw-7.org
parent2a35f68ac4ba682fcacf9d003efda6fc4c16209c (diff)
downloadcmath-76e00682b2fcc557f24af9db7629d1c868bdf93c.tar.gz
cmath-76e00682b2fcc557f24af9db7629d1c868bdf93c.zip
add lizfcm api doc entry for least dominant eigenvalue
Diffstat (limited to 'homeworks/hw-7.org')
-rw-r--r--homeworks/hw-7.org12
1 files changed, 12 insertions, 0 deletions
diff --git a/homeworks/hw-7.org b/homeworks/hw-7.org
index 1a5ebb0..dbdf6bb 100644
--- a/homeworks/hw-7.org
+++ b/homeworks/hw-7.org
@@ -12,4 +12,16 @@ See ~UTEST(eigen, leslie_matrix_dominant_eigenvalue)~ in ~test/eigen.t.c~
and the entry ~Eigen-Adjacent -> leslie_matrix~ in the LIZFCM API
documentation.
* Question Three
+See ~UTEST(eigen, least_dominant_eigenvalue)~ in ~test/eigen.t.c~ which
+finds the least dominant eigenvalue on the matrix:
+\begin{bmatrix}
+2 & 2 & 4 \\
+1 & 4 & 7 \\
+0 & 2 & 6
+\end{bmatrix}
+
+which has eigenvalues: $5 + \sqrt{17}, 2, 5 - \sqrt{17}$ and should produce $\sqrt{17}$.
+
+See also the entry ~Eigen-Adjacent -> least_dominant_eigenvalue~ in the LIZFCM API
+documentation.