SlideShare a Scribd company logo
1 of 40
11.1 Sequences & Summation Notation
                         Day Three




Revelation 3:20 "Here I am! I stand at the door and knock. If
anyone hears my voice and opens the door, I will come in and
eat with him, and he with me."
The sum of the first n terms of a sequence is
called the nth partial sum and is denoted Sn
The sum of the first n terms of a sequence is
called the nth partial sum and is denoted Sn


Find the indicated partial sums:

1) S10 for − 3, − 6, − 9, − 12, K
The sum of the first n terms of a sequence is
called the nth partial sum and is denoted Sn


Find the indicated partial sums:

1) S10 for − 3, − 6, − 9, − 12, K

−3 − 6 − 9 − 12 − 15 − 18 − 21− 24 − 27 − 30
The sum of the first n terms of a sequence is
called the nth partial sum and is denoted Sn


Find the indicated partial sums:

1) S10 for − 3, − 6, − 9, − 12, K

−3 − 6 − 9 − 12 − 15 − 18 − 21− 24 − 27 − 30
                   −165
Find the indicated partial sums:

2) S6 for an = 10n − 6
Find the indicated partial sums:

2) S6 for an = 10n − 6
    4 + 14 + 24 + 34 + 44 + 54
Find the indicated partial sums:

2) S6 for an = 10n − 6
    4 + 14 + 24 + 34 + 44 + 54
               174
Find the indicated partial sums:

2) S6 for an = 10n − 6
    4 + 14 + 24 + 34 + 44 + 54
                174

A partial sum can be done on your calculator
as the sum of a sequence. Try it ...

    sum ( seq (10x − 6, x, 1, 6, 1))
What is the syntax of this calculation?

     sum ( seq (10x − 6, x, 1, 6, 1))
What is the syntax of this calculation?

       sum ( seq (10x − 6, x, 1, 6, 1))


 explicit formula
for the sequence
What is the syntax of this calculation?

       sum ( seq (10x − 6, x, 1, 6, 1))


 explicit formula
for the sequence

       summation
        variable
What is the syntax of this calculation?

       sum ( seq (10x − 6, x, 1, 6, 1))


 explicit formula
for the sequence

       summation
        variable
             starts at
What is the syntax of this calculation?

       sum ( seq (10x − 6, x, 1, 6, 1))


 explicit formula
for the sequence

       summation
        variable
             starts at        ends at
What is the syntax of this calculation?

       sum ( seq (10x − 6, x, 1, 6, 1))


 explicit formula
for the sequence                            increases by
                                          (called the step)
       summation
        variable
             starts at        ends at
Consider this:   S1 , S2 , S3 , K Sn
Consider this:     S1 , S2 , S3 , K Sn

It is a sequence of partial sums.
More on this later this chapter ...
Sigma Notation   (or Summation Notation)
Sigma Notation         (or Summation Notation)
     n

    ∑a     k   = a1 + a2 + a3 +K + an
     k=1
Sigma Notation         (or Summation Notation)
     n

    ∑a     k   = a1 + a2 + a3 +K + an
     k=1
                 is read
  “the sum of ak as k goes from 1 to n “
Sigma Notation         (or Summation Notation)
     n

    ∑a     k   = a1 + a2 + a3 +K + an
     k=1
                 is read
  “the sum of ak as k goes from 1 to n “
     k is the summation variable ... or ...
             index of summation
Sigma Notation         (or Summation Notation)
     n

    ∑a     k   = a1 + a2 + a3 +K + an
     k=1
                 is read
  “the sum of ak as k goes from 1 to n “
     k is the summation variable ... or ...
             index of summation

  This is the math shorthand for doing the
              sum of a sequence
   just like what we did on the calculator!
Example:
  Express 2 + 5 + 8 + 11+ 14 + 17 + 20 + 23 + 26
  using Sigma Notation
Example:
  Express 2 + 5 + 8 + 11+ 14 + 17 + 20 + 23 + 26
  using Sigma Notation

Find the explicit expression for this sequence.
That will be your ak .
Then, write the Sigma Notation!
Example:
  Express 2 + 5 + 8 + 11+ 14 + 17 + 20 + 23 + 26
  using Sigma Notation

Find the explicit expression for this sequence.
That will be your ak .
Then, write the Sigma Notation!
         9

        ∑ ( 3k − 1)
         k=1
Example:
  Express 2 + 5 + 8 + 11+ 14 + 17 + 20 + 23 + 26
  using Sigma Notation

