First time here? Check out the FAQ!

Ask Your Question
1

Accessing the "Echelon basis matrix" of kernel of a Matrix

asked 8 years ago

vishb gravatar image

For any matrix A when we type

A.kernel()

It returns

 A.kernel()
Free module of degree 45 and rank 12 over Integer Ring
Echelon basis matrix:`[ 1  0 -1][ 0  1  2][ 0  0  0]`

How to I access this Echelon basis matrix directly?

I have tried this

A.kernel.echelon_form()

but it says

TypeError: echelon_form() takes at least 2 arguments (1 given)
Preview: (hide)

1 Answer

Sort by » oldest newest most voted
2

answered 8 years ago

kcrisman gravatar image

Did you try this?

A = matrix([[1,0],[2,0]])
A.kernel().matrix()
Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 8 years ago

Seen: 414 times

Last updated: Jun 23 '16