Differences between revisions 2 and 3
Revision 2 as of 2010-12-15 12:18:04
Size: 572
Comment:
Revision 3 as of 2010-12-15 12:18:33
Size: 582
Comment:
Deletions are marked like this. Additions are marked like this.
Line 11: Line 11:
Line 13: Line 14:
Line 15: Line 17:
Line 17: Line 20:
Line 19: Line 23:
  • Book

    Advanced Engineering Mathematics

    Author

    Erwin Kreyszig

    Edition

    8th Edition

sage: # Example 2 - Page 405
sage: a = vector([4,0,1])
sage: b = vector([2,-5,1/3])

sage: print -a
(-4, 0, -1)

sage: print 7 * a
(28, 0, 7)

sage: print a + b
(6, -5, 4/3)

sage: print 2 * (a - b)
(4, 10, 4/3)

sage: print 2 * a - 2 * b
(4, 10, 4/3)

  • Solution by:

    • Ragupathy, Teacher, Ramakrishna Mission Vidyalaya
    • Ramana, Teacher, Ramakrishna Mission Vidyalaya

Kreyszig-8.1-2 (last edited 2010-12-15 12:27:35 by VenkataRamana)