|
⇤ ← Revision 1 as of 2010-08-09 14:09:14
Size: 376
Comment:
|
Size: 358
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,
