||'''Book'''|| Linear Algebra || ||'''Author'''|| Gilbert Strang || ||'''Edition'''|| || /* code_begins */ {{{ /* there are 3 vectors check whether it is independent or dependent */ a=array([[1,2,-3],[-3,1,2],[2,-3,1]]) d=det(a) if d==0: print 'dependent' else: print 'independent' }}} /* code_ends */ * '''Solution by''': * srija.n,student,pec * sivalatha.k,student,pec * triveni.k,student,pec