Student[LinearAlgebra][LinearSolveTutor] - interactive solution of linear systems
Calling Sequence
LinearSolveTutor(M)
LinearSolveTutor(M, v)
Parameters
M
-
Matrix
v
Vector
Description
The LinearSolveTutor(M) command allows you to interactively solve the system of equations represented by the Matrix M. The Matrix is interpreted as an augmented matrix whose last column specifies the right-hand side. It returns the solution as a column Vector.
The LinearSolveTutor(M, v) command allows you to interactively solve the system M·x=v. It returns the solution as a column Vector.
For both calling sequences, you must choose whether to use Gaussian elimination (producing the row echelon form of the Matrix) or Gauss-Jordan elimination (producing the reduced row echelon form of the Matrix). To make a selection, click the corresponding button on the initially displayed Maplet application.
Floating-point numbers in M or v are converted to rationals before computation begins.
The dimensions of the Matrix must be no greater than 5x5.
Examples
with⁡StudentLinearAlgebra:
M≔1,2,0|2,3,2|0,2,1|3,5,5
M≔120323250215
v≔5,4,2
v≔542
LinearSolveTutor⁡M
LinearSolveTutor⁡M,v
See Also
Student[LinearAlgebra], Student[LinearAlgebra][GaussianEliminationTutor], Student[LinearAlgebra][GaussJordanEliminationTutor], Student[LinearAlgebra][LinearSolve], Student[LinearAlgebra][LinearSystemPlot]
Download Help Document