Differences between revisions 1 and 2
Revision 1 as of 2010-12-17 11:28:20
Size: 419
Editor: harsha
Comment:
Revision 2 as of 2010-12-17 11:37:47
Size: 393
Editor: harsha
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

Kreyszig-2.14-11-U (last edited 2010-12-17 11:37:47 by harsha)