NullSpace - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Mozilla Firefox.

Online Help

All Products    Maple    MapleSim


Student[LinearAlgebra]

  

NullSpace

  

compute a basis for the nullspace (kernel) of a Matrix

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

NullSpace(A, options)

Parameters

A

-

Matrix

options

-

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

Description

• 

The NullSpace(A) command computes a basis for the nullspace (kernel) of the linear transformation defined by Matrix A.  The result is a (possibly empty) set of Vectors.

Examples

> 

with⁡StudentLinearAlgebra:

> 

A≔1,2,3,4|5,6,7,8|9,10,11,12|13,14,15,16:

> 

kern≔NullSpace⁡A

kern≔2−301,1−210

(1)
> 

A·kern1

0000

(2)
> 

A·kern2

0000

(3)
> 

NullSpace⁡Id⁡3

∅

(4)

See Also

LinearAlgebra[NullSpace]

Student[LinearAlgebra]

Student[LinearAlgebra][Basis]

Student[LinearAlgebra][LUDecomposition]

Student[LinearAlgebra][RowSpace]