LinearSolve - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.
Our website is currently undergoing maintenance, which may result in occasional errors while browsing. We apologize for any inconvenience this may cause and are working swiftly to restore full functionality. Thank you for your patience.

Online Help

All Products    Maple    MapleSim


Student[LinearAlgebra]

  

LinearSolve

  

solve the linear equations A . x = b

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

LinearSolve(A, b, options)

Parameters

A

-

Matrix or list

b

-

(optional) column Vector

options

-

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

Description

• 

The LinearSolve command returns the Vector x that satisfies the linear system A·x=b.

  

If b is omitted, then the linear system is interpreted from the first argument, which is taken to be the augmented Matrix in which the last column provides the right-hand side data.

Examples

withStudentLinearAlgebra:

A1,2,3|4,5,6|7,8,0:

b3,2,2:

LinearSolveA,b

−22313

(1)

M1,1,1,4|1,1,2,1|3,1,1,8|1,1,1,1|0,1,1,0:

M_solLinearSolveM

M_sol2564352−2

(2)

M1..1,1..2·M_sol=M1..1,1

0110=0110

(3)

R1,2,3|4,5,7|7,8,9|10,11,12:

z3,2,0:

LinearSolveR,z

76+_t142−1763_t142_t14

(4)

See Also

LinearAlgebra[LinearSolve]

Student[LinearAlgebra]

Student[LinearAlgebra][BackwardSubstitute]

Student[LinearAlgebra][GenerateMatrix]

Student[LinearAlgebra][LeastSquares]

Student[LinearAlgebra][LinearSolveTutor]

Student[LinearAlgebra][LinearSystemPlot]

Student[LinearAlgebra][LUDecomposition]