Find the explicit expression for this sequence.
That will be your ak .
Then, write the Sigma Notation!
         9

        ∑ ( 3k − 1)
         k=1

Practice calculating this on your calculator.
Example:
  Express 2 + 5 + 8 + 11+ 14 + 17 + 20 + 23 + 26
  using Sigma Notation

Find the explicit expression for this sequence.
That will be your ak .
Then, write the Sigma Notation!
          9

         ∑ ( 3k − 1)
         k=1

Practice calculating this on your calculator.
  sum ( seq ( 3x − 1, x, 1, 9, 1))   126
Find the sum by hand and verify with calculator:
        8
  1)   ∑ ( 3k − 4 )
       k=1
Find the sum by hand and verify with calculator:
        8
  1)   ∑ ( 3k − 4 )
       k=1


       −1+ 2 + 5 + 8 + 11+ 14 + 17 + 20
                 76
Find the sum by hand and verify with calculator:
        8
  1)   ∑ ( 3k − 4 )
       k=1


       −1+ 2 + 5 + 8 + 11+ 14 + 17 + 20
                 76

       sum ( seq ( 3x − 4, x, 1, 8, 1))
Find the sum by hand and verify with calculator:
       11
  2)   ∑4
       k=7
Find the sum by hand and verify with calculator:
       11
  2)   ∑4
       k=7


       4+4+4+4+4
               20
Find the sum by hand and verify with calculator:
       11
  2)   ∑4
       k=7


       4+4+4+4+4
                 20

       sum ( seq ( 4, x, 7, 11, 1))
                or
       sum ( seq ( 4, x, 1, 5, 1))
Write this sum using Sigma Notation:

       4    4   4    4   4    4   4    4
  3) 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10
Write this sum using Sigma Notation:

       4        4       4   4   4   4   4   4
  3) 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10
           10
                    4
           ∑k
           k=3
Properties of Sums
Properties of Sums
       n                 n       n
  1.   ∑(a   k   + bk ) = ∑ ak + ∑ bk
       k=1              k=1     k=1
Properties of Sums
       n                 n       n
  1.   ∑(a   k   + bk ) = ∑ ak + ∑ bk
       k=1              k=1     k=1

        n                n       n
  2.   ∑(a   k   − bk ) = ∑ ak − ∑ bk
       k=1              k=1     k=1
Properties of Sums
       n                 n         n
  1.   ∑(a   k   + bk ) = ∑ ak + ∑ bk
       k=1              k=1        k=1

        n                n          n
  2.   ∑(a   k   − bk ) = ∑ ak − ∑ bk
       k=1              k=1        k=1

        n                 n
  3.   ∑(c ⋅ a ) = c ⋅ ∑ a
                  k            k
       k=1               k=1
HW #3

“We must not only give what we have, we must also
give what we are.”      Desire Joseph Cardinal Mercier

More Related Content

What's hot

Solving a trig equation
Solving a trig equationSolving a trig equation
Solving a trig equationTyler Murphy
 
1 4 homework
1 4 homework1 4 homework
1 4 homeworkmath123b
 
Factorización aplicando Ruffini o Método de Evaluación
Factorización aplicando Ruffini o Método de EvaluaciónFactorización aplicando Ruffini o Método de Evaluación
Factorización aplicando Ruffini o Método de EvaluaciónWuendy Garcia
 
Pembahasan Soal Matematika Kelas 10 Semester 1
Pembahasan Soal Matematika Kelas 10 Semester 1Pembahasan Soal Matematika Kelas 10 Semester 1
Pembahasan Soal Matematika Kelas 10 Semester 1Pillar Adhikusumah
 
Acitivity square of trinomial
Acitivity  square of trinomialAcitivity  square of trinomial
Acitivity square of trinomialMartinGeraldine
 
3 more on algebra of radicals
3 more on algebra of radicals3 more on algebra of radicals
3 more on algebra of radicalsTzenma
 
Pythagorean theorem and distance formula
Pythagorean theorem and distance formulaPythagorean theorem and distance formula
Pythagorean theorem and distance formula42292095
 
3c. Pedagogy of Mathematics (Part II) - Algebra (Ex 3.3)
3c. Pedagogy of Mathematics (Part II) - Algebra (Ex 3.3)3c. Pedagogy of Mathematics (Part II) - Algebra (Ex 3.3)
3c. Pedagogy of Mathematics (Part II) - Algebra (Ex 3.3)Dr. I. Uma Maheswari Maheswari
 
