Integrability question: intro to analysis

In summary, the homework statement states that find the integral of f(x) = x by finding a number A such that L(p,f) <= A <= U(p,f) for all partitions p of [0,1]. However, the problem does not work out using induction, and the solution requires the use of a recursive step.
  • #1
icantadd
114
0

Homework Statement


find the integral of f(x) = x by finding a number A such that L(p,f) <= A <= U(p,f) for all partitions p of [0,1].

where a partition p of an interval [a,b] is of the form {x0,x1, ... , xn}

Homework Equations



L(p,f) is the lower sum of f with respect to the partition p. In this case f is increasing so
L(p,f) = [tex]\sum_{i=1}^{n} x_{i-1}*(x_{i}-x_{i-1})[/tex]
and
U(p,f) = [tex]\sum_{i=1}^{n} x_{i}*(x_{i}-x_{i-1})[/tex] is the upper sum of f with respect to partition p.

The Attempt at a Solution



What I thought would work is to show inductively that L(p,f) is less than 1/2 and the U(p,f) is greater than 1/2. But then I get stuck at how to use the recursive step.

StepI: L(p,f) = 0*(1-0) = 0 < 1/2
StepII: Assume [tex]\sum_{i=1}^{n} x_{i-1}*(x_{i}-x_{i-1})[/tex] <= 1/2. To prove [tex]\sum_{i=1}^{n+1} x_{i-1}*(x_{i}-x_{i-1})[/tex]

Then here is where I am stuck. How do I inject an extra value into this partition. I guess that the sum from 1 to n+1 above should be less than something which equals the inductive hypothesis which is less than 1/2, but I don't know what trick to use to get there.

Can anyone maybe clear this up, or if there is a perhaps better way to do this, hint me in a different direction. Thank you greatly in advance!
 
Last edited:
Physics news on Phys.org
  • #2
One comment.
The first term in your lower sum has [tex]x_{i-1}[/tex] in it, when i = 1, which means that it is referring to [tex]x_{0}[/tex]. There is no such term in your partition.
 
  • #3
You are right. I meant P = {x0,x1,...,xn}. I fixed it above. Note also that x0 should equal 0 and that xn (or x_(n+1)) should equal 1. Thank you.
 
  • #4
After thinking about this some more, I've come up with something that might be of help. Use a partition that is equally spaced, with each subinterval of length 1/n. If someone has a quibble that you need to show this for any partition P, just specify n large enough so that all your subintervals are smaller than the smallest subinterval in the other partition.

Let P = {0, 1/n, 2/n, 3/n, ..., (n-1)/n, n/n = 1}
A lower bound for the area beneath y = x is given by:

L_n = 0*1/n + 1/n * 1/n + 2/n * 1/n + ... + (n - 1)/n * 1/n

Here, I'm using the y-values at the left end of each subinterval, since we're dealing with a monotonically increasing function.

The sum above has n terms, where 1/n is present twice in each term, so it can be factored out.

[tex]L_n = \frac{1}{n^2} [0 + 1 + 2 + 3 + ... + (n - 1)][/tex]
So [tex]L_n = \frac{1}{n^2} \frac{n(n - 1)}{2}[/tex], using the well-known fact that the sum of the first (n - 1) integers is n(n - 1)/2. [A perhaps more well-known fact is that the sum of the first n integers is n(n+1)/2.]

From the above, we can see that [tex]L_n = \frac{n^2(1 -1/n)}{2n^2} [/tex]. It's pretty easy to see that this is less than 1/2 for all n > 0.
 
  • #5
Yes, I agree. To satisfy any partition it is obvious that 1/n can be as fine as It like. I have trouble saying things are obvious, just because I don't know where to draw the line yet. But, it is obvious that taking the value of the function at the leftmost point (as you have done), will always underestimate the area under that interval, and so if you make those leftmost points arbitrarily close, then you have that some thing that is a bigger underestimate. The solution you provided does this, it says, take as big and underestimate as you like, it will still be less than 1/2.

Thank you Mark. Here is a question I have for you: Any time I see something indexed by natural numbers, and I want to show something that relies on those indexes, such as a partition, I immediately think induction. Yet, this problem works out very pretty without induction. Is there a way you look at a problem and say, "oh I should(not) use induction here?"
 
  • #6
hey, but why not using this one:
[tex]x_{i-1} (x_{i}-x_{i-1}) < \frac{x_{i}+x_{i-1}}{2} (x_{i}-x_{i-1})=\frac{x^{2}_{i}-x^{2}_{i-1}}{2}[/tex]
you can sum them up easily. and draw a graph you will see why this inequality works pretty well

Mark44,
what if I let P={0,sqrt(2),1}? so that P*={0,1/n,2/n,...,1} would not be a refinement of P. I'm thinking that L(P*,f)>=L(P,f) is not guaranteed if P* is not a refinement of P.
 
  • #7
