Differences between revisions 3 and 4
Revision 3 as of 2010-12-16 07:20:49
Size: 706
Editor: punchagan
Comment: Wrong template used
Revision 4 as of 2010-12-17 06:24:58
Size: 707
Editor: trss
Comment:
Deletions are marked like this. Additions are marked like this.
Line 30: Line 30:
   * Vignesh Ganapathiraman, Student CMI    * Vignesh Ganapathiraman, Student, CMI
  • Book

    Advanced Engineering Mathematics

    Author

    Erwin Kreyszig

    Edition

    8th Edition

# page 66 EXAMPLE 3
# page 66 EXAMPLE 3
reset()
def solve(y):
    y1 = diff(y)
    y2 = diff(y1)
    if y2 * y - x * y1 == 0:
        return 'solution'
    else:
        return 'not a solution'
print solve(x**2)
print solve(1)
print solve(-x**2)
print solve(x**2 + 1)

  • Solution by:

    • T R Shyam Sundar, Student, CMI
    • Sonam Kumar, Student, CMI
    • Vignesh Ganapathiraman, Student, CMI
    • Pooja Kalra, Student, Malwa Institute of Technology

Kreyszig-2.1-3 (last edited 2010-12-17 06:25:47 by trss)