Differences between revisions 1 and 2
Revision 1 as of 2010-12-17 07:01:12
Size: 428
Editor: tejaswi
Comment:
Revision 2 as of 2010-12-17 07:01:54
Size: 419
Editor: tejaswi
Comment:
Deletions are marked like this. Additions are marked like this.
Line 24: Line 24:
   * <tejaswi>, <student>, <prakasam>
Line 25: Line 26:
   * <Your Name>, <Profession>, <Organization>
  • Book

    Linear Algebra

    Author

    Gilbert Strang

    Edition

k=var('k')
a=matrix([[k,1],[4,k]])
print a
a.det()
solve(a.det(),k)
a.pivots()
a=matrix([[1,1],[4,2]])
print a
a.swap_rows(1,0)
print a
a.pivots()

  • Solution by:

    • <tejaswi>, <student>, <prakasam>

    • <Your Name>, <Profession>, <Organization>

Strang-page18,24-U (last edited 2010-12-17 07:01:54 by tejaswi)