Limit Comparison Test for Convergence or Divergence: (n+5)/(n^3-2n+3) and n/n^3

Click For Summary

Homework Help Overview

The discussion revolves around determining the convergence or divergence of the series \(\sum \frac{n+5}{n^3-2n+3}\) using the limit comparison test. Participants are exploring the behavior of the series as \(n\) approaches infinity, particularly focusing on the ratio of terms involved.

Discussion Character

  • Exploratory, Assumption checking, Mathematical reasoning

Approaches and Questions Raised

  • Participants attempt to apply the limit comparison test by comparing \(\frac{n+5}{n^3-2n+3}\) with \(\frac{n}{n^3}\) and later suggest using \(\frac{1}{n^2}\) as a comparison. There are discussions about simplifying limits and the significance of dominant terms in the numerator and denominator as \(n\) approaches infinity.

Discussion Status

The discussion is ongoing, with various interpretations of the limit being explored. Some participants express confusion about the algebra involved, while others provide corrections and clarifications regarding the simplification of the limit. There is no explicit consensus yet, but participants are engaging with the mathematical concepts and attempting to clarify their understanding.

Contextual Notes

Participants are working under the constraints of a homework assignment, which may limit the information they can use or the methods they can apply. There are indications of uncertainty regarding the algebraic manipulations and the implications of the limit results.

ProPatto16
Messages
323
Reaction score
0

Homework Statement



show whether [tex]\sum[/tex] (n+5)/(n3-2n+3) is convergant of divergant

Homework Equations



limit comparison test, lim an/bn = c where c > 0

The Attempt at a Solution



an is given
let bn = n/n3

so then:

lim (n+5)/(n3-2n+3)
n/n3
= lim (n+5)n3 / (n3 - 2n + 3)n
= lim (n4 + 5n3) / (n4 - 2n2 +3n)
= lim (5n3) / (-2n2+3n)

now as n -> infinity, lim (5n3) / (-2n2+3n) -> -5n/2

and as n -> inifinity, -5n/2 -> -inifinity... therefore divergant? since c < 0??


feel free to tell me i have no idea. these things confuse me so much.
 
Physics news on Phys.org
ProPatto16 said:

Homework Statement



show whether [tex]\sum[/tex] (n+5)/(n3-2n+3) is convergant of divergant

Homework Equations



limit comparison test, lim an/bn = c where c > 0

The Attempt at a Solution



an is given
let bn = n/n3

so then:

lim (n+5)/(n3-2n+3)
n/n3
= lim (n+5)n3 / (n3 - 2n + 3)n
= lim (n4 + 5n3) / (n4 - 2n2 +3n)
= lim (5n3) / (-2n2+3n)

now as n -> infinity, lim (5n3) / (-2n2+3n) -> -5n/2

and as n -> inifinity, -5n/2 -> -inifinity... therefore divergant? since c < 0??


feel free to tell me i have no idea. these things confuse me so much.

Instead of bn = n/n3, simplify this to 1/n2.

The limit you should be working with is
[tex]\lim_{n \to \infty} \frac{\frac{n + 5}{n^3 - 2n + 3}}{\frac{1}{n^2}}[/tex]
 
that limit simplifies to

lim 5n2/(-2n+3)

so then my previous explantion still stands...

now as n -> infinity, lim (5n2) / (-2n+3) -> -5n/2

and as n -> inifinity, -5n/2 -> -inifinity... therefore divergant? since c < 0??

so i dunno...

i also tried taking the simplified limit and dividing through by n2 which gives

lim 5/(-2/n + 3/n2) and i know the limit of 1/n or 1/n2
and all varieties is 0... so then

lim 5/(-2/n + 3/n2) = 5/(0-0) = 0... since that is not >0... then it hasnt worked...
 
No, that is incorrect. Remember for a rational function f(n), if you let n go to infinity only the terms with the largest exponent on n remain in the numerator and in the denominator.

