Student[LinearAlgebra][GaussJordanEliminationTutor] - interactive and step-by-step Gauss-Jordan elimination
|
Calling Sequence
|
|
GaussJordanEliminationTutor(M, opts)
GaussJordanEliminationTutor(M, v, opts)
|
|
Parameters
|
|
M
|
-
|
Matrix
|
v
|
-
|
Vector
|
opts
|
-
|
(optional) equation(s) of the form option=value where equation is output or displaystyle
|
|
|
|
|
Description
|
|
•
|
The GaussJordanEliminationTutor command by default opens a Maplet window which allows you to work interactively through Gauss-Jordan elimination. Options provide other ways to show the step-by-step solutions, as described below.
|
•
|
The GaussJordanEliminationTutor(M) command allows you to interactively reduce the Matrix M to reduced row echelon form using Gauss-Jordan elimination. You can then query for the rank, nullity, and bases for the row, column, and null spaces. It returns the reduced Matrix.
|
•
|
The GaussJordanEliminationTutor(M, v) command allows you to interactively solve the system by reducing the augmented Matrix <M | v> to reduced row echelon form using Gauss-Jordan elimination. It returns the solution as a column Vector.
|
•
|
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.
|
•
|
When the tutor is closed, the solution steps displayed in the tutor are re-displayed in the worksheet, with annotations showing the operations applied. Note that this display only and is not a value which can be further manipulated from within the worksheet. The value returned from the tutor, which can be used (for example, by referencing its equation label), is the state of the problem at the time the tutor was closed.
|
•
|
The following options can be used to control how the problem is displayed and what output is returned, giving the ability to generate step-by-step solutions directly without going through the Maplet tutor interface:
|
–
|
output = steps,canvas,script,record,list,print,printf,typeset,link (default: maplet)
|
The output options are described in Student:-Basics:-OutputStepsRecord. Use output = steps to get the default settings for displaying ste
–
|
displaystyle= columns,compact,linear,brief (default: linear)
|
The displaystyle options are described in Student:-Basics:-OutputStepsRecord.
|
|
Examples
|
|
>
|
|
>
|
|
>
|
|
>
|
|
>
|
|
| (3) |
>
|
|
| (4) |
|
|
Compatibility
|
|
•
|
The Student[LinearAlgebra][GaussJordanEliminationTutor] command was updated in Maple 2021.
|
•
|
The output and displaystyle options were introduced in Maple 2021.
|
|
|