Differences between revisions 1 and 2
Revision 1 as of 2010-08-09 14:09:14
Size: 376
Editor: sawankumar
Comment:
Revision 2 as of 2010-08-09 14:10:55
Size: 358
Editor: sawankumar
Comment:
Deletions are marked like this. Additions are marked like this.
Line 9: Line 9:
W=det(matrix([[exp(x),x*exp(x)],[exp(x),(x+1)*exp(x)]])) W=det(matrix([[1,exp(x)],[0,exp(x)]]))
  • Book

    Advanced Engineering Mathematics

    Author

    Erwin Kreyszig

    Edition

    8th Edition

x=var('x')
W=det(matrix([[1,exp(x)],[0,exp(x)]]))
print W
W.simplify_rational()

  • Solution by:

    • namdev more, teaching, RGIT,
    • sawankumar khillare, MGM-jnec,

SageDays/Kreyszig-2.7-2 (last edited 2010-08-12 08:43:49 by namdev more)