|
Size: 706
Comment: Wrong template used
|
Size: 707
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
