Differences between revisions 3 and 4
Revision 3 as of 2010-12-17 11:25:52
Size: 515
Editor: 172
Comment:
Revision 4 as of 2010-12-17 11:36:51
Size: 513
Editor: 172
Comment:
Deletions are marked like this. Additions are marked like this.
Line 7: Line 7:
#example1: {{{
Line 26: Line 26:
}}}
  • 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 result
  • Solution by:

    • Selwyn Jacob, Student, Gitam University

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