Simultaneous Equations Practical Construction
Simultaneous Equations Practical ConstructionSimultaneous Equations Practical Construction
Simultaneous Equations Practical ConstructionDaniel Ross
 
Pythagorean theorem and distance formula
Pythagorean theorem and distance formulaPythagorean theorem and distance formula
Pythagorean theorem and distance formula41878010
 
5.2 Solving Quadratic Equations by Factoring
5.2 Solving Quadratic Equations by Factoring5.2 Solving Quadratic Equations by Factoring
5.2 Solving Quadratic Equations by Factoringhisema01
 
16.2 Solving by Factoring
16.2 Solving by Factoring16.2 Solving by Factoring
16.2 Solving by Factoringswartzje
 

What's hot (18)

Solving a trig equation
Solving a trig equationSolving a trig equation
Solving a trig equation
 
Gr 11 equations
Gr 11   equationsGr 11   equations
Gr 11 equations
 
1 4 homework
1 4 homework1 4 homework
1 4 homework
 
Algebra
AlgebraAlgebra
Algebra
 
Factorización aplicando Ruffini o Método de Evaluación
Factorización aplicando Ruffini o Método de EvaluaciónFactorización aplicando Ruffini o Método de Evaluación
Factorización aplicando Ruffini o Método de Evaluación
 
Pembahasan Soal Matematika Kelas 10 Semester 1
Pembahasan Soal Matematika Kelas 10 Semester 1Pembahasan Soal Matematika Kelas 10 Semester 1
Pembahasan Soal Matematika Kelas 10 Semester 1
 
Acitivity square of trinomial
Acitivity  square of trinomialAcitivity  square of trinomial
Acitivity square of trinomial
 
S 5
S 5S 5
S 5
 
Logarithma
LogarithmaLogarithma
Logarithma
 
3 more on algebra of radicals
3 more on algebra of radicals3 more on algebra of radicals
3 more on algebra of radicals
 
Pythagorean theorem and distance formula
Pythagorean theorem and distance formulaPythagorean theorem and distance formula
Pythagorean theorem and distance formula
 
3c. Pedagogy of Mathematics (Part II) - Algebra (Ex 3.3)
3c. Pedagogy of Mathematics (Part II) - Algebra (Ex 3.3)3c. Pedagogy of Mathematics (Part II) - Algebra (Ex 3.3)
3c. Pedagogy of Mathematics (Part II) - Algebra (Ex 3.3)
 
Simultaneous Equations Practical Construction
Simultaneous Equations Practical ConstructionSimultaneous Equations Practical Construction
Simultaneous Equations Practical Construction
 
Pythagorean theorem and distance formula
Pythagorean theorem and distance formulaPythagorean theorem and distance formula
Pythagorean theorem and distance formula
 
Algebraic identities
Algebraic identitiesAlgebraic identities
Algebraic identities
 
5.2 Solving Quadratic Equations by Factoring
5.2 Solving Quadratic Equations by Factoring5.2 Solving Quadratic Equations by Factoring
5.2 Solving Quadratic Equations by Factoring
 
16.2 Solving by Factoring
16.2 Solving by Factoring16.2 Solving by Factoring
16.2 Solving by Factoring
 
Tut 1
Tut 1Tut 1
Tut 1
 

Viewers also liked

A review of statistics
A review of statisticsA review of statistics
A review of statisticsedisonre
 
Introduction to statistics
Introduction to statisticsIntroduction to statistics
Introduction to statisticsAndi Koentary
 
Chapter 1 introduction to statistics for engineers 1 (1)
Chapter 1 introduction to statistics for engineers 1 (1)Chapter 1 introduction to statistics for engineers 1 (1)
Chapter 1 introduction to statistics for engineers 1 (1)abfisho
 
Recode Age Variable in SPSS
Recode  Age  Variable in SPSSRecode  Age  Variable in SPSS
Recode Age Variable in SPSSRuth M Tappin
 
Introduction to statistics
Introduction to statisticsIntroduction to statistics
Introduction to statisticsakbhanj
 
Introduction to statistics...ppt rahul
Introduction to statistics...ppt rahulIntroduction to statistics...ppt rahul
Introduction to statistics...ppt rahulRahul Dhaker
 
Introduction To Statistics
Introduction To StatisticsIntroduction To Statistics
Introduction To Statisticsalbertlaporte
 
Spss measurement scales
Spss measurement scalesSpss measurement scales
Spss measurement scalesNaveed Saeed
 

Viewers also liked (9)

