Differences between revisions 1 and 2
Revision 1 as of 2010-08-10 14:00:52
Size: 870
Editor: bhanukiran
Comment:
Revision 2 as of 2010-08-11 11:16:28
Size: 834
Editor: bhanukiran
Comment:
Deletions are marked like this. Additions are marked like this.
Line 55: Line 55:
   * ujwala, lecturer, aurangabad
  • Book

    Advanced Engineering Mathematics

    Author

    Erwin Kreyszig

    Edition

    8th Edition

x = var('x')    # define a variable x
y = function('y',x)   # define y to be a function of that variable
DE = diff(y, x) - exp(-x^(2))

func = desolve(DE, [y,x],ics=(0,0))

show(func)

plot(func,x )


func = desolve(DE, [y,x],ics=(1,0))

show(func)

plot(func,x )


func = desolve(DE, [y,x],ics=(-1,0))

show(func)

plot(func,x )


func = desolve(DE, [y,x],ics=(2,0))

show(func)

plot(func,x )


func = desolve(DE, [y,x],ics=(-2,0))

show(func)

plot(func,x )

  • Solution by:

    • gnash, developer, space
    • bhanukiran, student, technical university of Delft
    • saransh, student, sobhit university

SageDays/Kreyszig-1.3-27 (last edited 2010-08-11 11:16:28 by bhanukiran)