BackwardSubstitute - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Student[LinearAlgebra]

  

BackwardSubstitute

  

solve A . x = b where A is in upper row echelon form

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

BackwardSubstitute(A, b, options)

Parameters

A

-

upper row echelon form Matrix

b

-

(optional) Vector

options

-

(optional) parameters; for a complete list, see LinearAlgebra[BackwardSubstitute]

Description

• 

The BackwardSubstitute(A, b) command, where A is an upper row echelon Matrix and b is a Vector, returns a solution to the equation A·x=b.

  

If b is not included in the calling sequence, A is assumed to be an augmented Matrix.

Examples

withStudentLinearAlgebra:

M2,4,1|4,2,2|0,2,5

M2404−22−1−25

(1)

AGaussianEliminationM

A2400−102005

(2)

BackwardSubstituteA,4,5,5

75310−1

(3)

M2,0|3,0|1,3

M23−1003

(4)

AM|4,1

A23−140031

(5)

BackwardSubstituteA

1363_t012_t0113

(6)

See Also

LinearAlgebra[BackwardSubstitute]

Student[LinearAlgebra]

Student[LinearAlgebra][GaussianElimination]