First time here? Check out the FAQ!
answered 2012-03-19 17:15:18 +0100
sage: var('x,y') (x, y) sage: a=matrix([[1,2],[-3,0]]) sage: v=vector([x,y]) sage: w=a*v sage: w.norm() sqrt(abs(x + 2*y)^2 + abs(-3*x)^2)