|
⇤ ← Revision 1 as of 2010-08-09 14:01:58
Size: 490
Comment:
|
← Revision 2 as of 2010-08-10 13:40:46 ⇥
Size: 530
Comment:
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 21: | Line 21: |
| * Pankaj Pandey, Student, IIT Bombay | * manoj kumar yadav,student,AIT PUNE * MANMOHAN SINGH, student, AIT PUNE |
Book
Advanced Engineering Mathematics
Author
Erwin Kreyszig
Edition
8th Edition
x = var('x') # define a variable x
y = function('y',x) # define y to be a function of that variable
DE = x*diff(y,x) + y == 0
print 'Differential Equation:'
show(DE)
soln = desolve(DE, [y,x], ics=(-2,2))
print 'Solution:'
show(soln)
Solution by:
- manoj kumar yadav,student,AIT PUNE
- MANMOHAN SINGH, student, AIT PUNE