A review of statistics
A review of statisticsA review of statistics
A review of statistics
 
Lecture 16 SERIES
Lecture 16  SERIESLecture 16  SERIES
Lecture 16 SERIES
 
Introduction to statistics
Introduction to statisticsIntroduction to statistics
Introduction to statistics
 
Chapter 1 introduction to statistics for engineers 1 (1)
Chapter 1 introduction to statistics for engineers 1 (1)Chapter 1 introduction to statistics for engineers 1 (1)
Chapter 1 introduction to statistics for engineers 1 (1)
 
Recode Age Variable in SPSS
Recode  Age  Variable in SPSSRecode  Age  Variable in SPSS
Recode Age Variable in SPSS
 
Introduction to statistics
Introduction to statisticsIntroduction to statistics
Introduction to statistics
 
Introduction to statistics...ppt rahul
Introduction to statistics...ppt rahulIntroduction to statistics...ppt rahul
Introduction to statistics...ppt rahul
 
Introduction To Statistics
Introduction To StatisticsIntroduction To Statistics
Introduction To Statistics
 
Spss measurement scales
Spss measurement scalesSpss measurement scales
Spss measurement scales
 

Similar to 1105 ch 11 day 5

Binomial Theorem
Binomial TheoremBinomial Theorem
Binomial Theoremitutor
 
Lesson 16 The Spectral Theorem and Applications
Lesson 16  The Spectral Theorem and ApplicationsLesson 16  The Spectral Theorem and Applications
Lesson 16 The Spectral Theorem and ApplicationsMatthew Leingang
 
Truth, deduction, computation lecture g
Truth, deduction, computation   lecture gTruth, deduction, computation   lecture g
Truth, deduction, computation lecture gVlad Patryshev
 
17 integrals of rational functions x
17 integrals of rational functions x17 integrals of rational functions x
17 integrals of rational functions xmath266
 
Sbma 4603 numerical methods Assignment
Sbma 4603 numerical methods AssignmentSbma 4603 numerical methods Assignment
Sbma 4603 numerical methods AssignmentSaidatina Khadijah
 
Kittel c. introduction to solid state physics 8 th edition - solution manual
Kittel c.  introduction to solid state physics 8 th edition - solution manualKittel c.  introduction to solid state physics 8 th edition - solution manual
Kittel c. introduction to solid state physics 8 th edition - solution manualamnahnura
 
Higher nov 2008_p1old
Higher nov 2008_p1oldHigher nov 2008_p1old
Higher nov 2008_p1oldybamary
 
Chapter 6 taylor and maclaurin series
Chapter 6 taylor and maclaurin seriesChapter 6 taylor and maclaurin series
Chapter 6 taylor and maclaurin seriesIrfaan Bahadoor
 
SMB_2012_HR_VAN_ST-last version
SMB_2012_HR_VAN_ST-last versionSMB_2012_HR_VAN_ST-last version
SMB_2012_HR_VAN_ST-last versionLilyana Vankova
 
Form 5 Additional Maths Note
Form 5 Additional Maths NoteForm 5 Additional Maths Note
Form 5 Additional Maths NoteChek Wei Tan
 
Linear Combination, Span And Linearly Independent, Dependent Set
Linear Combination, Span And Linearly Independent, Dependent SetLinear Combination, Span And Linearly Independent, Dependent Set
Linear Combination, Span And Linearly Independent, Dependent SetDhaval Shukla
 
Expresiones algebraicas
Expresiones algebraicasExpresiones algebraicas
Expresiones algebraicasroxi13
 

Similar to 1105 ch 11 day 5 (20)

1110 ch 11 day 10
1110 ch 11 day 101110 ch 11 day 10
1110 ch 11 day 10
 
1506 binomial-coefficients
1506 binomial-coefficients1506 binomial-coefficients
1506 binomial-coefficients
 
Binomial Theorem
Binomial TheoremBinomial Theorem
Binomial Theorem
 
Binomial theorem
Binomial theorem Binomial theorem
Binomial theorem
 
Lesson 16 The Spectral Theorem and Applications
Lesson 16  The Spectral Theorem and ApplicationsLesson 16  The Spectral Theorem and Applications
Lesson 16 The Spectral Theorem and Applications
 
Truth, deduction, computation lecture g
Truth, deduction, computation   lecture gTruth, deduction, computation   lecture g
Truth, deduction, computation lecture g
 
Bessel 1 div_3
Bessel 1 div_3Bessel 1 div_3
Bessel 1 div_3
 
