Differences between revisions 1 and 2
Revision 1 as of 2010-08-09 14:11:54
Size: 392
Comment:
Revision 2 as of 2010-08-11 13:22:48
Size: 358
Comment:
Deletions are marked like this. Additions are marked like this.
Line 8: Line 8:
x=var('x') #declaring Variable
y=e^-x+e^2*x  
DE=diff(y,x,2)+3*diff(y,x,1) # Equation
print DE #Displaying Result
#2.4-1
x=var('x')
y=fun
ction('y',x)
y=e^(-x)+e^(2*x)
de=diff(y,x,2)+3*diff(y,x,1)
print de
Line 17: Line 19:
   * Mahesh Goheja , Diploma Student, Pravara Polytechnic-Loni 413637    *K B Patil,lecturer,SIGCOE KOPERKHAIRANE NAVI MUMBAI.
  • Book

    Advanced Engineering Mathematics

    Author

    Erwin Kreyszig

    Edition

    8th Edition

#2.4-1
x=var('x')
y=function('y',x)
y=e^(-x)+e^(2*x)
de=diff(y,x,2)+3*diff(y,x,1)
print de

  • Solution by:

    • K B Patil,lecturer,SIGCOE KOPERKHAIRANE NAVI MUMBAI.

SageDays/Kreyszig-2.4-1 (last edited 2010-08-11 13:22:48 by shambulingayya.N.D)