Differences between revisions 1 and 2
Revision 1 as of 2010-12-16 11:14:12
Size: 430
Editor: anvesh
Comment:
Revision 2 as of 2010-12-17 12:24:56
Size: 336
Editor: beesanna
Comment:
Deletions are marked like this. Additions are marked like this.
Line 20: Line 20:
   * <Anvesh>, <Student>, <sreenidhi institute of science and technology>
   * <Your Name>, <Profession>, <Organization>
   * beesanna,student,SNIST
  • Book

    Linear Algebra

    Author

    Gilbert Strang

    Edition

A=matrix([[3,1],[2,4]])
D = A[0,0]*A[1,1]-A[0,1]*A[1,0]
A=matrix([[A[1,1],-A[0,1]],[-A[1,0],A[0,0]]])
D=1.0/D
B=D*A
print(B)

  • Solution by:

    • beesanna,student,SNIST

Strang-6.7-3 (last edited 2010-12-17 12:53:44 by anvesh)