Differences between revisions 1 and 2
Revision 1 as of 2010-12-15 12:44:07
Size: 500
Editor: 172
Comment:
Revision 2 as of 2010-12-15 12:47:16
Size: 580
Editor: 172
Comment:
Deletions are marked like this. Additions are marked like this.
Line 21: Line 21:
p=10
f=(x**2+y**2)**(1/2)
print f
plot3d(p*f, (x, -100, 100), (y,-100,100))
  • Book

    Advanced Engineering Mathematics

    Author

    Erwin Kreyszig

    Edition

    8th Edition

var('p')
w=vector([0,0,p])
print w
var('x')
var('y')
var('z')
r=vector([x , y , z])
print r
w.cross_product(r)
p=10
f=(x**2+y**2)**(1/2)
print f
plot3d(p*f, (x, -100, 100), (y,-100,100))

/* code_ends

  • Solution by:

    • <A.V.Trinath>, <student>, <IIIT-H>

    • <Your Name>, <Profession>, <Organization>

Kreyszig-kreszig 8-2 (last edited 2010-12-15 12:53:32 by 172)