Differences between revisions 1 and 2
Revision 1 as of 2010-12-18 06:20:45
Size: 424
Editor: shwetaradha
Comment:
Revision 2 as of 2010-12-18 07:48:47
Size: 437
Editor: pratyureepu
Comment:
Deletions are marked like this. Additions are marked like this.
Line 8: Line 8:
a=matrix([[1,1,1],[1,2,2],[1,2,3]])
l= a.echelon_form()
print (l[0,0]*l[1,1]*l[2,2])
b=matrix([[1,2,3],[2,2,3],[3,3,3]])
q=b.echelon_form()
print (q[0,0]*q[1,1]*q[2,2])
}}}
A=matrix([[1,1,1],[1,2,2],[1,2,3]])
print A
A1
=A.echelon_form()
print A1
A1.det
()
A2=matrix([[1,2,3],[2,2,3],[3,3,3]])
print A2
A3
=A2.echelon_form()
print A3
A3.det
()}}}
Line 18: Line 21:
  * Swethakumari G, student,SNIST
  * Radha Bhukya, student, SNIST
  * Usha Rani,student, SNIST
  * <C.pratyusha>,<student>,<SNIST>
  * <Reepu Kumari>,<student>,<SNIST>
  *<Renuka.Y>,<student>,<SNIST>
  
  • Book

    Linear Algebra

    Author

    Gilbert Strang

    Edition

A=matrix([[1,1,1],[1,2,2],[1,2,3]])
print A
A1=A.echelon_form()
print A1
A1.det()
A2=matrix([[1,2,3],[2,2,3],[3,3,3]])
print A2
A3=A2.echelon_form()
print A3
A3.det()

  • <C.pratyusha>,<student>,<SNIST>

  • <Reepu Kumari>,<student>,<SNIST>

  • <Renuka.Y>,<student>,<SNIST>

Strang-4.2 25-U (last edited 2010-12-18 07:48:47 by pratyureepu)