MOOCULUS微积分-2: 数列与级数学习笔记 5. Another comparison test
此课程(MOOCULUS-2 "Sequences and Series")由Ohio State University于2014年在Coursera平台讲授。
PDF格式教材下载 Sequences and Series
本系列学习笔记PDF下载(Academia.edu) MOOCULUS-2 Solution
Summary
- Let $N > 1$ be an integer, and consider a series $\sum_{n=1}^\infty a_n$. The series we get by removing the first $N-1$ terms, namely $$\sum_{n=N}^\infty a_n$$ is called a tail of the given series.
- Let $N > 1$ be an integer. The series $$\sum_{n=1}^\infty a_n$$ converges if and only if $$\sum_{n=N}^\infty a_n$$ converges. This could be shortened to "The series converges iff a tail of the series converges," or even just to the slogan that convergence depends on the tail.
- Limit Comparison Test Suppose $a_n \geq 0$ and $b_n \geq 0$. Then if $$\lim_{n \to \infty} \frac{a_n}{b_n} = L > 0,$$ the series $\sum_{n=1}^\infty a_n$ converges if and only if $\sum_{n=1}^\infty b_n$ converges.
Examples
1. Does the series $$\sum_{n=153}^\infty \frac{1}{n^2}$$ converge?
Solution:
Yes! This series is a tail of the convergent $p$-series $$\sum_{n=1}^\infty \frac{1}{n^2}$$ in this case, $p = 2$.
2. Show that $$\sum_{n=0}^\infty {n^5\over 5^n}$$ converges.
Solution:
First, we can easily prove that $2^n > n^5$ when $n$ is sufficient large (by Mathematical Induction). Suppose that $2^n > n^5$, then when $n > 1$, we have $$(n+1)^5=n^5+5n^4+10n^3+10n^2+5n+1 < n^5+5n^4+10n^3+10n^2+6n$$ $$ < n^5+5n^4+10n^3+16n^2 < n^5+5n^4+26n^3 < n^5+31n^4$$ And thus $(n+1)^5 < 2n^5 < 2\cdot 2^n=2^{n+1}$ whenever $n > 31$. Actually we can find the minimal $n$ that $2^n > n^5$, R code:
f1 = function(x) 2^x
f2 = function(x) x^5
for (i in 2:100){
if (f1(i) > f2(i)){
print(i)
break
}
}
## [1] 23
(Note that when $n=2, 3, \cdots$, $2^n < n^5$, thus we search from $n=2$.) Back to this problem, we have $${n^5 \over 5^n} < {2^n \over 5^n}=({2\over5})^n$$ That is, the tail series $$\sum_{n=23}^{\infty}({2\over5})^n$$ converges. By the comparison test, the smalled series $$\sum_{n=23}^{\infty}{n^5 \over 5^n} $$ also converges, so does the original series $$\sum_{n=0}^\infty {n^5\over 5^n}$$
3. Does the series $$\sum_{n=52}^\infty \frac{n^4 - 3n + 5}{2n^5 + 5n^3 - n^2}$$ converges or diverge?
Solution:
By limit comparison test, set $$a_n=\frac{n^4 - 3n + 5}{2n^5 + 5n^3 - n^2},\ b_n={1\over n}$$ We have $$\lim_{n\to\infty}{a_n\over b_n}=\lim_{n\to\infty}{\frac{n^4 - 3n + 5}{2n^5 + 5n^3 - n^2}\over{1\over n}}=\lim_{n\to\infty}{n^5-3n^2+5n\over2n^5+5n^3-n^2}=\frac{1}{2} > 0$$ Thus, $\sum a_n$ and $\sum b_n$ share the same fate. But $b_n$ is harmonic series which diverges. Hence, $$\sum_{n=52}^\infty \frac{n^4 - 3n + 5}{2n^5 + 5n^3 - n^2}$$ diverges.
MOOCULUS微积分-2: 数列与级数学习笔记 5. Another comparison test的更多相关文章
- MOOCULUS微积分-2: 数列与级数学习笔记 Review and Final
此课程(MOOCULUS-2 "Sequences and Series")由Ohio State University于2014年在Coursera平台讲授. PDF格式教材下载 ...
- MOOCULUS微积分-2: 数列与级数学习笔记 7. Taylor series
此课程(MOOCULUS-2 "Sequences and Series")由Ohio State University于2014年在Coursera平台讲授. PDF格式教材下载 ...
- MOOCULUS微积分-2: 数列与级数学习笔记 6. Power series
此课程(MOOCULUS-2 "Sequences and Series")由Ohio State University于2014年在Coursera平台讲授. PDF格式教材下载 ...
- MOOCULUS微积分-2: 数列与级数学习笔记 4. Alternating series
此课程(MOOCULUS-2 "Sequences and Series")由Ohio State University于2014年在Coursera平台讲授. PDF格式教材下载 ...
- MOOCULUS微积分-2: 数列与级数学习笔记 3. Convergence tests
此课程(MOOCULUS-2 "Sequences and Series")由Ohio State University于2014年在Coursera平台讲授. PDF格式教材下载 ...
- MOOCULUS微积分-2: 数列与级数学习笔记 2. Series
此课程(MOOCULUS-2 "Sequences and Series")由Ohio State University于2014年在Coursera平台讲授. PDF格式教材下载 ...
- MOOCULUS微积分-2: 数列与级数学习笔记 1. Sequences
此课程(MOOCULUS-2 "Sequences and Series")由Ohio State University于2014年在Coursera平台讲授. PDF格式教材下载 ...
- 《Java学习笔记(第8版)》学习指导
<Java学习笔记(第8版)>学习指导 目录 图书简况 学习指导 第一章 Java平台概论 第二章 从JDK到IDE 第三章 基础语法 第四章 认识对象 第五章 对象封装 第六章 继承与多 ...
- 20145330第五周《Java学习笔记》
20145330第五周<Java学习笔记> 这一周又是紧张的一周. 语法与继承架构 Java中所有错误都会打包为对象可以尝试try.catch代表错误的对象后做一些处理. 使用try.ca ...
随机推荐
- 不得不玩玩NHibernate
1.0=>前言 放着好好的EF不用,为什么要来玩NHibernate了?那是因为现在的工作内容就是维护一个比较老的项目,第一版是公司找外包做的,跟数据库打交道这块用的NHibernate,虽然都 ...
- 发布新款博客皮肤SimpleMemory
感谢 sevennight 又为大家精心设计了一款简约风格的博客皮肤 —— SimpleMemory. 大家可以通过这篇博文感受一下实际的效果:开园子啦(浅谈移动端以及h5的发展) 如果您喜欢这款皮肤 ...
- Nodejs进阶:基于express+multer的文件上传
关于作者 程序猿小卡,前腾讯IMWEB团队成员,阿里云栖社区专家博主.欢迎加入 Express前端交流群(197339705). 正在填坑:<Nodejs学习笔记> / <Expre ...
- pat1057 stack
超时算法,利用2的特殊性,用2个multiset来维护.单个multiset维护没法立即找到中位数. 其实也可以只用1个multiset,用一个中位指针,++,--来维护中位数. #include&l ...
- 关于HTML+CSS设置图片居中的方法
有的时候我们会遇到这样一个问题,就是当我们按下F12进行使用firebug调试的时候,我们发现图像没有居中,页面底下有横向的滑动条出现,图片没能够居中,默认状态下只是紧靠在页面最左侧,而我们对图像缩小 ...
- 屠龙之路_任生活如何虐你,屠龙之路还得继续_SeventhDay
摘要 :屠龙少年在"罢工"了一天,在周末客栈补给和放纵之后,突然想起来说好的和公主私奔呢?(此处出现了为何上篇随笔不见公主)咋想之下,貌似公主还在恶龙Alpha的手中.为此,屠龙少 ...
- 十天冲刺---Day9
站立式会议 站立式会议内容总结: 燃尽图 照片 队员们都回来了,写完之后继续对alpha版本进行迭代. 希望演示的时候能拿得出来.
- SharedPreference写入-读取
SharedPreference文件保存格式为xml文件. 一.SharedPreference写入 SharedPreferences sharedPreferences = context.get ...
- canvas拖动
var canvas=document.getElementById("canvas"); var cxt=canvas.getContext("2d"); v ...
- androd Sdk manager配置
Android Android SDK 配置步骤 启动 Android SDK Manager ,打开主界面,依次选择「Tools」.「Options...」,弹出『Android SDK Manag ...