I Finding the sum of heights under a curve

  • I
  • Thread starter Thread starter yosimba2000
  • Start date Start date
  • Tags Tags
    Curve Sum
yosimba2000
Messages
206
Reaction score
9
In integral calc, you add up very small areas to find the total area under the curve. So it would be f(x1)Δx + f(x2)Δx+ ..., summed up. But what if you wanted to find out the sum of all heights under the curve? So it would be something like f(x1) + f(x2) + ...

I'm thinking the formulation would be this:

Take bounds [a,b], and divide that into many infinite n parts to get a step size of (b-a)/n, lim n -> inf.
Using right end points, evaluate f(x) where x = a + i*(b-a)/n, and i goes from 1 to inf
So it then becomes Σi=1i=n f(xi)

For f(x) = 2x, from 0 to 5
5-0/n, lim n ->inf
xi = 0 + 5i/n = 5i/n

Σi=1i=n 2xi and i = n at the end since you need to add up as many segments as you made (n segments)
Σi=1i=n 2(5i/n)
(10/n)Σi=1i=n i
(10/n)(1+2+3+4+5...+n)
and since (1+2+3+4+5...+n) is greater than n by an infinite amount
then (10/n)(1+2+3+4+5...+n) = infinity?

I think this result makes sense in that there are infinitely many x points to choose under the curve, and they all have a positive height (except for at x=0), so infinitely many positive heights added up = infinity.

What do you think?
 
Mathematics news on Phys.org
yosimba2000 said:
In integral calc, you add up very small areas to find the total area under the curve. So it would be f(x1)Δx + f(x2)Δx+ ..., summed up. But what if you wanted to find out the sum of all heights under the curve? So it would be something like f(x1) + f(x2) + ...
This doesn't make any sense. In any interval [a, b] of nonzero length, there are an uncountable infinity of points.

First off, how are you going to list them? You can use x1, x2, etc., with indices from the integers, because the integers, while infinite, are only countably infinite.
yosimba2000 said:
I'm thinking the formulation would be this:

Take bounds [a,b], and divide that into many infinite n parts to get a step size of (b-a)/n, lim n -> inf.
Using right end points, evaluate f(x) where x = a + i*(b-a)/n, and i goes from 1 to inf
So it then becomes Σi=1i=n f(xi)

For f(x) = 2x, from 0 to 5
5-0/n, lim n ->inf
xi = 0 + 5i/n = 5i/n

Σi=1i=n 2xi and i = n at the end since you need to add up as many segments as you made (n segments)
Σi=1i=n 2(5i/n)
(10/n)Σi=1i=n i
(10/n)(1+2+3+4+5...+n)
and since (1+2+3+4+5...+n) is greater than n by an infinite amount
then (10/n)(1+2+3+4+5...+n) = infinity?

I think this result makes sense in that there are infinitely many x points to choose under the curve, and they all have a positive height (except for at x=0), so infinitely many positive heights added up = infinity.

What do you think?
I think it doesn't make any sense for precisely the reason you say. As you evaluate the function at more and more points, you get larger and larger numbers. How is that useful?
 
Mark44 said:
This doesn't make any sense. In any interval [a, b] of nonzero length, there are an uncountable infinity of points.

First off, how are you going to list them? You can use x1, x2, etc., with indices from the integers, because the integers, while infinite, are only countably infinite.
The limit of n to inf of the interval (b-a)/n is the step size where the function is evaluated. It's the same way a normal integral is calculated, but all I've done is remove multiplying the width by (b-a)/n AKA width of very small size.
https://www.math.ucdavis.edu/~kouba/CalcTwoDIRECTORY/defintdirectory/DefInt.html
 
yosimba2000 said:
The limit of n to inf of the interval (b-a)/n is the step size where the function is evaluated. It's the same way a normal integral is calculated, but all I've done is remove multiplying the width by (b-a)/n AKA width of very small size.
This is a crucial difference. In a Riemann integral you're taking the limit of a sum of products that could be interpreted as areas, with each of them being some small but finite width. What you're doing is just adding up more and more numbers. There's really no comparison.
yosimba2000 said:
 
Insights auto threads is broken atm, so I'm manually creating these for new Insight articles. In Dirac’s Principles of Quantum Mechanics published in 1930 he introduced a “convenient notation” he referred to as a “delta function” which he treated as a continuum analog to the discrete Kronecker delta. The Kronecker delta is simply the indexed components of the identity operator in matrix algebra Source: https://www.physicsforums.com/insights/what-exactly-is-diracs-delta-function/ by...
Fermat's Last Theorem has long been one of the most famous mathematical problems, and is now one of the most famous theorems. It simply states that the equation $$ a^n+b^n=c^n $$ has no solutions with positive integers if ##n>2.## It was named after Pierre de Fermat (1607-1665). The problem itself stems from the book Arithmetica by Diophantus of Alexandria. It gained popularity because Fermat noted in his copy "Cubum autem in duos cubos, aut quadratoquadratum in duos quadratoquadratos, et...
I'm interested to know whether the equation $$1 = 2 - \frac{1}{2 - \frac{1}{2 - \cdots}}$$ is true or not. It can be shown easily that if the continued fraction converges, it cannot converge to anything else than 1. It seems that if the continued fraction converges, the convergence is very slow. The apparent slowness of the convergence makes it difficult to estimate the presence of true convergence numerically. At the moment I don't know whether this converges or not.
Back
Top