Loading [MathJax]/jax/output/HTML-CSS/jax.js
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

asked 13 years ago

trk gravatar image

Row echelon form of a matrix containing symbolic expresssions

Hi,

I want to find out the row echelon form of this matrix:

(112b1101b2213b3)

By manually performing elementary row operations on paper, I get this answer:

(112b1011b1b2000b1b2+b3)

I thought I can do the following in sage (after creating b1,b2 and b3):

var('b_1,b_2,b_3')
A=matrix(SR,[[1,1,2,b_1],[1,0,1,b_2],[2,1,3,b_3]])
show(A)
A.echelon_form()

But I get:

(101001100001)

What is the correct function and/or parameters I should use to get the expected answer?

Thank you.

click to hide/show revision 2
No.2 Revision

Row echelon form of a matrix containing symbolic expresssions

Hi,

I want to find out the row echelon form of this matrix:

(112b1101b2213b3)

By manually performing elementary row operations on paper, I get this answer:

(112b1011b1b2000b1b2+b3)

I thought I can do the following in sage (after creating b1,b2 and b3):sage:

var('b_1,b_2,b_3')
A=matrix(SR,[[1,1,2,b_1],[1,0,1,b_2],[2,1,3,b_3]])
show(A)
A.echelon_form()

But I get:

(101001100001)

What is the correct function and/or parameters I should use to get the expected answer?

Thank you.