|
Size: 572
Comment:
|
← Revision 4 as of 2010-12-17 11:36:51 ⇥
Size: 513
Comment:
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 7: | Line 7: |
| #example1: | {{{ |
| Line 26: | Line 26: |
| }}} | |
| Line 28: | Line 29: |
| * <Selwyn Jacob>, <Student>, <Gitam University> * <Selwyn Jacob>, <Student>, <Gitam University> |
* Selwyn Jacob, Student, Gitam University |
Book
Advanced Engineering Mathematics
Author
Erwin Kreyszig
Edition
8th Edition
# given function y1 = x, y2 = 3x, y3 = x^2 #equation y2 can be represented using y1 and y3 as
var('y1,y2,y3,x')
y1 = x
y2 = 3*x
y3 = x^2
# these functions are linearly dependent on any interval as
# y2 = 3y1 + 0y3 => y2 - 3y1 - 0y3 = 0
result = y2 - 3*y1 - 0*y3
print resultSolution by:
- Selwyn Jacob, Student, Gitam University
