Differences between revisions 1 and 2
Revision 1 as of 2010-08-09 14:13:20
Size: 378
Comment:
Revision 2 as of 2010-08-11 13:26:52
Size: 345
Comment:
Deletions are marked like this. Additions are marked like this.
Line 8: Line 8:
x=var('x') #declaring Variable #2.4-2
x=var('x')
y=function('y',x)
Line 10: Line 12:
DE=diff(y,x,1)- 4 # Equation
print DE #Displaying Result
de=diff(y,x,1)-4*y
print de
Line 17: Line 20:
   * 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-2
x=var('x')
y=function('y',x)
y=3*x^2+4*x
de=diff(y,x,1)-4*y
print de

  • Solution by:

    • K B PATIL,LECTURER,SIGCOE KOPERKHAIRANE NAVI MUMBAI.

SageDays/Kreyszig-2.4-2 (last edited 2010-08-11 13:26:52 by shambulingayya.N.D)