# SECTION 9.1# Example 1with(linalg);?matrixA := matrix([[2,t^2,0,4*t+exp(t)],[0,sin(t),cos(t),0],[1,1,1,1],[0,0,0,0]]);x := [x1(t),x2(t),x3(t),x4(t)];diff(x,t) = multiply(A,x);diff(x,t) = evalm(A &* x);# Example 2 x := [y(t),v(t)];A := matrix([[0,1],[-k/m,0]]);diff(x,t) = evalm( A &* x);# Example 3x := [x1(t),x2(t),x3(t),x4(t)];A := matrix([[0,1,0,0],[-3,0,1,0],[0,0,0,1],[2,0,-2,0]]);diff(x,t) = evalm(A&*x);