|
⇤ ← Revision 1 as of 2010-12-17 11:28:20
Size: 419
Comment:
|
← Revision 2 as of 2010-12-17 11:37:47 ⇥
Size: 393
Comment:
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 10: | Line 10: |
| deq1 = diff(y,x,3)-3*diff(y,x,2)+3*diff(y,x)-y==0 soln = desolve_laplace(deq1 , [y,x] , ics=[2,2,10]) |
eq1 = diff(y,x,4)==0 soln = desolve_laplace(eq1 , [y,x] , ics=[1,16,-4,24]) |
Book
Advanced Engineering Mathematics
Author
Erwin Kreyszig
Edition
8th Edition
x = var('x')
y = function('y',x)
eq1 = diff(y,x,4)==0
soln = desolve_laplace(eq1 , [y,x] , ics=[1,16,-4,24])
soln
plot(y)
Solution by:
- V Krishna Harsha , Student ,ASR College Of Engineering
