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:
(112b1011b1−b2000−b1−b2+b3)
I thought I can do the following in 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.