Student[LinearAlgebra][GaussianEliminationTutor] - interactive and step-by-step Gaussian elimination
Calling Sequence
GaussianEliminationTutor(M, opts)
GaussianEliminationTutor(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 GaussianEliminationTutor command by default opens a Maplet window which allows you to work interactively through Gaussian elimination. Options provide other ways to show the step-by-step solutions, as described below.
The GaussianEliminationTutor(M) command calls the Matrix Property Analyzer form of the tutor. The tutor allows you to interactively reduce the Matrix M to row echelon form using Gaussian elimination. You can then query for the rank, nullity, and bases for the row, column, and null spaces. It returns the reduced Matrix.
The GaussianEliminationTutor(M, v) command calls the System Solver form of the tutor. The tutor allows you to interactively solve the system M·x=v by reducing the augmented Matrix <M | v> to row echelon form using Gaussian elimination followed by backwards substitution. It returns the solution as a column Vector.
The above two forms of the tutor are mutually exclusive, and certain commands from one form are not available in the other. To access the other form, close the tutor, and call it again using the appropriate arguments. If no arguments are given, the tutor will start in the System Solver form by default.
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.
Note: There are two definitions of row echelon form. This tutor uses this definition, which requires only that pivot elements be nonzero. (The other definition of row echelon form requires the pivot elements to be equal to 1.)
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
with⁡StudentLinearAlgebra:
M≔1,2,0|2,3,2|0,2,1|3,5,5
M≔120323250215
v≔5,4,2
v≔542
GaussianEliminationTutor⁡M
GaussianEliminationTutor⁡M,v
GaussianEliminationTutor⁡M,output=steps
Gaussian Reduce120323250215• Subtract 2 times row 1 from row 2; (R2 = R2-2*R1)12030−12−10215• Add 2 times row 2 to row 3; (R3 = 2*R2+R3)12030−12−10053
GaussianEliminationTutor⁡M,v,output=steps
Gaussian Solve120352325402152• Subtract 2 times row 1 from row 2; (R2 = R2-2*R1)120350−12−1−602152• Add 2 times row 2 to row 3; (R3 = 2*R2+R3)120350−12−1−60053−10•Extract equations from the matrixx1+2⁢x2+3⁢x4=5−x2+2⁢x3−x4=−65⁢x3+3⁢x4=−10•Introduce free variablesx4=tx1+2⁢x2+3⁢t=5−x2+2⁢x3−t=−65⁢x3+3⁢t=−10•Solvex3x3=−2−3⁢t5•Substitute solved value back into equationsx1+2⁢x2+3⁢t=5−x2−4−11⁢t5=−6x3=−2−3⁢t5•Solvex2x2=2−11⁢t5•Substitute solved value back into equationsx1+4−7⁢t5=5x2=2−11⁢t5x3=−2−3⁢t5•Solvex1x1=1+7⁢t5•Substitute solved value back into equationsx1=1+7⁢t5x2=2−11⁢t5x3=−2−3⁢t5
See Also
Student[LinearAlgebra], Student[LinearAlgebra][AddRow], Student[LinearAlgebra][GaussianElimination], Student[LinearAlgebra][GaussJordanEliminationTutor], Student[LinearAlgebra][LinearSolve], Student[LinearAlgebra][LinearSolveTutor], Student[LinearAlgebra][MultiplyRow], Student[LinearAlgebra][SwapRow]
Compatibility
The Student[LinearAlgebra][GaussianEliminationTutor] command was updated in Maple 2020.
The output and displaystyle options were introduced in Maple 2021.
For more information on Maple 2021 changes, see Updates in Maple 2021.
Download Help Document