# Is v_3 in the span of v_1 and v_2?? I.e., does x_1*v_1 + x_2*v_2 = v_3 have a solution? This is just a system of linear equations:A=matrix(SR,[[1,-3,5],[-3,9,-7],[2,-6,h]])A
# 0=1 implies that there is no solution to the system of equations. In particular, v_3 cannot be obtained from a linear combination of v_1 and v_2, so it is not in Span{v_1,v_2}.
# 11b Is {v_1,v_2,v_3} linearly dependent? I.e., does x_1*v_1 + x_2*v_2 + x_3*v_3 = 0 have a solution?L=A.augment(vector(SR,[0,0,0]).column())L