How to do numerical integrarion in Excel

D

Dee

I need to implement the Simpson's rule for numerical integration using Excel
hence determining an approximate solution
 
L

Luke M

A1=Starting value
A2=End value
Example function:
f(x) = x+20

=((A2-A1)/6)*((A1+20)+4*((A1+A2)/2+20)+(A2+20))

The trick is inputting the function correctly.
 
Top