||'''Book'''|| Advanced Engineering Mathematics || ||'''Author'''|| Erwin Kreyszig || ||'''Edition'''|| 8th Edition || /* code_begins */ {{{ x = var('x') y=function('y',x) DE = diff(y,x,2)-y-8*exp(-3*x) print "GS:", desolve(DE, [y,x]) #check for particular solution yp = exp(-3*x) V = diff(yp,x,2)-yp-8*exp(-3*x) if V == 0: print "yp is a particular solution" else: print "yp is not a particular solution" }}} /* code_ends */ * '''Solution by''': * Zubin Mehta, Student, IIT Bombay