This is a free preview. For full access
Introduction to Sequences and Series
Pascal’s Triangle for Binomial Coefficients
Description
Pascal’s Triangle helps organize the coefficients in a binomial expansion. A binomial is an expression with two terms, such as (a + b), and raising it to a power creates a predictable pattern of terms.
The triangle is built row by row. The top row, called the zeroth row, matches (a + b)0. Each ne...
Show More
Transcript
二项式是一种形如 a + b 的表达式,其中 a 和 b 为数或代数表达式。
将其提升至幂次 n 会生成一系列遵循可预测模式的项。
每一项展开式都有 n + 1 项,从 an 开始,到 bn 结束。
这些模式与一种称为帕斯卡三角形的视觉工具相吻合。
帕斯卡三角形是一个三角形数组,其中每一行提供了二项式升至特定幂次时的系数。
例如,第五行给出了 (a + b) 的五次方的展开系数。
每一行以数字1开始和结束,每个内部数字等于其左上方和右...
Show More