|
⇤ ← Revision 1 as of 2010-12-17 11:20:48
Size: 574
Comment:
|
Size: 572
Comment:
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 1: | Line 1: |
| ||'''Book'''|| Advanced Engineering Mathematics || ||'''Author'''|| Erwin Kreyszig || ||'''Edition'''|| 8th Edition || |
||'''Book''' ||Advanced Engineering Mathematics || ||'''Author''' ||Erwin Kreyszig || ||'''Edition''' ||8th Edition || |
| Line 8: | Line 8: |
| # given function y1 = x, y2 = 3x, y3 = x^2 #equation y2 can be represented using y1 and y3 as |
# given function y1 = x, y2 = 3x, y3 = x^2 #equation y2 can be represented using y1 and y3 as |
| Line 13: | Line 12: |
| Line 14: | Line 14: |
| Line 15: | Line 16: |
| Line 18: | Line 20: |
| Line 20: | Line 23: |
| result = y2 - 3*y1 - 0*y3 | |
| Line 21: | Line 25: |
| result = y2 - 3*y1 - 0*y3 | |
| Line 24: | Line 27: |
* '''Solution by''': * <Selwyn Jacob>, <Student>, <Gitam University> * <Selwyn Jacob>, <Student>, <Gitam University> |
* '''Solution by''': * <Selwyn Jacob>, <Student>, <Gitam University> * <Selwyn Jacob>, <Student>, <Gitam University> |
Book
Advanced Engineering Mathematics
Author
Erwin Kreyszig
Edition
8th Edition
#example1:
# 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 result
Solution by:
<Selwyn Jacob>, <Student>, <Gitam University>
<Selwyn Jacob>, <Student>, <Gitam University>
