Find Limit of Integral: Homework Statement

  • Thread starter Thread starter snipez90
  • Start date Start date
  • Tags Tags
    Integral Limit
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
2 replies · 1K views
snipez90
Messages
1,095
Reaction score
5

Homework Statement


Consider the function f: R -> R, [tex]f(x) = (x^2 + 1)e^x .[/tex] Find the limit [tex]\mathop {\lim }\limits_{n\rightarrow\infty}n\int_{0}^{1}\left(f\left(\frac{x^2}{n}\right) - 1\right).[/tex]


Homework Equations


e^x > x + 1 for nonzero real x

The Attempt at a Solution


After a bit of algebra, we find that the original limit is
[tex]\mathop {\lim }\limits_{n\rightarrow\infty}\frac{1}{n}\int_{0}^{1}e^{\frac{x^2}{n}}x^4\,dx + \mathop {\lim }\limits_{n\rightarrow\infty}n\int_{0}^{1}\left(e^{\frac{x^2}{n}}-1\right)\,dx.[/tex]

In the first limit, the integrand is increasing on [0,1], so we have
[tex]0 \leq \frac{1}{n}\int_{0}^{1}e^{\frac{x^2}{n}}x^4\,dx \leq \frac{e}{n},[/tex]
which implies that the first limit is 0 by the squeeze theorem.

I'm not sure how to compute the second limit though. I can find a lower bound on the integrand via e^x > x + 1, but what is a suitable upper bound on the integrand? Thanks in advance.
 
Physics news on Phys.org
snipez90 said:
I'm not sure how to compute the second limit though. I can find a lower bound on the integrand via e^x > x + 1, but what is a suitable upper bound on the integrand? Thanks in advance.

Hi snipez90! :smile:

Have you tried expanding ex2/n - 1 as a function of x2/n ?
 
...

[tex]\frac{x^2}{n} \leq e^{\frac{x^2}{n}} - 1 &=& \frac{x^2}{n} + \frac{x^4}{n^2}\cdot\frac{1}{2!} + \frac{x^6}{n^3}\cdot\frac{1}{3!} + ... \\ <br /> &=& \frac{x^2}{n} + \frac{x^4}{n^2}\left(\frac{1}{2} + \frac{x^2}{n}\cdot\frac{1}{3!} + \frac{x^4}{n^2}\cdot\frac{1}{4!} + ... \right) \\ <br /> &\leq& \frac{x^2}{n} + \frac{x^4}{n^2}\left(\frac{1}{2!} + \frac{1}{3!} + \frac{1}{4!} + ...\right) \leq \frac{x^2}{n} + e\cdot\frac{x^4}{n^2}[/tex]

for x in [0,1]. Hence

[tex]\frac{1}{3} \leq n\int_{0}^{1} e^{\frac{x^2}{n}}\,dx \leq \frac{1}{3} + \frac{e}{5n},[/tex]

from which it follows that the limit is 1/3 as n -> infinity by another application of the squeeze theorem, which should be the answer to the original limit.

Thanks tiny-tim.