boombaby said:
hey, but why not using this one:

what if I let P={0,sqrt(2),1}? so that P*={0,1/n,2/n,...,1} would not be a refinement of P. I'm thinking that L(P*,f)>=L(P,f) is not guaranteed if P* is not a refinement of P.

No you have a syntax error. sqrt(2) > 1 and P is not a valid partition of [0,1]. What you wish to get at is that Q is a refinement of P in case P must be a subset of Q. So sure, you could make a partition of of irrational numbers, but to the best of my knowledge a partition must be countable, and the partition Mark gave will be as refined as one needs i.e. you can identify a max partition size denoted u(P) such that u(P) is as small as one needs to make a sequence of Lower (or upper) sums converge to the Lower (or upper) integral.
 
  • #8
..that sqrt(2) was a mistake...sqrt(2)/2 would be ok...
but yes, Q is a refinement of P iff P is a subset of Q.

You can use arbitrary partition only if the existence of the integral is guaranteed first..I cannot give a counter example right now, since finding one seems somewhat difficult for me...
 
  • #9
boombaby said:
..that sqrt(2) was a mistake...sqrt(2)/2 would be ok...
but yes, Q is a refinement of P iff P is a subset of Q.

You can use arbitrary partition only if the existence of the integral is guaranteed first..I cannot give a counter example right now, since finding one seems somewhat difficult for me...

Hmm, I need to think about that. I only know Riemann integrability, so I may be missing some points in real Real analysis, but I have a theorem that states that a function f is Riemann integrable iff for any e there exists a partition such that the upper sum with respect to that partition minus the lower sum is less than or equal to e. So, I only need to show how small the size of the biggest interval created by a partition, is with respect to e. I don't know. I should be able to make a sequence of P's that converge to the integral; I'm not sure why an infinitely refined partition would not take care of such needs. Any ideas??
 
  • #10
ah..you remind me. There exists a such partition is okay...I'm sorry to bring lots of troubles. My head was dumb...:)
 
  • #11
boombaby said:
hey, but why not using this one:
[tex]x_{i-1} (x_{i}-x_{i-1}) < \frac{x_{i}+x_{i-1}}{2} (x_{i}-x_{i-1})=\frac{x^{2}_{i}-x^{2}_{i-1}}{2}[/tex]
you can sum them up easily. and draw a graph you will see why this inequality works pretty well

Mark44,
what if I let P={0,sqrt(2)/2,1}? so that P*={0,1/n,2/n,...,1} would not be a refinement of P. I'm thinking that L(P*,f)>=L(P,f) is not guaranteed if P* is not a refinement of P.

(I edited your partition to fix the error.)
I didn't say anything about a refinement of a given partition, just that the new partition's subinterval size be less than the smallest subinterval of the given partition. With your partition P as described above, a new partition P* = {0, 1/4, 1/2, 3/4, 1} will give an estimate that is closer to 1/2 than will the partition P.
 

1. What is integrability in the context of analysis?

Integrability in analysis refers to the property of a function to be integrated, or the ability to find the area under its curve. It is a fundamental concept in calculus and is used to calculate various quantities such as volume, work, and probability.

2. How is integrability different from continuity?

Continuity and integrability are two separate concepts, although they are related. Continuity refers to the smoothness of a function, while integrability refers to the ability to find the area under a function's curve. A function can be continuous but not integrable, or integrable but not continuous.

3. What are the different types of integrals in analysis?

There are several types of integrals in analysis, including Riemann, Lebesgue, and improper integrals. Riemann integrals are used for continuous functions, while Lebesgue integrals are used for more general functions. Improper integrals deal with functions that are undefined at certain points or approach infinity.

4. What is the fundamental theorem of calculus?

The fundamental theorem of calculus states that the derivative of an integral is equal to the original function. In other words, integration and differentiation are inverse operations. This theorem is the basis for many important concepts and techniques in analysis.

5. How is integrability used in real-world applications?

Integrability has many real-world applications, such as calculating the area under a curve to find the volume of a shape or determining the work done by a force. It is also used in probability to find the likelihood of certain events occurring. In physics and engineering, integrability is used to solve problems involving continuous functions and physical quantities.

Similar threads

  • Calculus and Beyond Homework Help
Replies
10
Views
1K
  • Calculus and Beyond Homework Help
Replies
2
Views
1K
Replies
16
Views
2K
  • Calculus and Beyond Homework Help
Replies
7
Views
2K
  • Calculus and Beyond Homework Help
Replies
3
Views
416
  • Calculus and Beyond Homework Help
Replies
2
Views
423
  • Calculus and Beyond Homework Help
Replies
4
Views
653
  • Calculus and Beyond Homework Help
Replies
6
Views
390
Replies
7
Views
1K
  • Calculus and Beyond Homework Help
Replies
6
Views
876
Back
Top