Differences between revisions 2 and 3
Revision 2 as of 2010-12-17 11:24:54
Size: 572
Editor: 172
Comment:
Revision 3 as of 2010-12-17 11:25:52
Size: 515
Editor: 172
Comment:
Deletions are marked like this. Additions are marked like this.
Line 28: Line 28:
  * <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

#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

Kreyszig-2.13-1 (last edited 2010-12-17 11:36:51 by 172)