I wrote the following piece of code for Simpson's rule integration to approximate sin. The equation is in this attachment. I wrote separate loops for the even and odd terms, as they are shown grouped in the attachment.
import math
x1=0
x2=math.pi
N=6
delta_x=(x2-x1)/N
f=math.sin
sum=f(0)
#odd summation
for i in range (1,N+1):
sum=sum+f(x1+(2*i+1)*delta_x)
sum=4*sum
print(sum)
#even summation
for i in range(2,N+1):
sumeven=0
sumeven=sumeven+f(x1+(2*i)*delta_x)
sumeven=2*sumeven
sumeven=sumeven+f(N)
print(sumeven)
integral=(delta_x/3)*(sum+sumeven)
print(integral)
But when I print the values, it gives me very small negative numbers.
Can anyone see what is wrong with my code?
First of all, learn some basic debugging. You've done only two simple
print
lines for this code, neither of which traces the more detailed problems. See this lovely debug blog for help. I added some instrumentation, cleaned up some style, and ran the code again, tracing the logic and data flow somewhat better. Diagnosis below.Output:
DIAGNOSIS
You have two immediate problems:
Fix the initialization, fix the limits, and you should see good results, more like this:
Also, I strongly recommend that you work through tutorials on debugging and coding style; these will help you in future work. I know from experience. :-)