Differences between revisions 1 and 2
Revision 1 as of 2010-12-15 12:53:14
Size: 460
Editor: 172
Comment: Example 3 Euler Cauchy Equation
Revision 2 as of 2010-12-16 11:13:34
Size: 466
Editor: shantipriya
Comment:
Deletions are marked like this. Additions are marked like this.
Line 25: Line 25:
   * W Shanti Priya, Student, I2IT Pune    * <W Shanti Priya>, <Student>, <I2IT Pune>
  • Book

    Advanced Engineering Mathematics

    Author

    Erwin Kreyszig

    Edition

    8th Edition

#example 2 - x^2y" + 7xy' + 13y = 0
var('f,m')
f = m**2 + 6*m + 13
print f

var('m1,m2,y1,y2,c1,c2')
m1,m2 = solve(f==0, m)
print m1,m2

var('y,A,B')
y = (x**-3)*(A*cos(2*ln(x)) + B*sin(2*ln(x)))
print y

  • Solution by:

    • <W Shanti Priya>, <Student>, <I2IT Pune>

SageDays/Kreyszig-Example-4 (last edited 2010-12-16 11:13:34 by shantipriya)