Calculate Area Under Curve: What Function?

  • Thread starter Thread starter henil
  • Start date Start date
  • Tags Tags
    Area Curve
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
6 replies · 2K views
henil
Messages
18
Reaction score
0
i want to calculate area under the curve but i do no not know what function does it satisfies. how should i proceed ?
 
Physics news on Phys.org
I'm not sure what you are asking about. Do you have a known function f(x) which you want to integrate, and wonder how to do it numerically?
 
no i don't know f(x) i just have x and y datapoints
 
Then you need to decide how to interpolate between the data points. Some possibilities:
  • Use the points to define "stair-steps" (a series of rectangles)
  • Construct straight lines between the points (a series of trapezoids)
  • Do a least-squares fit to a suitable type of function (polynomial, exponential, etc.)
  • Construct a spline curve that passes through all the points exactly.
 
The best you can do is:
  1. Sort the data points in ascending order in the xn
  2. The best approximation for the area between (xj, yj) and (xj+1, yj+1) is given by [itex]A_{j}=(x_{j+1}-x_{j})\cdot\frac{y_{j+1}+y_{j}}{2}[/itex] (this is called the trapezoid rule)
  3. Add up these areas.
 
henil said:
no i don't know f(x) i just have x and y datapoints
If the x values of the data points occur at regular intervals, you can use a numerical integration technique like Simpson's Rule to perform the calculations. Simpson's Rules are based on using second- and third-order interpolation functions, which is usually more accurate than the simpler trapezoidal rule.

You really should plot your data to see which method would give you the accuracy of result you desire.
 
okay i will try all your suggestions.
thank you for your help.