Student[NumericalAnalysis][IterativeFormulaTutor] - compute an iterative formula to numerically approximate the solution to a linear system
Calling Sequence
IterativeFormulaTutor(A, b)
Parameters
A
-
(optional) Matrix; a square nxn matrix
b
(optional) Vector; a vector of length n
Description
The IterativeFormulaTutor command launches a tutor interface that takes the linear system A⁢x=b and an initial vector x0 and computes the matrix T and vector c, of the equivalent system xk+1=T⁢xk+c.
A Matrix and Vector Editors allow users to edit the matrix and vectors easily within the tutor.
All other available options are controlled in the tutor interface.
If A and b are not specified then IterativeFormulaTutor uses a default square matrix and a default vector.
The iterative methods available in this tutor are:
gaussseidel
jacobi
SOR
Notes
There are two digit controls in the tutor. The Digits option controls the number of digits kept during floating-point computations, and the digit precision option controls only the number of digits to which final results are rounded in the maplet display window. The digit precision option has no effect on the output returned from the maplet upon exit.
Examples
with⁡StudentNumericalAnalysis:
IterativeFormulaTutor⁡
IterativeFormulaTutor⁡Matrix⁡1.53,6.32,5.33,0.33,Vector⁡1.66,5.66
See Also
Student[NumericalAnalysis], Student[NumericalAnalysis][InteractiveOverview], Student[NumericalAnalysis][IterativeApproximate], Student[NumericalAnalysis][IterativeFormula]
Download Help Document