3.3 Section 1.2 Order of convergence, linear, superlinear, quadratic

  3.3.1 convergent sequence, limit definition
  3.3.2 order of convergence
  3.3.3 Big O and little o

3.3.1 convergent sequence, limit definition

definition: A sequence of numbers xn converges to limit x, if for every positive number ϵ there exist a number r such that |xnx|<ϵ for all n>r

pict
Figure 3.8:example

note: Hence to show a sequence converges to x, all what we have to do is find r such that for any given ϵ, we get |xnx|<ϵ whenever n>r

Example: to show that xn=n+1n converges to 1, need to show that there exist a number r such that |n+1n1|<ϵ whenever n>r. Rewrite we have |1n|<ϵ, hence we see that r=ϵ1, because whenever n>r, then |1n|<ϵ. For example, assume ϵ=0.1, then r=10, and whenever n>10, we have 1n<0.1

It is clear that limn>n+1n=1.

3.3.2 order of convergence

   3.3.2.1 Linear
   3.3.2.2 superlinear
   3.3.2.3 quadratic

The order of the convergence of a sequence is the largest number q s.t. limn|xn+1x||xnx|q exist

This is the same as writing limn|en+1||en|q where en is the error at xn

pict
Figure 3.9:example
3.3.2.1 Linear

The rate of convergence is linear if we can find constant c<1 and integer N s.t. |en+1|c |en|                       nN

3.3.2.2 superlinear

The rate of convergence is superlinear if we can find sequence εn tending to zero and integer N s.t.

|en+1|εn |en|                       nN

question: I do not understand this definition Can I say it as the linear, but an exponent 1<α<2, and write

The rate of convergence is superlinear if we can find constant c<1 and integer N s.t. |en+1|c |en|α                       nN

3.3.2.3 quadratic

The rate of convergence is quadratic if we can find constant c NOT Necessarily less than 1, and integer N s.t. |en+1|c |en|2                       nN

idea: To show that a sequence converges quadratically to some limit, start with the expression for en+1 and manipulate it to show that that is it some constant ×en

3.3.3 Big O and little o

These are means by which to compare 2 sequences to each others.

def: big O: One sequence xn is bounded by a linear scaled version of a second sequence

we say that xn=Oαn if there is a constant C and N, s.t. xnCαn for all n>N

pict
Figure 3.10:example

How to find if xn=O(αn)? start with xn expression and manipulate it so that it has only terms that contain αn with some multipliers (the constant).

Or, easier, just look to see if xn is bigger or smaller than αn, if it is bigger, then it goes to zero AFTER αn, hence use BIG O. if it is smaller, then it goes to zero BEFORE αn, hence us little o.

def: little o: we say xn=o(αn) if limnxnαn=0

pict
Figure 3.11:example

To test the above, given xn=n+1n2 and αn=1n, what is the relation between them? we see that xn=1n+1n2, so it is BIGGER than αn, so it goes to zero AFTER. Hence xn=Oαn

given xn=1nlnn, we see that this is SMALLER than αn, hence it will go to zero BEFORE αn, hence xn=o(αn)

question: verify I can do this reasoning all the time.