I had a question where they ask me if a matrix is convergent. Matrix is as below:
A = {{-1.7, -12.6, -12.6}, {-1.2, -5.6, -6.6}, {1.5, 7.8, 8.8}}
I put it in matrix form:
MatrixForm[A]
And used the command:
MatrixPower[A, n]
With increasingly big n until I got (at n=100 000, with I believe is enough to see convergence)
{{-2.84217*10^-14, -1.13687*10^-13, -1.42109*10^-13}, {-1., -4., \
-5.}, {1., 4., 5.}}
So I wrote that the matrix was not convergent for its first row, and convergent to {-1, -4, -5} for row 2, and convergent towards {1, 4, 5} for row 3. And it is incorrect.
I even tried: MatrixPower[A, n] Limit[n->Infinity] but it did not work either.
MatrixFormdoes nothing for your calculation. It merely displays A as a matrix. It does not alter A. – John Doty May 09 '18 at 13:12