Student[NumericalAnalysis]
IsConvergent
determine whether an iterative approximation method converges or not
Calling Sequence
Parameters
Description
Examples
IsConvergent(A, meth)
A
-
Matrix; a square nxn matrix
meth
equation; the method in the form method = one of: gaussseidel, jacobi or SOR(numeric)
The IsConvergent command determines whether the iterative approximation to the linear system A.x=b, using meth as the approximation method, converges to a unique solution or not, for any initial approximate.
The IsConvergent command returns true or false depending on whether the method and system converge to a unique solution or not.
with⁡StudentNumericalAnalysis:
A≔Matrix⁡1.3,1.4,5.3,3.4,7.7,3.1,4.3,7.4,0.2
A≔1.31.45.33.47.73.14.37.40.2
IsConvergent⁡A,method=gaussseidel
false
IsConvergent⁡A,method=jacobi
B≔Matrix⁡1,0,0,1
B≔1001
IsConvergent⁡B,method=gaussseidel
true
IsConvergent⁡B,method=jacobi
IsConvergent⁡B,method=SOR⁡1.25
See Also
Student[LinearAlgebra]
Student[NumericalAnalysis][ComputationOverview]
Student[NumericalAnalysis][IterativeApproximate]
Student[NumericalAnalysis][IterativeFormula]
Download Help Document