How do I show a sequence like this is bounded?

  • Context: Undergrad 
  • Thread starter Thread starter bbb999
  • Start date Start date
  • Tags Tags
    Bounded Sequence
Click For Summary

Discussion Overview

The discussion revolves around the boundedness of a recursive sequence defined by s_{n+1} = (s_n + 10) / (s_n + 1). Participants explore various approaches to demonstrate whether the sequence is bounded, considering aspects of convergence, fixed points, and initial conditions.

Discussion Character

  • Exploratory
  • Technical explanation
  • Debate/contested
  • Mathematical reasoning

Main Points Raised

  • Some participants suggest using cobweb diagrams to visualize the sequence's behavior and potential boundedness.
  • There are claims that the limits of s_{n+1} and s_n are the same, with some proposing that the sequence converges to ±√10, while others assert it converges to 1.
  • Participants discuss the implications of convergence on boundedness, noting that convergence does not inherently prove boundedness.
  • Some argue that the sequence can be bounded above by any number greater than 1 and below by any number less than 1 for the tail of the sequence.
  • There are differing opinions on the initial conditions affecting the sequence's behavior, particularly regarding the impact of s_0.
  • One participant proposes a method to reason about bounds without relying on convergence, analyzing the function f(x) = (x + 10) / (x + 1) for different ranges of s_0.

Areas of Agreement / Disagreement

Participants express multiple competing views regarding the convergence of the sequence and its bounds. There is no consensus on whether the sequence converges to ±√10 or 1, nor on the implications of these limits for boundedness.

Contextual Notes

Some participants note the importance of initial conditions and the potential for divide-by-zero issues, which may affect the sequence's behavior. Additionally, the discussion highlights the complexity of nonlinear recursive sequences and the lack of established methods for bounding them.

Who May Find This Useful

This discussion may be of interest to those studying recursive sequences, nonlinear dynamics, or mathematical analysis, particularly in the context of convergence and boundedness.

bbb999
Messages
27
Reaction score
0
I have a sequence where [itex]s_1[/itex] can take any value and then [itex]s_{n+1}=\frac{s_n+10}{s_n+1}[/itex]

How do I show a sequence like this is bounded?
 
Physics news on Phys.org


I guess you can try thinking if
http://en.wikipedia.org/wiki/Cobweb_diagram
helps. Maybe this already shows that it is bound!

Or with a transformation [itex]x_t=y_{t+1}/y_t+a[/itex] you can easily solve this recursion relation explicitely. Let me know if you need the details.
 


Well I know the limits of [itex]s_{n+1}[/itex] and [itex]s_n[/itex] are the same. Solving for the limit fives the limit to be [itex]\pm \sqrt{10}[/itex] so does that not mean the upper and lower bounds are these?
 


The sequence clearly converges to 1, so an upper bound for at least the tail of the sequence (all but a finite number of terms at the beginning of the sequence) would be any number larger than 1 (say 2), and a lower bound for the tail would be any number smaller than 1 (say 0).
 


bbb999 said:
Well I know the limits of [itex]s_{n+1}[/itex] and [itex]s_n[/itex] are the same. Solving for the limit fives the limit to be [itex]\pm \sqrt{10}[/itex] so does that not mean the upper and lower bounds are these?
The limit of the sequence is 1. How did you get +/-sqrt(10)?

Recursive sequences usually give a starting value, which you didn't include. If I assume that s0 = 0, then s1 = 10 > sqrt(10), so sqrt(10) is not an upper bound for the sequence.
 


Mark44 said:
The sequence clearly converges to 1, so an upper bound for at least the tail of the sequence (all but a finite number of terms at the beginning of the sequence) would be any number larger than 1 (say 2), and a lower bound for the tail would be any number smaller than 1 (say 0).

I'm not sure why you say this ("The sequence clearly converges to 1"): assume for a second that it does converge, then use the relation to find the value of the limit. I don't get one, and my explorations (wxmaxima, sage) don't indicate that either.
 


The sequence converges to [itex]\sqrt{10}[/itex] for any initial value chosen other than [itex]-\sqrt{10}[/itex]
 


I might not be thinking about this the right way...
 


I used scilab to work out the iterations of the sequence and my above post is correct I think?
 
  • #10


@bbb999 - yes.
 
  • #11


@statdad

Sorry is that yes for the original posts about upper and lower bounds being [itex]\pm \sqrt{10}[/itex]?
 
  • #12


Your claim about convergence might be right; I haven't thought it through so I can't confirm or deny. If true, you can use convergence to prove that the sequence is bounded, but the two are not the same. Why and how? Also, you need to assume that your starting value of s1 never causes a divide by zero in the middle.
 
  • #13


The sequence converging to [tex]\pm \sqrt{10}[/tex] is correct, assuming it converges. Unfortunately this doesn't give any sort of proof, because you assumed convergence in finding the value that it would converge to (and these do not give bounds for the sequence)

It might help to start by asking a question: What has to happen for [tex]s_n > 10[/tex]? (thinking about sn-1) How often can this occur?
 
  • #14


My ignorance of recursive sequences, especially nonlinear ones, shows in this thread. Can someone how you find bounds for the sequence in this thread? Only a few of my DE texts spend much time on recursive sequences, and none spends any time on nonlinear ones such as this. I wasn't able to find anything on bounds of recursive sequences on the Web, either.
Thanks,
Mark
 
  • #15


I think that if you assume the sequence converges, then you can assume sn+1 is "close to" sn, so you can write sn = (sn + 10)/(sn + 1), from which you get (sn)2 = 10. This would put s between -sqrt(10 and +sqrt(10).

Doing some calculations using Excel, and choosing values of s1, it appears that sqrt(10) is a stable fixed point of the sequence, with most of the starting values for s1 converging to that value. The other fixed point, -sqrt(10), seems to be an unstable fixed point. The only value (of the relatively few I tried) that converged to -sqrt(10) was -sqrt(10).

Comments welcome.
 
  • #16


I don't know the general theory behind this, but here is one quick way to reason about some bounds without reasoning about convergence. In this case, let f(x) = (x+10)/(x+1). For x > -1, it is always decreasing with lower bound 1. If s0 > 1, I hope it is clear that f(1) is an upper bound. If -1 < s0 ≤ 1, then f(s0) is an upper bound. Similar reasoning probably exists for the other branch of the function. This doesn't really touch on convergence at all (although I would not be surprised if the convergence features you discuss can be proved with some more work).
 

Similar threads

  • · Replies 18 ·
Replies
18
Views
4K
  • · Replies 20 ·
Replies
20
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 7 ·
Replies
7
Views
3K
  • · Replies 11 ·
Replies
11
Views
3K
  • · Replies 15 ·
Replies
15
Views
3K
  • · Replies 17 ·
Replies
17
Views
3K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K