Differences between revisions 1 and 2
Revision 1 as of 2010-12-17 10:51:17
Size: 507
Editor: 172
Comment:
Revision 2 as of 2010-12-17 11:50:14
Size: 503
Editor: 172
Comment:
Deletions are marked like this. Additions are marked like this.
Line 22: Line 22:
   * <Dr. A. W. Pangantiwar>, <Associate Professor in Physics>, <Govt. College of Engineering, KARAD - 415124. Dist. Satara> *<Dr. A. W. Pangantiwar>, <Associate Professor in Physics>, <Govt. College of Engineering, KARAD - 415124. Dist. Satara>
  • Book

    Advanced Engineering Mathematics

    Author

    Erwin Kreyszig

    Edition

    8th Edition

#Sec. 17.2, Example 4

x = 2.0
for i in range(10):
    num = 2*(sin(x)-x*cos(x))
    den = (1 - 2*cos(x))
    y = num / float(den)
    print i, x, num, den, y
    x = y

  • Solution by:

*<Dr. A. W. Pangantiwar>, <Associate Professor in Physics>, <Govt. College of Engineering, KARAD - 415124. Dist. Satara>

Kreyszig-17.2-4 (last edited 2010-12-17 11:50:14 by 172)