0% found this document useful (0 votes)
17 views

Practical 7 - Sem4

The document discusses the pointwise convergence of a sequence of functions f(x,n) = x^n on the interval [-2,2]. It is shown that the sequence converges pointwise for all x in (-1,1) and that the limit is 1 when x = 1. The convergence is fast when x is small and slow when x is large. A second sequence f(x,n) = x/n is also analyzed and its pointwise limits are determined.

Uploaded by

Asmi Sharma
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
17 views

Practical 7 - Sem4

The document discusses the pointwise convergence of a sequence of functions f(x,n) = x^n on the interval [-2,2]. It is shown that the sequence converges pointwise for all x in (-1,1) and that the limit is 1 when x = 1. The convergence is fast when x is small and slow when x is large. A second sequence f(x,n) = x/n is also analyzed and its pointwise limits are determined.

Uploaded by

Asmi Sharma
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

PRACTICAL 7

Asmi Sharma, 21/MT/06

Draw the following sequence of functions on


the given interval and discuss the pointwise
convergence
In[1]:= f[x_, n_] := x ^ n
Plot[Table[f[x, n], {n, 1, 20}], {x, - 2, 2}, PlotRange → {- 1.5, 1.5}]
Limit[f[x, n], n → Infinity, Assumptions → - 1 < x < 1]
Limit[f[x, n], n → Infinity, Assumptions → x ⩵ 1]
Limit[f[x, n], n → Infinity, Assumptions → x ⩵ - 1]
Table[f[- 1.1, n], {n, 20}]
ListPlot[%, PlotRange → {- 6, 6}]
1.5

1.0

0.5

Out[2]=
-2 -1 1 2

-0.5

-1.0

-1.5

Out[3]= 0

Out[4]= 1

Out[5]= ⅇ2 ⅈ Interval{0,π}

Out[6]= {- 1.1, 1.21, - 1.331, 1.4641, - 1.61051, 1.77156, - 1.94872,


2.14359, - 2.35795, 2.59374, - 2.85312, 3.13843, - 3.45227,
3.7975, - 4.17725, 4.59497, - 5.05447, 5.55992, - 6.11591, 6.7275}
2

Out[7]=
5 10 15 20

-2

-4

-6

From the graph we can see that the sequence of functions converges pointwise for all x ∈ (-1,1) and f(1)
= 1. We observe that the convergence is fast when x is small and it's slow when x is large.
In[8]:= ClearAll[x, n]
3

In[34]:= f[x_, n_] := x / n


Plot[Table[f[x, n], {n, 1, 20}], {x, - 2, 2}, PlotRange → {- 1.5, 1.5}]
Limit[f[x, n], n → Infinity, Assumptions → x > 0]
Limit[f[x, n], n → Infinity, Assumptions → x < 0]
Limit[f[x, n], n → Infinity, Assumptions → x = 0]
Table[f[2.5, n], {n, 20}]
ListPlot[%, PlotRange → {- 6, 6}]
Out[35]=
1.5

1.0

0.5

-2 -1 1 2

-0.5

-1.0

-1.5

Out[36]=

0
Out[37]=

Set: Tag Rule in Assumptions → x is Protected.


Out[38]=
x
Limit , n → ∞, 0
n
Out[39]=

{2.5, 1.25, 0.833333, 0.625, 0.5, 0.416667, 0.357143, 0.3125, 0.277778, 0.25, 0.227273,
0.208333, 0.192308, 0.178571, 0.166667, 0.15625, 0.147059, 0.138889, 0.131579, 0.125}
Out[40]=
6

5 10 15 20

-2

-4

-6

You might also like