Differences between revisions 1 and 2
Revision 1 as of 2010-08-11 12:35:32
Size: 435
Editor: AniketBasu
Comment:
Revision 2 as of 2010-08-11 12:36:36
Size: 435
Editor: AniketBasu
Comment:
Deletions are marked like this. Additions are marked like this.
Line 8: Line 8:
#Prob 13 - Solving a 2nd order ODE with nonzero variable parameter k #Prob 12 - Solving a 2nd order ODE with nonzero variable parameter k
  • Book

    Advanced Engineering Mathematics

    Author

    Erwin Kreyszig

    Edition

    8th Edition

#Prob 12 - Solving a 2nd order ODE with nonzero variable parameter k
var('x')
y=function('y',x)
k=2
de=diff(y,x,2)+2*k*diff(y,x)+(k^2+1/k^2)*y==0
desolve(de,y)

  • Solution by:

    • <Aniket Basu>, <Mathematical Physicist>, <ISI Kolkata>

SageDays/Kreyszig-2.3-12 (last edited 2010-08-11 12:36:36 by AniketBasu)