Differences between revisions 1 and 3 (spanning 2 versions)
Revision 1 as of 2010-08-09 14:09:14
Size: 376
Editor: sawankumar
Comment:
Revision 3 as of 2010-08-12 08:43:49
Size: 347
Editor: namdev more
Comment: As W!=0,the basis functions are linearly independent
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)]]))
Line 17: Line 17:
   * sawankumar khillare, MGM-jnec,    * dilip,teaching,RGIT
  • 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,
    • dilip,teaching,RGIT

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