Sunday, September 25, 2016

real analysis - Show that the limit of functions is continuous


Let fn be a sequence of not necessarily continuous functions RR such that fn(xn)f(x) whenever xnx. Show that f is continuous.


What I am trying to do is to show that whenever we have xR and xnx, then f(xn)f(x), when n.


These types of things are usually showed by using the triangle inequality. I know I can make |f(x)fn(xn)| as small as possible by choosing a big enough n. I can also make |f(x)fn(x)| as small as possible. But I am not able to combine these to prove that |f(x)f(xn)| can be made as small as possible.


Answer



First note that the hypothesis implies that the fn converge pointwise to f. To see this, consider the constant sequence xn:nN where xn=x for each nN: fn(x):nN=fn(xn):nNf(x).


Now suppose that f is not continuous at x, and let xn:nNx be such that f(xn):nN does not converge to f(x). Then there is an ϵ>0 such that |f(xn)f(x)|ϵ for infinitely many nN, so you can find a subsequence xnk:kN such that |f(xnk)f(x)|ϵ for every kN. Since xnk:kNx, you might as well assume from the start that you have a sequence xn:nN and an ϵ>0 such that xn:nNx and |f(xn)f(x)|ϵ for all nN.


By hypothesis fn(xn):nNf(x). Choose n0N so that |fn(x0)f(x0)|<ϵ/2 for all nn0; we can do this, since the fn’s converge pointwise to f. Now choose n1>n0 so that |fn(x1)f(x1)|<ϵ/2 for all nn1. Continue in this way to construct an increasing sequence nk:kN such that |fn(xk)f(xk)|<ϵ/2 for all nnk.


Now form a new sequence yn:nN as follows:


$$y_n=\begin{cases} x_0,&\text{if }n\le n_0\\ x_k,&\text{if }n_{k-1}

It’s not hard to see that yn:nNx: it’s just the sequence xn:nN with each term repeated some finite number of times. Note that ynk=xk for every kN. Thus, for each kN we have fnk(ynk)=fnk(xk), which by the choice of nk implies that |fnk(ynk)f(ynk)|<ϵ/2.


Now fn(yn):nNf(x), so fnk(ynk):kNf(x), and there must be a kN such that |fnk(ynk)f(x)|<ϵ/2. But then


|f(ynk)f(x)||f(ynk)fnk(ynk)|+|fnk(ynk)f(x)|<ϵ2+ϵ2=ϵ,


which is a contradiction: |f(ynk)f(x)|=|f(xk)f(x)|ϵ.


Thus, f must in fact be continuous at x.


No comments:

Post a Comment

analysis - Injection, making bijection

I have injection f:AB and I want to get bijection. Can I just resting codomain to f(A)? I know that every function i...