How can I test if a sequence is converging?

  • Context: Undergrad 
  • Thread starter Thread starter FrogPad
  • Start date Start date
  • Tags Tags
    Convergence Sequence
Click For Summary
SUMMARY

This discussion focuses on methods to determine if a sequence converges to zero, particularly in the context of a senior design project. The user employs a moving average approach to monitor convergence and references Cauchy sequences as a key concept. The formal definition of convergence is highlighted, emphasizing the importance of bounded and monotone sequences. The discussion concludes that using the triangle inequality can effectively demonstrate convergence.

PREREQUISITES
  • Understanding of sequences and series in mathematics
  • Familiarity with Cauchy sequences and their properties
  • Knowledge of the formal definition of convergence
  • Basic programming skills for implementing moving averages
NEXT STEPS
  • Study the properties of Cauchy sequences in detail
  • Learn about the triangle inequality and its applications in convergence proofs
  • Explore numerical methods for calculating moving averages
  • Read a textbook on real analysis focusing on sequences and convergence
USEFUL FOR

Mathematics students, data analysts, and anyone involved in numerical methods or sequence analysis will benefit from this discussion.

FrogPad
Messages
801
Reaction score
0
This is related to my senior design project.

I was wondering what would be a good way to check if a sequence is converging. As an example, imagine I have the following:

for n = 1:10,000
x(n) = f(n,n-1)
end

What I'm trying to say is that the sequence is updated in each iteration, and that the value of each sequence element is a function of present and past inputs. I know that the sequence is converging. Let's say that it is converging to zero. However, the sequence may oscillate like crazy, and cross zero many times, but eventually it will settle.

My question:
How can I check if a sequence is converging to zero? What are some standard tests that I can look into?

As of now, I have some hack code that basically computes the moving average. If the moving average gets to some threshold (i.e. not changing much), then I keep checking to see if it drops below some other threshold.
 
Physics news on Phys.org
It would be worthwhile to pick up a book on analysis and read the chapter on sequences. You would be interested in the formal definition of convergence--

(a_n) \rightarrow A if for any \epsilon > 0 there exists a natural number N such that n\geq N \Rightarrow |a_n - A| < \epsilon.

Another important thing you should know-- bounded, monotone sequences converge.

Many times you can just straight up use the definition to confirm that a sequence converges. The trick is that many times you will set up a triangle inequality to get the job done. Which I even think is how Cauchy sequences (mentioned in the previous post) can be shown to converge.

Let me rephrase that definition-- a sequence is convergent if for any interval around the proposed limit the sequence eventually enters the interval and never leaves. That means for any interval surrounding the proposed limit, there should be an infinite number of terms in the sequence contained within that interval.
 

Similar threads

  • · Replies 3 ·
Replies
3
Views
3K
  • · Replies 11 ·
Replies
11
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 1 ·
Replies
1
Views
3K
  • · Replies 17 ·
Replies
17
Views
6K
  • · Replies 12 ·
Replies
12
Views
3K
  • · Replies 2 ·
Replies
2
Views
1K
  • · Replies 24 ·
Replies
24
Views
7K
  • · Replies 9 ·
Replies
9
Views
3K
  • · Replies 9 ·
Replies
9
Views
3K