Comp9020 24T2 13
Comp9020 24T2 13
Summation Notation
Product Notation
Factorial and “n Choose r” Notation
Sebastian Sequoiah-Grayson - CSE UNSW COMP9020 24T2 - Week 4 Lecture 1 Mathematical Sequences
Introduction
Summation Notation Terminology
Product Notation Explicit Formulas for Sequences
Factorial and “n Choose r” Notation
am , am+1 , am+2 , . . . , an
am , am+1 , am+2 , . . .
Sebastian Sequoiah-Grayson - CSE UNSW COMP9020 24T2 - Week 4 Lecture 1 Mathematical Sequences
Introduction
Summation Notation Terminology
Product Notation Explicit Formulas for Sequences
Factorial and “n Choose r” Notation
c0 = (−1)0 = 1
c1 = (−1)1 = −1
c2 = (−1)2 = 1
c3 = (−1)3 = −1
c4 = (−1)4 = 1
c5 = (−1)5 = −1
.
.
.
.
Sebastian Sequoiah-Grayson - CSE UNSW COMP9020 24T2 - Week 4 Lecture 1 Mathematical Sequences
Introduction
Summation Notation Terminology
Product Notation Explicit Formulas for Sequences
Factorial and “n Choose r” Notation
Sebastian Sequoiah-Grayson - CSE UNSW COMP9020 24T2 - Week 4 Lecture 1 Mathematical Sequences
Introduction
Summation Notation Terminology
Product Notation Explicit Formulas for Sequences
Factorial and “n Choose r” Notation
So, the explicit formula (1) above is the correct first six terms of
the sequence ak .
Sebastian Sequoiah-Grayson - CSE UNSW COMP9020 24T2 - Week 4 Lecture 1 Mathematical Sequences
Introduction
Terminology
Summation Notation
Examples and Conversions
Product Notation
Separating Off the Final Term of a Summation
Factorial and “n Choose r” Notation
Sebastian Sequoiah-Grayson - CSE UNSW COMP9020 24T2 - Week 4 Lecture 1 Mathematical Sequences
Introduction
Terminology
Summation Notation
Examples and Conversions
Product Notation
Separating Off the Final Term of a Summation
Factorial and “n Choose r” Notation
Sebastian Sequoiah-Grayson - CSE UNSW COMP9020 24T2 - Week 4 Lecture 1 Mathematical Sequences
Introduction
Terminology
Summation Notation
Examples and Conversions
Product Notation
Separating Off the Final Term of a Summation
Factorial and “n Choose r” Notation
Note that the top index n acts like a free variable, as it may be
replaced by any integer greater than or equal to the bottom index.
For any particular statement, the top index works like a constant.
However, when the top index appears in the term for a summation,
is bound by the summation.
Sebastian Sequoiah-Grayson - CSE UNSW COMP9020 24T2 - Week 4 Lecture 1 Mathematical Sequences
Introduction
Terminology
Summation Notation
Examples and Conversions
Product Notation
Separating Off the Final Term of a Summation
Factorial and “n Choose r” Notation
Observe:
n n+1
!
X X
k
2 + 2n+1 = (20 + 21 + 22 + . . . + 2n ) + 2n+1 = 2k
k=0 k=0
n+1 n
!
X 1 1 1 1 1 1 X 1 1
2
= 2 + 2 + 2 +. . .+ 2 + = +
i 1 2 3 n (n + 1)2 i2 (n + 1)2
i=1 i=1
Sebastian Sequoiah-Grayson - CSE UNSW COMP9020 24T2 - Week 4 Lecture 1 Mathematical Sequences
Introduction
Terminology
Summation Notation
Examples
Product Notation
Properties of Summation and Product
Factorial and “n Choose r” Notation
Where m and n are integers and m ≤ n, The left hand side is read
as the product from k equals m to n of a-sub-k:
n
Y
ak = am · am+1 · am+2 . . . an
k=m
Sebastian Sequoiah-Grayson - CSE UNSW COMP9020 24T2 - Week 4 Lecture 1 Mathematical Sequences
Introduction
Terminology
Summation Notation
Examples
Product Notation
Properties of Summation and Product
Factorial and “n Choose r” Notation
Examples:
3
Y
k =1·2·3=6
k=1
2
Y k 1 2 1 2
= · = ·
k +1 1+1 2+1 2
k=1
equation
Sebastian Sequoiah-Grayson - CSE UNSW COMP9020 24T2 - Week 4 Lecture 1 Mathematical Sequences
Introduction
Terminology
Summation Notation
Examples
Product Notation
Properties of Summation and Product
Factorial and “n Choose r” Notation
n n n n
! ! ! !
Y Y Y Y
ak · bk = (k + 1) · (k − 1)
k=m k=m k=m k=m
n
Y
= ((k + 1) · (k − 1))
k=m
n
Y
= (k 2 − 1)
k=m
Sebastian Sequoiah-Grayson - CSE UNSW COMP9020 24T2 - Week 4 Lecture 1 Mathematical Sequences
Introduction
Summation Notation Terminology
Product Notation Examples
Factorial and “n Choose r” Notation
n! = n · (n − 1) . . . 3 · 2 · 1.
Zero factorial:
0! = 1
A recursive definition for factorial is as follows:
1 if n = 0
n! =
n · (n − 1)! if n ≥ 1.
Sebastian Sequoiah-Grayson - CSE UNSW COMP9020 24T2 - Week 4 Lecture 1 Mathematical Sequences
Introduction
Summation Notation Terminology
Product Notation Examples
Factorial and “n Choose r” Notation
Sebastian Sequoiah-Grayson - CSE UNSW COMP9020 24T2 - Week 4 Lecture 1 Mathematical Sequences
Introduction
Summation Notation Terminology
Product Notation Examples
Factorial and “n Choose r” Notation
2 2! 2! 2 ·
1
= = = =1
2 2!(2 − 2)! 2!0! 2 · 1)(1)
(
n+1 (n + 1)! (n + 1)! (n + 1) · n!
= = = =n+1
n n!((n + 1) − n)! n!1! n!
Sebastian Sequoiah-Grayson - CSE UNSW COMP9020 24T2 - Week 4 Lecture 1 Mathematical Sequences