This is a free preview. For full access
Introduction to Sequences and Series
Recursive Sequences and Partial Sums
Description
Sequences are ordered lists of numbers that follow a rule or pattern. Each number in the list is called a term. Terms are often written as a1, a2, a3, and so on, where the subscript shows the position in the sequence. When the pattern is clear, dots may be used to show that the list continues.
A ...
Show More
Transcript
数列是按照特定规则或模式排列的数字有序列表。第 n 项可通过基于其位置的公式求得。
例如,一个弹跳球每次弹起的高度都会降低,形成一个递减序列,其中每次弹起的高度均为前一次高度的固定比例。
序列中的每个数称为一项,有序项的位置决定了其数值。
当模式清晰时,圆点表示序列继续。
某些数列通过前面的项来定义后续项,这类数列称为递推数列。例如,第 n 项是通过第 (n−1) 项来定义的,n-1)项。
例如,在斐波那契数列中,每一项等于前两项之和。
部分和是指一个数列前几项的和。通常用求和符号(sigma notation)表示,部分和有助于分析随着项数增加,总和如何增长。
这些中的每一项都称为部分和...
Show More