17 integrals of rational functions x
17 integrals of rational functions x17 integrals of rational functions x
17 integrals of rational functions x
 
Sbma 4603 numerical methods Assignment
Sbma 4603 numerical methods AssignmentSbma 4603 numerical methods Assignment
Sbma 4603 numerical methods Assignment
 
Kittel c. introduction to solid state physics 8 th edition - solution manual
Kittel c.  introduction to solid state physics 8 th edition - solution manualKittel c.  introduction to solid state physics 8 th edition - solution manual
Kittel c. introduction to solid state physics 8 th edition - solution manual
 
1526 exploiting symmetries
1526 exploiting symmetries1526 exploiting symmetries
1526 exploiting symmetries
 
Higher nov 2008_p1old
Higher nov 2008_p1oldHigher nov 2008_p1old
Higher nov 2008_p1old
 
Chapter 6 taylor and maclaurin series
Chapter 6 taylor and maclaurin seriesChapter 6 taylor and maclaurin series
Chapter 6 taylor and maclaurin series
 
SMB_2012_HR_VAN_ST-last version
SMB_2012_HR_VAN_ST-last versionSMB_2012_HR_VAN_ST-last version
SMB_2012_HR_VAN_ST-last version
 
Form 5 Additional Maths Note
Form 5 Additional Maths NoteForm 5 Additional Maths Note
Form 5 Additional Maths Note
 
1631 the binomial theorem
1631 the binomial theorem1631 the binomial theorem
1631 the binomial theorem
 
Linear Combination, Span And Linearly Independent, Dependent Set
Linear Combination, Span And Linearly Independent, Dependent SetLinear Combination, Span And Linearly Independent, Dependent Set
Linear Combination, Span And Linearly Independent, Dependent Set
 
1107 ch 11 day 7
1107 ch 11 day 71107 ch 11 day 7
1107 ch 11 day 7
 
Ch07 6
Ch07 6Ch07 6
Ch07 6
 
Expresiones algebraicas
Expresiones algebraicasExpresiones algebraicas
Expresiones algebraicas
 

More from festivalelmo

More from festivalelmo (20)

0101 ch 1 day 1
0101 ch 1 day 10101 ch 1 day 1
0101 ch 1 day 1
 
1103 ch 11 day 3
1103 ch 11 day 31103 ch 11 day 3
1103 ch 11 day 3
 
1204 ch 12 day 4
1204 ch 12 day 41204 ch 12 day 4
1204 ch 12 day 4
 
1203 ch 12 day 3
1203 ch 12 day 31203 ch 12 day 3
1203 ch 12 day 3
 
1201 ch 12 day 1
1201 ch 12 day 11201 ch 12 day 1
1201 ch 12 day 1
 
1202 ch 12 day 2
1202 ch 12 day 21202 ch 12 day 2
1202 ch 12 day 2
 
1104 ch 11 day 4
1104 ch 11 day 41104 ch 11 day 4
1104 ch 11 day 4
 
1114 ch 11 day 14
1114 ch 11 day 141114 ch 11 day 14
1114 ch 11 day 14
 
1113 ch 11 day 13
1113 ch 11 day 131113 ch 11 day 13
1113 ch 11 day 13
 
1112 ch 11 day 12
1112 ch 11 day 121112 ch 11 day 12
1112 ch 11 day 12
 
1109 ch 11 day 9
1109 ch 11 day 91109 ch 11 day 9
1109 ch 11 day 9
 
1108 ch 11 day 8
1108 ch 11 day 81108 ch 11 day 8
1108 ch 11 day 8
 
1106 ch 11 day 6
1106 ch 11 day 61106 ch 11 day 6
1106 ch 11 day 6
 
1115 ch 11 day 15
1115 ch 11 day 151115 ch 11 day 15
1115 ch 11 day 15
 
1007 ch 10 day 7
1007 ch 10 day 71007 ch 10 day 7
1007 ch 10 day 7
 
1006 ch 10 day 6
1006 ch 10 day 61006 ch 10 day 6
1006 ch 10 day 6
 
1005 ch 10 day 5
1005 ch 10 day 51005 ch 10 day 5
1005 ch 10 day 5
 
1004 ch 10 day 4
1004 ch 10 day 41004 ch 10 day 4
1004 ch 10 day 4
 
1003 ch 10 day 3
1003 ch 10 day 31003 ch 10 day 3
1003 ch 10 day 3
 
1002 ch 10 day 2
1002 ch 10 day 21002 ch 10 day 2
1002 ch 10 day 2
 

