Newton's method to approximate integrals?

In summary, methods for approximating definite integrals can be found by looking for polynomial functions that approximate the function we're integrating, by using a Fourier series, or by using a taylor approximation.
  • #1
Poly1
32
0
Can we use Newton's method to approximate the value of definite integrals? (Thinking)

EDIT: Ignore if the question doesn't make sense (which it probably doesn't).
 
Last edited:
Physics news on Phys.org
  • #2
I think it's a valid question.

Now, I won't say it is impossible, but I have never seen Newton's method used as a means for numeric integration.

However, there are methods called the Newton-Cotes formula which use polynomials as a way to approximate definite integrals.

I plan to discuss the derivation of these in the future.:D
 
  • #3
I look forward to it! :D
 
  • #4
almost all ways of computing integrals (except by anti-differentiation, that is: finding a primitive) use some kind of "simple function" to serve as a proxy for the function we're integrating.

riemann sums use constant functions
the trapezoid rule uses linear functions
simpson's rule (in its most basic form) use parabolas (quadratic functions)

all of these can been seen as "special" cases of using a polynomial instead of f(x), so if we're brave enough, we can use a taylor approximation.

something along a different tack is using a Fourier series (trigonometric approximation). once the Fourier coefficients are known (which, unfortunately, require computing some OTHER integrals first), integrating is very simple, as the integrals of the terms:

$$\int_a^b a_n \cos(nx)\ dx,\ \int_a^b b_n \sin(nx)\ dx$$

are straight-forward (there may be some "adjustment factors" to fit the period to the interval [a,b] which can result in some constant factors not shown).

all of these are important, because there are some fairly simple to write down integrals for which no primitives (in terms of other "elementary functions": that is combinations of polynomials, logs, or exponentials (if one allows the euler definition of sine and cosine this includes the trigonometric functions)) exist. the most famous of these is probably this integral:

$$\int e^{-x^2}\ dx$$

which occurs quite frequently in applications of mathematics (as a (suitably adjusted) "normal distribution" in probability, and which also is extremely important in signal processing). which means we NEED numerical approximations of integrals to solve "real problems".

it turns out, for example, that calculating the arc-length of an elliptical arc, is one such difficult problem (surprisingly enough, calculating the area under an elliptical arc is not so bad...you might suspect from this that "boundaries" of regions often tend to be more intractible than the regions themselves, and you'd be right).
 

Related to Newton's method to approximate integrals?

1. What is Newton's method to approximate integrals?

Newton's method is a numerical technique used to approximate the value of a definite integral. It involves dividing the integral into smaller intervals and using the average of the function values at each interval to estimate the integral.

2. How does Newton's method work?

To use Newton's method, the integral is divided into equal intervals and the function values at each interval are calculated. The average of these function values is then multiplied by the width of the interval to get an approximate value for the integral. This process is repeated with smaller intervals until the desired level of accuracy is achieved.

3. What are the advantages of using Newton's method to approximate integrals?

Newton's method is a simple and efficient way to approximate integrals. It requires minimal computation and can be easily programmed on a computer. It is also relatively accurate, especially when the number of intervals used is large.

4. Are there any limitations to using Newton's method?

One limitation of Newton's method is that it may not be accurate for functions with rapidly changing slopes or sharp corners. Additionally, the accuracy of the approximation depends on the number of intervals chosen, so a larger number of intervals may be needed for more complex functions.

5. Is Newton's method the most accurate method for approximating integrals?

No, there are other methods that may provide more accurate approximations for certain types of integrals. However, Newton's method is a widely used and reliable technique for many applications.

Similar threads

  • Calculus
Replies
13
Views
1K
  • Calculus
Replies
8
Views
628
Replies
22
Views
3K
Replies
11
Views
401
  • Calculus
Replies
12
Views
942
Replies
7
Views
4K
Replies
31
Views
1K
Replies
2
Views
2K
  • Engineering and Comp Sci Homework Help
Replies
1
Views
223
Replies
14
Views
2K
Back
Top