Differences between revisions 2 and 6 (spanning 4 versions)
Revision 2 as of 2010-12-16 08:45:41
Size: 868
Editor: 172
Comment:
Revision 6 as of 2010-12-17 04:36:35
Size: 740
Editor: 172
Comment:
Deletions are marked like this. Additions are marked like this.
Line 7: Line 7:
{{{#==========================================
#Sprints - 15 Dec 2010
{{{

#==========================================
#  Sprints - 15 Dec 2010
Line 13: Line 15:
#------------------------------------------
c = 2x = 1

c = 2
x = 1
Line 16: Line 19:
y = (x + c/x) / 2
print float(y)
x = y
===========================================
      y = (x + c/x) / 2
      print float(y)
      x = y
Line 23: Line 26:
#------------------------------------------
Line 26: Line 29:
y = (2*x*x*x + 1) / (3*x*x + 1)
print float(y)
x = y
===========================================
      y = (2*x*x*x + 1) / (3*x*x + 1)
      print float(y)
      x = y
  • Book

    Advanced Engineering Mathematics

    Author

    Erwin Kreyszig

    Edition

    8th Edition

#==========================================
#  Sprints - 15 Dec 2010 
#  ANIL PANGANTIWAR - SCIPYIN20100031
#==========================================

# Page 843, Example 3

c = 2
x = 1
for i in range(10):
      y = (x + c/x) / 2
      print float(y)
      x = y



# Page 843, Example 5

x = 1
for i in range(10):
      y = (2*x*x*x + 1) / (3*x*x + 1)
      print float(y)
      x = y

  • Solution by:

    • <Dr. A. W. PANGANTIWAR>, <Associate Prof. in Physics>, <Govt. College of Engineering, KARAD - 415124. Dist. SATARA>

Kreyszig-anilpangantiwar (last edited 2010-12-17 04:36:35 by 172)