Recently uploaded

BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptxBIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptxSayali Powar
 
Textual Evidence in Reading and Writing of SHS
Textual Evidence in Reading and Writing of SHSTextual Evidence in Reading and Writing of SHS
Textual Evidence in Reading and Writing of SHSMae Pangan
 
4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptxmary850239
 
4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptxmary850239
 
week 1 cookery 8 fourth - quarter .pptx
week 1 cookery 8  fourth  -  quarter .pptxweek 1 cookery 8  fourth  -  quarter .pptx
week 1 cookery 8 fourth - quarter .pptxJonalynLegaspi2
 
Active Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfActive Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfPatidar M
 
How to Make a Duplicate of Your Odoo 17 Database
How to Make a Duplicate of Your Odoo 17 DatabaseHow to Make a Duplicate of Your Odoo 17 Database
How to Make a Duplicate of Your Odoo 17 DatabaseCeline George
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management systemChristalin Nelson
 
Team Lead Succeed – Helping you and your team achieve high-performance teamwo...
Team Lead Succeed – Helping you and your team achieve high-performance teamwo...Team Lead Succeed – Helping you and your team achieve high-performance teamwo...
Team Lead Succeed – Helping you and your team achieve high-performance teamwo...Association for Project Management
 
Unraveling Hypertext_ Analyzing Postmodern Elements in Literature.pptx
Unraveling Hypertext_ Analyzing  Postmodern Elements in  Literature.pptxUnraveling Hypertext_ Analyzing  Postmodern Elements in  Literature.pptx
Unraveling Hypertext_ Analyzing Postmodern Elements in Literature.pptxDhatriParmar
 
Scientific Writing :Research Discourse
Scientific  Writing :Research  DiscourseScientific  Writing :Research  Discourse
Scientific Writing :Research DiscourseAnita GoswamiGiri
 
Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4JOYLYNSAMANIEGO
 
ROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxVanesaIglesias10
 
How to Fix XML SyntaxError in Odoo the 17
How to Fix XML SyntaxError in Odoo the 17How to Fix XML SyntaxError in Odoo the 17
How to Fix XML SyntaxError in Odoo the 17Celine George
 
4.11.24 Poverty and Inequality in America.pptx
4.11.24 Poverty and Inequality in America.pptx4.11.24 Poverty and Inequality in America.pptx
4.11.24 Poverty and Inequality in America.pptxmary850239
 
Mythology Quiz-4th April 2024, Quiz Club NITW
Mythology Quiz-4th April 2024, Quiz Club NITWMythology Quiz-4th April 2024, Quiz Club NITW
Mythology Quiz-4th April 2024, Quiz Club NITWQuiz Club NITW
 
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...Nguyen Thanh Tu Collection
 
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxQ4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxlancelewisportillo
 
MS4 level being good citizen -imperative- (1) (1).pdf
MS4 level   being good citizen -imperative- (1) (1).pdfMS4 level   being good citizen -imperative- (1) (1).pdf
MS4 level being good citizen -imperative- (1) (1).pdfMr Bounab Samir
 

Recently uploaded (20)

BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptxBIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
 
Textual Evidence in Reading and Writing of SHS
Textual Evidence in Reading and Writing of SHSTextual Evidence in Reading and Writing of SHS
Textual Evidence in Reading and Writing of SHS
 
4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx
 
4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx
 
week 1 cookery 8 fourth - quarter .pptx
week 1 cookery 8  fourth  -  quarter .pptxweek 1 cookery 8  fourth  -  quarter .pptx
week 1 cookery 8 fourth - quarter .pptx
 
Active Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfActive Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdf
 
How to Make a Duplicate of Your Odoo 17 Database
How to Make a Duplicate of Your Odoo 17 DatabaseHow to Make a Duplicate of Your Odoo 17 Database
How to Make a Duplicate of Your Odoo 17 Database
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management system
 
Team Lead Succeed – Helping you and your team achieve high-performance teamwo...
Team Lead Succeed – Helping you and your team achieve high-performance teamwo...Team Lead Succeed – Helping you and your team achieve high-performance teamwo...
Team Lead Succeed – Helping you and your team achieve high-performance teamwo...
 
Unraveling Hypertext_ Analyzing Postmodern Elements in Literature.pptx
Unraveling Hypertext_ Analyzing  Postmodern Elements in  Literature.pptxUnraveling Hypertext_ Analyzing  Postmodern Elements in  Literature.pptx
Unraveling Hypertext_ Analyzing Postmodern Elements in Literature.pptx
 
