#Solution of Problem Set 2.6 Problem no 12

reset()
#resets the initial values
x = var('x')
y = function ('y',x)

eq=x^2*(diff(y,x,2 ))-0.2*x*diff(y,x)+0.36*y==0
show(eq)

print " The General solution of the above equation is "
p=desolve(eq,y,show_method=True)
show(p[0])
print " The method of solution is",
p[1]

SageDays/Kreyszig-2.6-12 (last edited 2010-08-12 09:40:33 by RahulPalkar)