First time here? Check out the FAQ!

Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

answered 12 years ago

ndomes gravatar image

var('x y z alpha') eqns = [x == y^2, z+alpha^3 == 0] table = [ (eq.lhs(),'=',eq.rhs()) for eq in eqns ] html.table(table)

click to hide/show revision 2
No.2 Revision

var('x y z alpha')
eqns = [x == y^2, z+alpha^3 == 0]
table = [ (eq.lhs(),'=',eq.rhs()) for eq in eqns ]
html.table(table)

html.table(table)
click to hide/show revision 3
No.3 Revision

You can use html.table placing left hand side, equal sign and right hand side in seperate columns.

var('x y z alpha')
eqns = [x == y^2, z+alpha^3 == 0]
table = [ (eq.lhs(),'=',eq.rhs()) for eq in eqns ]
html.table(table)
click to hide/show revision 4
No.4 Revision

You can use html.table placing left hand side, equal sign and right hand side in seperate separate columns.

var('x y z alpha')
eqns = [x == y^2, z+alpha^3 == 0]
table = [ (eq.lhs(),'=',eq.rhs()) for eq in eqns ]
html.table(table)