Scientific Writing :Research Discourse
Scientific  Writing :Research  DiscourseScientific  Writing :Research  Discourse
Scientific Writing :Research Discourse
 
Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4
 
ROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptx
 
How to Fix XML SyntaxError in Odoo the 17
How to Fix XML SyntaxError in Odoo the 17How to Fix XML SyntaxError in Odoo the 17
How to Fix XML SyntaxError in Odoo the 17
 
4.11.24 Poverty and Inequality in America.pptx
4.11.24 Poverty and Inequality in America.pptx4.11.24 Poverty and Inequality in America.pptx
4.11.24 Poverty and Inequality in America.pptx
 
Mythology Quiz-4th April 2024, Quiz Club NITW
Mythology Quiz-4th April 2024, Quiz Club NITWMythology Quiz-4th April 2024, Quiz Club NITW
Mythology Quiz-4th April 2024, Quiz Club NITW
 
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...
 
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxQ4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
 
MS4 level being good citizen -imperative- (1) (1).pdf
MS4 level   being good citizen -imperative- (1) (1).pdfMS4 level   being good citizen -imperative- (1) (1).pdf
MS4 level being good citizen -imperative- (1) (1).pdf
 
Mattingly "AI & Prompt Design: Large Language Models"
Mattingly "AI & Prompt Design: Large Language Models"Mattingly "AI & Prompt Design: Large Language Models"
Mattingly "AI & Prompt Design: Large Language Models"
 

