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 ...
随机推荐
- spring注解scheduled实现定时任务
只想说,spring注解scheduled实现定时任务使用真的非常简单. 一.配置spring.xml文件 1.在beans加入xmlns:task="http://www.springfr ...
- 异常检测算法--Isolation Forest
南大周志华老师在2010年提出一个异常检测算法Isolation Forest,在工业界很实用,算法效果好,时间效率高,能有效处理高维数据和海量数据,这里对这个算法进行简要总结. iTree 提到森林 ...
- lecture15-自动编码器、语义哈希、图像检索
Hinton第15课,本节有课外读物<Semantic Hashing>和<Using Very Deep Autoencoders for Content-Based Image ...
- css3实践之摩天轮式图片轮播+3D正方体+3D标签云(perspective、transform-style、perspective-origin)
本文主要通过摩天轮式图片轮播的例子来讲解与css3 3D有关的一些属性. demo预览: 摩天轮式图片轮播(貌似没兼容360 最好用chrome) 3D正方体(chrome only) 3D标签云(c ...
- C#基础之IEnumerable
1.IEnumerable的作用 在使用Linq查询数据时经常以IEnumerable<T>来作为数据查询返回对象,在使用foreach进行遍历时需要该对象实现IEnumerable接口, ...
- [MCSM] Slice Sampler
1. 引言 之前介绍的MCMC算法都具有一般性和通用性(这里指Metropolis-Hasting 算法),但也存在一些特殊的依赖于仿真分布特征的MCMC方法.在介绍这一类算法(指Gibbs samp ...
- Google搜索的几个使用技巧——让你的搜索结果更准确
对于软件开发人员来说,不知道的内容在网上搜索是再正常不过的了.今天同事在组内分享了几个谷歌搜索的使用技巧,在此自己总结一下,希望可以帮到更多人. 在此之前先要唠叨几句,什么时候用百度,什么时候用谷歌? ...
- O2O营销模式(Online To Offline)
什么是O2O营销模式 O2O营销模式又称离线商务模式,是指线上营销线上购买带动线下经营和线下消费.O2O通过打折.提供信息.服务预订等方式,把线下商店的消息推送给互联网用户,从而将他们转换为自己的线下 ...
- Beyond Compare 3 设置自动换行
设置自动换行方法: 在菜单栏里点击“工具”,然后在弹出列表里选择“文件格式”,在弹出框的左下角编辑文件格式默认值中,选择“文本格式”,对右侧的 ‘每行字符限制’进行修改保存即可,一般可设置80或90. ...
- java中的static详解
如果一个类成员被声明为static,它就能够在类的任何对象创建之前被访问,而不必引用任何对象.static 成员的最常见的例子是main( ) .因为在程序开始执行时必须调用main() ,所以它被声 ...