A convergence and divergence test and a couple integrals

In summary: So you can see that this integral is going to converge (or not) as x approaches 0, depending on the value of a.
  • #1
Bob Busby
47
0
Here are five separate problems.

Show that the series 1/3^(ln(n)) converges and that the series 1/2^(ln(n)) diverges.

integral (sqrt(x)*e^-sqrt(x)) dx

integral (x/(sqrt(x-1)+2)) dx

integral (1/(2+sin(x)+cos(x)

integral (1-cos(x))^(5/2)) dx

There are no other relevant equations.

My attempts at solution lead nowhere and are too long-winded to post. I believe I am just missing one important premise I need to solve these. Any help would be appreciated.
 
Physics news on Phys.org
  • #2
Here are some top-level hints:

OK, for the series, try using the integral test.

For integral #1, make the obvious u substitution, then integrate by parts twice.
For integral #2, make the obvious u substitution, then grind through the rational polynomials integrations.
For integral #3, use the tangent half-angle substitution.
For integral #4, do two u substitutions.
 
  • #3
Thanks for the help.

I made a slight parentheses mistake with the last two integrals. They should be:

integral (1/(2+sin(x)+cos(x)) dx

integral ((1-cos(x))^(5/2)) dx

Does this change your hints at all? I tried manipulating the tangent half-angle formula, but I just turns into mess.

With the 4th integral it seems that no matter what I substitute I end up with nasty, unmanageable square roots when I try to get rid of the sin(x) that comes with the dx.

I'd be grateful for any more help.
 
  • #4
For the third integral, we make the substitution [itex] t = \tan \frac{x}{2} [/itex]. Then:

[tex] \sin x = \frac{2t}{1+t^2}, \cos x = \frac{1 - t^2}{1 + t^2}, dx = \frac{2}{1 + t^2} dt [/tex].

OK, so plug all that in and simplify; you wind up with this:

[tex] \int \frac{2 dt}{3 + t^2 + 2t} [/tex]

Now just do a little rearranging/substitution to get it into a familiar inverse trig form, and everything is spiffy.

For the fourth integral, you have:

[tex] \int (1 - \cos x)^{\frac{5}{2}} dx [/tex]

Make the substitution [itex] u = 1 - \cos x [/itex]. So [itex] du = \sin x dx [/itex].

Now there isn't a [itex] \sin x [/itex] handy in your original integrand, but that's ok.

Suppose we took [itex] 2 - u [/itex], which is [itex] 1 + \cos x [/itex] , and we multiplied it by u, which is [itex] 1 - \cos x [/itex] . That gives us [itex] 1 - \cos^2 x [/itex], which is conveniently equal to [itex] \sin^2 x [/itex] .

So [itex] \sin x = \sqrt{u(2-u)} [/itex]. Since this is part of du, we need to divide the integrand by it. We conveniently have a factor of [itex] \sqrt{u} [/itex] already in the integrand, so we just divide out the [itex] \sqrt{2-u} [/itex] term, which gives us:

[tex] \int \frac{u^2}{\sqrt{2-u}} du [/tex]

I'm sure you can take it from here.
 
  • #5
Awesome. Thanks for the help!

I have a question about the series, though. I can show that the series is always decreasing but I don't know how to integrate 1/3^(ln(n)). I tried using a u-substitution and I ended up with the integral of (e^u/3^u) du which I don't know how to deal with either.

Somebody told me I should use the ratio test, but it ended up being the limit as n goes to infinity of 3^((n)-(n+1)) which is 1 so the result told me nothing. She also said to compare the values of ln(2) and ln(3), but those aren't even in the series. I'm still lost with this problem.
 
  • #6
I don't see how you can use the ratio test for this one, although I may be missing something.

To integrate [itex] \int a^{- \ln x} dx [/itex], make the substitution [itex] u = a^{- \ln x} [/itex]. Now du will have an x in the denominator by the chain rule, so you'll need to find a way to express x in terms of u (hint: [itex] a^{\log_a x} = x [/itex]). Once you do one of the integrals, the other one is just the same. Then simply show that the a = 3 integral converges, while the a=2 integral diverges.

Then, for fun, make a general statement about the series convergence for any value of a.
 
  • #7
I ended up with the integral of -(u*x)/(ln(3)*3^-ln(x)) du

I solved for x and found x = e^log_3(u)

After substituting I got -(e^log_3(u)*u)/(ln(3)*3^-log_3(u)) du which baffles me.
If I wanted to I could change 3^-log_3(u) into 1/u but I still don't see where to go from there.
 
  • #8
[tex] \int a^{- \ln x} dx [/tex]
Make the substitution:
[tex] u = a^{- \ln x} [/tex]
[tex] du = \frac{(\ln a) (a^{- \ln x})}{x} dx = \frac{(\ln a) u}{x} dx[/tex]

Find x in terms of u:
[tex] \log_a u = - \ln x [/tex]

[tex] \frac{\ln u}{\ln a} = -\ln x [/tex]

[tex] x = -u^{\frac{1}{\ln a}} [/tex]

So now:
[tex] du = \frac{(\ln a) (a^{- \ln x})}{x} dx = \frac{(\ln a) u}{-u^{\frac{1}{\ln a}}} dx[/tex]

[tex] du = -(\ln a) u^{1 - \frac{1}{\ln a}} dx[/tex]

OK, now back into the original integral. To make the du work, we need to divide the original integral by [itex] -(\ln a) u^{1 - \frac{1}{\ln a}} [/itex]. So:

[tex] \int a^{- \ln x} dx = - \int \frac{u}{(\ln a)(u^{1 - \frac{1}{\ln a}})} du = - \int \frac{u^{\frac{1}{\ln a}}}{\ln a} du [/tex]

OK, that's the tricky part. The rest is pretty easy.
 
  • #9
Sweet. Then the indefinite integral should be:

(a^(-ln(x)*1/(ln(3))+1))/(ln(a) +1)

The bad news is that evaluating this at infinity and 1 (for the integral test) gives -.59062 for a = 2 and -.47651 for a =3 which means that both of the series converge, which can not be true as the problem tells me that one converges and one diverges.

What's going on?
 
Last edited:
  • #10
(1/2)^(log(x)) is actually x^p for some constant p. Can you find that p? (1/2)^(log(x))=e^(log(1/2)*log(x))=(e^(log(x)))^log(1/2). What do you know about the convergence of p-series?
 
Last edited:
  • #11
From here it goes:
[tex] - \int \frac{u^{\frac{1}{\ln a}}}{\ln a} du = - \frac{u^{(1 -\frac{1}{\ln a})}}{(1 - \frac{1}{\ln a}) \ln a} [/tex]

Substituting back for u:

[tex] -\frac{{(a^{-\ln x})}^{(1 -\frac{1}{\ln a})}}{\ln a - 1} = \frac{x a^{- \ln x}}{1 - \ln a} [/tex] (+C)
 
  • #12
hgfalling said:
From here it goes:
[tex] - \int \frac{u^{\frac{1}{\ln a}}}{\ln a} du = - \frac{u^{(1 -\frac{1}{\ln a})}}{(1 - \frac{1}{\ln a}) \ln a} [/tex]

Substituting back for u:

[tex] -\frac{{(a^{-\ln x})}^{(1 -\frac{1}{\ln a})}}{\ln a - 1} = \frac{x a^{- \ln x}}{1 - \ln a} [/tex] (+C)

Aren't you making this a bit harder than it needs to be? a^(ln(x))=x^(ln(a)), isn't it?
 
  • #13
Yes, much harder. :(

OP, pay attention to what Dick says.
 
  • #14
Dick said:
(1/2)^(log(x)) is actually x^p for some constant p. Can you find that p? (1/2)^(log(x))=e^(log(1/2)*log(x))=(e^(log(x)))^log(1/2). What do you know about the convergence of p-series?

That's so beautiful yet simple. That was the clue I needed.

Thanks to both of you for your help.
 
  • #15
Bob Busby:

you can use Cauchy's Condensation Test for the first part of question 1:
f(n) =< (2^n)*f(2^n)

Also can be done by the Ye'Olde p Test :)
~ 1/(n^1.1)
 

1. What is a convergence and divergence test?

A convergence and divergence test is a mathematical method used to determine whether an infinite series or integral will converge (approach a finite value) or diverge (approach infinity). It is used to evaluate the behavior of a series or integral as the number of terms or the limits of integration increase.

2. How is a convergence and divergence test performed?

A convergence and divergence test involves applying a specific formula or rule to the terms of a series or the integrand of an integral. The result of this formula or rule will indicate whether the series or integral converges or diverges.

3. What are some common convergence and divergence tests?

Some common convergence and divergence tests include the ratio test, the comparison test, the integral test, and the alternating series test. Each of these tests has its own specific formula or rule that is used to evaluate the convergence or divergence of a series or integral.

4. Why is it important to know the convergence or divergence of a series or integral?

Knowing whether a series or integral converges or diverges is important in order to accurately evaluate and understand the behavior of mathematical functions and equations. It also helps in determining the validity of mathematical models and the solutions to real-world problems.

5. How are integrals related to convergence and divergence tests?

Integrals are related to convergence and divergence tests because they can be used to evaluate the convergence or divergence of a series. This is known as the integral test, where the convergence of a series is determined by the convergence of an associated integral. Additionally, integrals themselves can also be evaluated using convergence and divergence tests.

Similar threads

  • Calculus and Beyond Homework Help
Replies
2
Views
180
  • Calculus and Beyond Homework Help
Replies
14
Views
231
  • Calculus and Beyond Homework Help
Replies
3
Views
6K
  • Calculus and Beyond Homework Help
Replies
5
Views
1K
  • Calculus and Beyond Homework Help
Replies
10
Views
433
  • Calculus and Beyond Homework Help
Replies
6
Views
1K
  • Calculus and Beyond Homework Help
Replies
2
Views
839
  • Calculus and Beyond Homework Help
Replies
3
Views
341
  • Calculus and Beyond Homework Help
Replies
2
Views
708
  • Calculus and Beyond Homework Help
Replies
22
Views
1K
Back
Top