1105 ch 11 day 5

  • 1. 11.1 Sequences & Summation Notation Day Three Revelation 3:20 "Here I am! I stand at the door and knock. If anyone hears my voice and opens the door, I will come in and eat with him, and he with me."
  • 2. The sum of the first n terms of a sequence is called the nth partial sum and is denoted Sn
  • 3. The sum of the first n terms of a sequence is called the nth partial sum and is denoted Sn Find the indicated partial sums: 1) S10 for − 3, − 6, − 9, − 12, K
  • 4. The sum of the first n terms of a sequence is called the nth partial sum and is denoted Sn Find the indicated partial sums: 1) S10 for − 3, − 6, − 9, − 12, K −3 − 6 − 9 − 12 − 15 − 18 − 21− 24 − 27 − 30
  • 5. The sum of the first n terms of a sequence is called the nth partial sum and is denoted Sn Find the indicated partial sums: 1) S10 for − 3, − 6, − 9, − 12, K −3 − 6 − 9 − 12 − 15 − 18 − 21− 24 − 27 − 30 −165
  • 6. Find the indicated partial sums: 2) S6 for an = 10n − 6
  • 7. Find the indicated partial sums: 2) S6 for an = 10n − 6 4 + 14 + 24 + 34 + 44 + 54
  • 8. Find the indicated partial sums: 2) S6 for an = 10n − 6 4 + 14 + 24 + 34 + 44 + 54 174
  • 9. Find the indicated partial sums: 2) S6 for an = 10n − 6 4 + 14 + 24 + 34 + 44 + 54 174 A partial sum can be done on your calculator as the sum of a sequence. Try it ... sum ( seq (10x − 6, x, 1, 6, 1))
  • 10. What is the syntax of this calculation? sum ( seq (10x − 6, x, 1, 6, 1))
  • 11. What is the syntax of this calculation? sum ( seq (10x − 6, x, 1, 6, 1)) explicit formula for the sequence
  • 12. What is the syntax of this calculation? sum ( seq (10x − 6, x, 1, 6, 1)) explicit formula for the sequence summation variable
  • 13. What is the syntax of this calculation? sum ( seq (10x − 6, x, 1, 6, 1)) explicit formula for the sequence summation variable starts at
  • 14. What is the syntax of this calculation? sum ( seq (10x − 6, x, 1, 6, 1)) explicit formula for the sequence summation variable starts at ends at
  • 15. What is the syntax of this calculation? sum ( seq (10x − 6, x, 1, 6, 1)) explicit formula for the sequence increases by (called the step) summation variable starts at ends at
  • 16. Consider this: S1 , S2 , S3 , K Sn
  • 17. Consider this: S1 , S2 , S3 , K Sn It is a sequence of partial sums. More on this later this chapter ...
  • 18. Sigma Notation (or Summation Notation)
  • 19. Sigma Notation (or Summation Notation) n ∑a k = a1 + a2 + a3 +K + an k=1
  • 20. Sigma Notation (or Summation Notation) n ∑a k = a1 + a2 + a3 +K + an k=1 is read “the sum of ak as k goes from 1 to n “
  • 21. Sigma Notation (or Summation Notation) n ∑a k = a1 + a2 + a3 +K + an k=1 is read “the sum of ak as k goes from 1 to n “ k is the summation variable ... or ... index of summation
  • 22. Sigma Notation (or Summation Notation) n ∑a k = a1 + a2 + a3 +K + an k=1 is read “the sum of ak as k goes from 1 to n “ k is the summation variable ... or ... index of summation This is the math shorthand for doing the sum of a sequence just like what we did on the calculator!
  • 23. Example: Express 2 + 5 + 8 + 11+ 14 + 17 + 20 + 23 + 26 using Sigma Notation
  • 24. Example: Express 2 + 5 + 8 + 11+ 14 + 17 + 20 + 23 + 26 using Sigma Notation Find the explicit expression for this sequence. That will be your ak . Then, write the Sigma Notation!
  • 25. Example: Express 2 + 5 + 8 + 11+ 14 + 17 + 20 + 23 + 26 using Sigma Notation Find the explicit expression for this sequence. That will be your ak . Then, write the Sigma Notation! 9 ∑ ( 3k − 1) k=1
  • 26. Example: Express 2 + 5 + 8 + 11+ 14 + 17 + 20 + 23 + 26 using Sigma Notation Find the explicit expression for this sequence. That will be your ak . Then, write the Sigma Notation! 9 ∑ ( 3k − 1) k=1 Practice calculating this on your calculator.
  • 27. Example: Express 2 + 5 + 8 + 11+ 14 + 17 + 20 + 23 + 26 using Sigma Notation Find the explicit expression for this sequence. That will be your ak . Then, write the Sigma Notation! 9 ∑ ( 3k − 1) k=1 Practice calculating this on your calculator. sum ( seq ( 3x − 1, x, 1, 9, 1)) 126
  • 28. Find the sum by hand and verify with calculator: 8 1) ∑ ( 3k − 4 ) k=1
  • 29. Find the sum by hand and verify with calculator: 8 1) ∑ ( 3k − 4 ) k=1 −1+ 2 + 5 + 8 + 11+ 14 + 17 + 20 76
  • 30. Find the sum by hand and verify with calculator: 8 1) ∑ ( 3k − 4 ) k=1 −1+ 2 + 5 + 8 + 11+ 14 + 17 + 20 76 sum ( seq ( 3x − 4, x, 1, 8, 1))
  • 31. Find the sum by hand and verify with calculator: 11 2) ∑4 k=7
  • 32. Find the sum by hand and verify with calculator: 11 2) ∑4 k=7 4+4+4+4+4 20
  • 33. Find the sum by hand and verify with calculator: 11 2) ∑4 k=7 4+4+4+4+4 20 sum ( seq ( 4, x, 7, 11, 1)) or sum ( seq ( 4, x, 1, 5, 1))
  • 34. Write this sum using Sigma Notation: 4 4 4 4 4 4 4 4 3) 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10
  • 35. Write this sum using Sigma Notation: 4 4 4 4 4 4 4 4 3) 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 10 4 ∑k k=3
  • 37. Properties of Sums n n n 1. ∑(a k + bk ) = ∑ ak + ∑ bk k=1 k=1 k=1
  • 38. Properties of Sums n n n 1. ∑(a k + bk ) = ∑ ak + ∑ bk k=1 k=1 k=1 n n n 2. ∑(a k − bk ) = ∑ ak − ∑ bk k=1 k=1 k=1
  • 39. Properties of Sums n n n 1. ∑(a k + bk ) = ∑ ak + ∑ bk k=1 k=1 k=1 n n n 2. ∑(a k − bk ) = ∑ ak − ∑ bk k=1 k=1 k=1 n n 3. ∑(c ⋅ a ) = c ⋅ ∑ a k k k=1 k=1
  • 40. HW #3 “We must not only give what we have, we must also give what we are.” Desire Joseph Cardinal Mercier

Editor's Notes

  1. \n
  2. \n
  3. \n
  4. \n
  5. \n
  6. \n
  7. \n
  8. \n
  9. \n
  10. \n
  11. \n
  12. \n
  13. \n
  14. \n
  15. \n
  16. \n
  17. \n
  18. \n
  19. \n
  20. \n
  21. \n
  22. \n
  23. \n
  24. \n
  25. \n
  26. \n
  27. \n
  28. \n
  29. \n
  30. \n