Differences between revisions 1 and 2
Revision 1 as of 2010-12-17 05:42:22
Size: 385
Editor: tejaswi
Comment:
Revision 2 as of 2010-12-17 09:43:01
Size: 427
Editor: jyothi
Comment:
Deletions are marked like this. Additions are marked like this.
Line 7: Line 7:
{{{
a
=matrix([[2,1,0,0],[1,2,1,0],[0,1,2,1],[0,0,1,2]])
print a
a.pivots()
{{{A=matrix(QQ,([2,1,0],[1,2,1],[1,2,1],[0,0,2]))
print A
Line 12: Line 10:
x=a.solve_right(b)
print x
c=A.augment(b.transpose())
print
print c.echelon_form()
c.pivot_rows()
Line 18: Line 18:
 * '''Solution by''':
   * <tejaswi>, <student>, <prakasam>
 * '''

[0,
1, 3]

[0, 1, 3]

''':


   * <jyothi>, <student> vits
  • Book

    Linear Algebra

    Author

    Gilbert Strang

    Edition

{{{A=matrix(QQ,([2,1,0],[1,2,1],[1,2,1],[0,0,2])) print A b=vector([0,0,0,5]) c=A.augment(b.transpose()) print print c.echelon_form() c.pivot_rows() }}}

[0, 1, 3]

[0, 1, 3]

:

  • <jyothi>, <student> vits

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

Strang-1.3-22-U (last edited 2010-12-17 09:43:01 by jyothi)