Differences between revisions 1 and 2
Revision 1 as of 2010-12-17 12:08:03
Size: 441
Editor: 172
Comment:
Revision 2 as of 2010-12-17 12:47:49
Size: 389
Editor: 172
Comment:
Deletions are marked like this. Additions are marked like this.
Line 8: Line 8:
R=matrix( [[1,-0.25,-0.25,0],[-0.25,1,0,-0.25],[-0.25,0,1,-0.25],[0,-0.25,-0.25,1] ])
print R
p=vector( [50,50,25,25])
x=R.solve_right(p)
print x
}}}
R1=matrix([[2,1,1],[1,2,1],[1,1,2]])
print R1
p1=vector([4,4,4])
x1=R1.solve_right(p1)
print x1}}}
  • Book

    Linear Algebra

    Author

    Gilbert Strang

    Edition

R1=matrix([[2,1,1],[1,2,1],[1,1,2]])
print R1
p1=vector([4,4,4])
x1=R1.solve_right(p1)
print x1

  • Solution by:

    • <C.Pratyusha>, <student>, <snist>

    • <Reepu Kumari>, <student>, <snist>

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

Strang-18.3 2 (last edited 2010-12-17 12:47:49 by 172)