Differences between revisions 1 and 4 (spanning 3 versions)
Revision 1 as of 2010-12-15 12:31:35
Size: 584
Editor: trss
Comment:
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 1: Line 1:
## page was renamed from SageDays/Kreyszig-2.1-3-S
Line 9: Line 10:
# page 66 EXAMPLE 3
Line 13: Line 15:
    return y2 * y - x * y1     if y2 * y - x * y1 == 0:
        return 'solution'
    else:
        return 'not a solution'
Line 23: Line 28:
   * <T R Shyam Sundar>, <Student>, <CMI>
   * <Sonam Kumar>, <Student>, <CMI>
   * <Vignesh Ganapathiraman>, <Student> <CMI>
   * <Pooja Kalra>, <Student>, <Malwa Institute of Technology>
   * T R Shyam Sundar, Student, CMI
   * Sonam Kumar, Student, CMI
   * Vignesh Ganapathiraman, Student, CMI
   * Pooja Kalra, Student, Malwa Institute of Technology
  • 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)