Differences between revisions 1 and 2
Revision 1 as of 2010-12-18 06:23:35
Size: 551
Editor: 10
Comment:
Revision 2 as of 2010-12-18 07:56:55
Size: 515
Editor: 10
Comment:
Deletions are marked like this. Additions are marked like this.
Line 37: Line 37:
   * <Ankitha>, <Student>, <Snist>
   * <Aditya>, <Student>, <Snist>
   * Ankitha, Student, Snist
   
  • Book

    Advanced Engineering Mathematics

    Author

    Erwin Kreyszig

    Edition

    8th Edition

A=matrix([[1,2,3],[0,4,5],[0,0,6]])
print A
[1 2 3]
[0 4 5]
[0 0 6]
A.eigenvalues()
[6, 4, 1]
A.jordan_form()
[6|0|0]
[-+-+-]
[0|4|0]
[-+-+-]
[0|0|1]
B=matrix([[1,1],[-1,-1]])
print B
[ 1  1]
[-1 -1]
B.eigenvalues()
[0, 0]
B.jordan_form()
[0 1]
[0 0]

  • Solution by:

    • Ankitha, Student, Snist

Kreyszig-Appendix B-4-U (last edited 2010-12-18 07:56:55 by 10)