Log in to edit a copy.
Download.
Other published documents...
LA+Chapter+6+Ex+1+Solved+by+이승열
2458 days ago by math2013
x, y, z = var('x y z') h(x, y, z) = [x, x+y, x+y+z] T = linear_transformation(QQ^3, QQ^3, h) C = T.matrix(side='right') x=matrix(3,1,[1,2,3]) A=C*x print A
[1] [3] [6]
[1] [3] [6]