For instance, lim (5n^2 + 1000n)/(3n^2 + 40n + 500) is simply lim (5n^2)/(3n^2) = 5/3. Intuitively as n grows beyond all bounds, 5n^2 completely dominates 1000n in the numerator, and similarly 40n + 500 is insignificant compared to 3n^2 when n is approaching infinity.
 
ProPatto16 said:
that limit simplifies to

lim 5n2/(-2n+3)
so then my previous explantion still stands...

Check your algebra. For large n, the numerator grows at exactly the same rate as the denominator.
 
yeah i used that method of thinking to reduce the limit down:

so then lim 5n2/(-2n+3) becomes lim 5n/-2

but then i don't know where to go from there..
 
ProPatto16 said:
yeah i used that method of thinking to reduce the limit down:

so then lim 5n2/(-2n+3) becomes lim 5n/-2

but then i don't know where to go from there..
That's still wrong. The limit is a finite constant.
 
mark... yeah i did... it all comes down to a ratio of -2.5n... so the limit still dpeends on n.

if n = 1000000000 then it comes to -2500000004... i can see the effect here... i just can't summarise it in a way that gives me an appropriate answer...
 
the only finite constant here that would make any relevant sense is -5/2...
 
  • #10
ProPatto16 said:
mark... yeah i did... it all comes down to a ratio of -2.5n... so the limit still dpeends on n.

if n = 1000000000 then it comes to -2500000004... i can see the effect here... i just can't summarise it in a way that gives me an appropriate answer...
No, it does not depend on n.

ProPatto16 said:
the only finite constant here that would make any relevant sense is -5/2...
No.

The numerator is (n + 5)/(n^3 - 2n + 3). The denominator is 1/n^2. For large n, the numerator is roughly n/n^3 or 1/n^2.

CHECK YOUR ALGEBRA!
 
  • #11
(n+5)/(n3-2n+3) is the numerator. for large values of n... this becomes n/n3

the denominator is 1/n2

the numerator can simplify down to 1/n2 also.

so then:

lim (n+5)/(n3-2n+3) / 1/n2

becomes lim 1/n2 / 1/n2

= 1
since this is greater than 0... both functions converge or diverge... and since 1/n2 converges... so does (n+5)/(n3-2n+3) ??
 
  • #12
ProPatto16 said:
(n+5)/(n3-2n+3) is the numerator. for large values of n... this becomes n/n3
Which is 1/n^2.
ProPatto16 said:
the denominator is 1/n2

the numerator can simplify down to 1/n2 also.

so then:

lim (n+5)/(n3-2n+3) / 1/n2

becomes lim 1/n2 / 1/n2

= 1
YES!
ProPatto16 said:
since this is greater than 0... both functions converge or diverge... and since 1/n2 converges... so does (n+5)/(n3-2n+3) ??
Yes.
 
  • #13
thank you. sorry for being frustrating.
 
  • #14
Here are the steps in evaluating that limit.
[tex]\lim_{n \to \infty} \frac{\frac{n + 5}{n^3 - 2n + 3}}{\frac{1}{n^2}}[/tex]
[tex]=\lim_{n \to \infty} \frac{n + 5}{n^3 - 2n + 3} \frac{n^2}{1}[/tex]
[tex]=\lim_{n \to \infty} \frac{n(1 + 5/n)}{n^3(1 - 2/n^2 + 3/n^3} \frac{n^2}{1}[/tex]
[tex]=\lim_{n \to \infty} \frac{(1 + 5/n)}{(1 - 2/n^2 + 3/n^3} \frac{1}{1}[/tex]
= 1

I did quite a bit of cancelling after factoring out n, n^3, and so forth. All of the terms with n to some power in the denominator go to zero when n gets large.
 
  • #15
i see... factorise out the highest exponent that appears in the equation.

thanks a lot:)
 

Similar threads

  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K
Replies
2
Views
1K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 10 ·
Replies
10
Views
3K
  • · Replies 6 ·
Replies
6
Views
1K
  • · Replies 4 ·
Replies
4
Views
2K
Replies
14
Views
2K