|
Size: 584
Comment:
|
Size: 707
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
