11.1 Sequences & Summation Notation
                         Day Two




John 14:15 "If you love me, you will keep my commandments."
Not all sequences can be defined with an explicit
rule.
Not all sequences can be defined with an explicit
rule.

A Recursive rule is one where one or more initial
terms are given and all subsequent terms are
defined using previous terms.
Not all sequences can be defined with an explicit
rule.

A Recursive rule is one where one or more initial
terms are given and all subsequent terms are
defined using previous terms.


                    an
Not all sequences can be defined with an explicit
rule.

A Recursive rule is one where one or more initial
terms are given and all subsequent terms are
defined using previous terms.


                    an

                         next term
Not all sequences can be defined with an explicit
rule.

A Recursive rule is one where one or more initial
terms are given and all subsequent terms are
defined using previous terms.


                    an     an+1

                         next term
Not all sequences can be defined with an explicit
rule.

A Recursive rule is one where one or more initial
terms are given and all subsequent terms are
defined using previous terms.


                     an    an+1

          previous        next term
          term
Not all sequences can be defined with an explicit
rule.

A Recursive rule is one where one or more initial
terms are given and all subsequent terms are
defined using previous terms.


            an−1     an    an+1

          previous        next term
          term
Not all sequences can be defined with an explicit
rule.

A Recursive rule is one where one or more initial
terms are given and all subsequent terms are
defined using previous terms.


            an−1      an    an+1

second     previous        next term
previous   term
term
Not all sequences can be defined with an explicit
rule.

A Recursive rule is one where one or more initial
terms are given and all subsequent terms are
defined using previous terms.


    an−2    an−1      an    an+1

second     previous        next term
previous   term
term
Find the first five terms of the sequence if:
      a1 = 3    and     an = 2an−1 − 1
Find the first five terms of the sequence if:
      a1 = 3    and     an = 2an−1 − 1

    seed
Find the first five terms of the sequence if:
      a1 = 3    and     an = 2an−1 − 1

    seed           current = 2(previous)-1
Find the first five terms of the sequence if:
      a1 = 3    and     an = 2an−1 − 1

    seed           current = 2(previous)-1

 a1 = 3
Find the first five terms of the sequence if:
       a1 = 3      and      an = 2an−1 − 1

     seed              current = 2(previous)-1

 a1 = 3
 a2 = 2 ( 3) − 1 = 5
Find the first five terms of the sequence if:
       a1 = 3       and      an = 2an−1 − 1

     seed               current = 2(previous)-1

 a1 = 3
 a2 = 2 ( 3) − 1 = 5
 a3 = 2 ( 5 ) − 1 = 9
Find the first five terms of the sequence if:
       a1 = 3       and       an = 2an−1 − 1

     seed                current = 2(previous)-1

 a1 = 3
 a2 = 2 ( 3) − 1 = 5
 a3 = 2 ( 5 ) − 1 = 9
 a4 = 2 ( 9 ) − 1 = 17
Find the first five terms of the sequence if:
       a1 = 3       and       an = 2an−1 − 1

     seed                current = 2(previous)-1

 a1 = 3
 a2 = 2 ( 3) − 1 = 5
 a3 = 2 ( 5 ) − 1 = 9
 a4 = 2 ( 9 ) − 1 = 17
 a5 = 2 (17 ) − 1 = 33
Find the first five terms of the sequence if:
       a1 = 3       and       an = 2an−1 − 1

     seed                current = 2(previous)-1

 a1 = 3
 a2 = 2 ( 3) − 1 = 5
 a3 = 2 ( 5 ) − 1 = 9
                                ∴ 3, 5, 9, 17, 33
 a4 = 2 ( 9 ) − 1 = 17
 a5 = 2 (17 ) − 1 = 33
The Fibonacci Sequence
      1, 1, 2, 3, 5, 8, 13, 21, K
is defined recursively this way:
The Fibonacci Sequence
      1, 1, 2, 3, 5, 8, 13, 21, K
is defined recursively this way:
       a1 = 1
       a2 = 1
       an = an−1 + an−2
The Fibonacci Sequence
      1, 1, 2, 3, 5, 8, 13, 21, K
is defined recursively this way:
       a1 = 1           needs 2 seed values
       a2 = 1
       an = an−1 + an−2
The Fibonacci Sequence
      1, 1, 2, 3, 5, 8, 13, 21, K
is defined recursively this way:
       a1 = 1           needs 2 seed values
       a2 = 1
       an = an−1 + an−2

Changing the seeds changes the numbers in the
sequence, but it is still a Fibonacci Sequence.
Groups: list the first five terms of this sequence:
      a1 = 4    and      an = 2 ( an−1 + 5 )
Groups: list the first five terms of this sequence:
      a1 = 4       and    an = 2 ( an−1 + 5 )

a1 = 4
a2 = 2 ( 4 + 5 ) = 18
a3 = 2 (18 + 5 ) = 46         ∴ 4, 18, 46, 102, 214
a4 = 2 ( 46 + 5 ) = 102
a5 = 2 (102 + 5 ) = 214
Together, let’s find a recursive definition for
       1, 3, 2, − 1, − 3, − 2, 1, 3, 2, K
and you can see this begins to repeat.
Together, let’s find a recursive definition for
       1, 3, 2, − 1, − 3, − 2, 1, 3, 2, K
and you can see this begins to repeat.


Look for the pattern and how you can use
previous terms to generate current terms ... then
identify the rule and the seeds.

(I bet we can ‘skin the cat’ on this one)
I’ll write your ideas on the board.
       1, 3, 2, − 1, − 3, − 2, 1, 3, 2, K
I’ll write your ideas on the board.
       1, 3, 2, − 1, − 3, − 2, 1, 3, 2, K

Here is one solution I have:

        a1 = 1, a2 = 3 and      an = an−1 − an−2
I’ll write your ideas on the board.
       1, 3, 2, − 1, − 3, − 2, 1, 3, 2, K

Here is one solution I have:

        a1 = 1, a2 = 3 and      an = an−1 − an−2

Here is another:

        a1 = 1, a2 = 3, a3 = 2 and          an = −an−3
I’ll write your ideas on the board.
       1, 3, 2, − 1, − 3, − 2, 1, 3, 2, K

Here is one solution I have:

        a1 = 1, a2 = 3 and      an = an−1 − an−2

Here is another:

        a1 = 1, a2 = 3, a3 = 2 and          an = −an−3

Neither is better than the other. Both work!!
Groups, find a recursive definition for
       21, 17, 13, 9, 5, 1, − 3, K
Groups, find a recursive definition for
       21, 17, 13, 9, 5, 1, − 3, K

Here is a correct definition:

       a1 = 21, and      an = an−1 − 4
HW #2

“Never tell people how to do things. Tell them what to
do and they will surprise you with their ingenuity.”
                                       George Patton

More Related Content

PPT
Set Of Primes Is Infinite - Number Theory
PPTX
2 7 variations
PDF
Recurrence relations
PPTX
1.3 rational expressions
PPTX
Sets Part II: Operations
PPTX
Modeling with Recurrence Relations
PPTX
24 variables and evaluation
PPTX
4.6 radical equations
Set Of Primes Is Infinite - Number Theory
2 7 variations
Recurrence relations
1.3 rational expressions
Sets Part II: Operations
Modeling with Recurrence Relations
24 variables and evaluation
4.6 radical equations

What's hot (20)

PPTX
1 4 cancellation
PPTX
1 s5 variables and evaluation
PPTX
1 2 2nd-degree equation and word problems-x
PDF
Sets class 11 maths chapter 1 2022
PPTX
Solve by Substitution
PPTX
Test for convergence
PPTX
Introduction to Set theory
PPTX
5 6 substitution and factoring formulas
PPTX
41 expressions
PPTX
Sets Part I The Basics
DOCX
PPTX
2 5literal equations
PPT
Exponents and power
PDF
Introduction to probability solutions manual
PPTX
Learn Set Theory
PPTX
42 linear equations
PDF
2 homework
PPT
Solving systems of equations in 3 variables
PPTX
Inverse of A Matrix
1 4 cancellation
1 s5 variables and evaluation
1 2 2nd-degree equation and word problems-x
Sets class 11 maths chapter 1 2022
Solve by Substitution
Test for convergence
Introduction to Set theory
5 6 substitution and factoring formulas
41 expressions
Sets Part I The Basics
2 5literal equations
Exponents and power
Introduction to probability solutions manual
Learn Set Theory
42 linear equations
2 homework
Solving systems of equations in 3 variables
Inverse of A Matrix
Ad

Viewers also liked (19)

TXT
빅토리카지노 ''SX797.COM'' 복권노하우
DOCX
1°básico 2° clase
PPT
Озеро Военное
TXT
모텔카지노 ''SX797.COM'' 룰렛규칙
RTF
Epistemología y-pedagogía
PDF
Poly(phenylethene) (polystyrene)
PDF
PDF
Owls
PDF
Resume_Siyu Pan_BA20160817
DOCX
4° trabajo
PDF
Cocos gram positivos curso básico
PPTX
Antimicoticos rage
PPTX
John D Rockefeller
PDF
REAM x GE Productive End-Use of MHP 28FEB16
DOCX
RESUME SHASTA TIERRA
PPTX
Insurance Distribution System
PDF
50 Beautifully Designed Apple Watch Apps
PPTX
Marketing offline para escritores: marcapáginas 33% de Seebook
PPTX
Seebook para editoriales
빅토리카지노 ''SX797.COM'' 복권노하우
1°básico 2° clase
Озеро Военное
모텔카지노 ''SX797.COM'' 룰렛규칙
Epistemología y-pedagogía
Poly(phenylethene) (polystyrene)
Owls
Resume_Siyu Pan_BA20160817
4° trabajo
Cocos gram positivos curso básico
Antimicoticos rage
John D Rockefeller
REAM x GE Productive End-Use of MHP 28FEB16
RESUME SHASTA TIERRA
Insurance Distribution System
50 Beautifully Designed Apple Watch Apps
Marketing offline para escritores: marcapáginas 33% de Seebook
Seebook para editoriales
Ad

Similar to 1104 ch 11 day 4 (20)

KEY
1103 ch 11 day 3
PPT
1624 sequence
PPT
recurrence-recurrence relation daa unit 2.ppt
PPTX
Sequence: Finding the Indicated Terms
PDF
Ακολουθίες - Α.Π - Γ.Π 2021
PPTX
math12722011-11-07-111203212650-phpapp02.pptx
DOCX
sequence and series.docx
ODP
Analysis sequences and bounded sequences
PDF
kemh108 pdf for students very useful documents
PDF
Sequences and series
DOCX
ANALISIS RIIL 1 3.1 ROBERT G BARTLE
PPTX
10-Sequences and summation.pptx
PPT
Sequences_Arithmetic_Harmonic_Geometric.ppt
PDF
(677528443) neethu text (2)
PPTX
Lesson 1a_Sequence.pptx
PPT
Sequences and series power point
PDF
(678215997) neethutext
PPTX
090799768954
PPT
9.4 part 1 and 2 combined worked
1103 ch 11 day 3
1624 sequence
recurrence-recurrence relation daa unit 2.ppt
Sequence: Finding the Indicated Terms
Ακολουθίες - Α.Π - Γ.Π 2021
math12722011-11-07-111203212650-phpapp02.pptx
sequence and series.docx
Analysis sequences and bounded sequences
kemh108 pdf for students very useful documents
Sequences and series
ANALISIS RIIL 1 3.1 ROBERT G BARTLE
10-Sequences and summation.pptx
Sequences_Arithmetic_Harmonic_Geometric.ppt
(677528443) neethu text (2)
Lesson 1a_Sequence.pptx
Sequences and series power point
(678215997) neethutext
090799768954
9.4 part 1 and 2 combined worked

More from festivalelmo (20)

KEY
0101 ch 1 day 1
KEY
1204 ch 12 day 4
KEY
1203 ch 12 day 3
KEY
1201 ch 12 day 1
KEY
1202 ch 12 day 2
KEY
1114 ch 11 day 14
KEY
1113 ch 11 day 13
KEY
1112 ch 11 day 12
KEY
1110 ch 11 day 10
KEY
1109 ch 11 day 9
KEY
1108 ch 11 day 8
KEY
1107 ch 11 day 7
KEY
1106 ch 11 day 6
KEY
1105 ch 11 day 5
KEY
1115 ch 11 day 15
KEY
1007 ch 10 day 7
KEY
1006 ch 10 day 6
KEY
1005 ch 10 day 5
KEY
1004 ch 10 day 4
KEY
1003 ch 10 day 3
0101 ch 1 day 1
1204 ch 12 day 4
1203 ch 12 day 3
1201 ch 12 day 1
1202 ch 12 day 2
1114 ch 11 day 14
1113 ch 11 day 13
1112 ch 11 day 12
1110 ch 11 day 10
1109 ch 11 day 9
1108 ch 11 day 8
1107 ch 11 day 7
1106 ch 11 day 6
1105 ch 11 day 5
1115 ch 11 day 15
1007 ch 10 day 7
1006 ch 10 day 6
1005 ch 10 day 5
1004 ch 10 day 4
1003 ch 10 day 3

Recently uploaded (20)

PDF
Everyday Spelling and Grammar by Kathi Wyldeck
PPT
hsl powerpoint resource goyloveh feb 07.ppt
PDF
faiz-khans about Radiotherapy Physics-02.pdf
PDF
anganwadi services for the b.sc nursing and GNM
PPTX
Climate Change and Its Global Impact.pptx
PDF
Horaris_Grups_25-26_Definitiu_15_07_25.pdf
PPTX
Thinking Routines and Learning Engagements.pptx
PDF
Health aspects of bilberry: A review on its general benefits
PPTX
Macbeth play - analysis .pptx english lit
PPTX
Integrated Management of Neonatal and Childhood Illnesses (IMNCI) – Unit IV |...
PDF
Physical education and sports and CWSN notes
PPTX
Designing Adaptive Learning Paths in Virtual Learning Environments
PDF
FYJC - Chemistry textbook - standard 11.
PDF
Compact First Student's Book Cambridge Official
PPTX
Key-Features-of-the-SHS-Program-v4-Slides (3) PPT2.pptx
PDF
Lecture on Viruses: Structure, Classification, Replication, Effects on Cells,...
PPTX
Neurology of Systemic disease all systems
PPTX
2025 High Blood Pressure Guideline Slide Set.pptx
PDF
Disorder of Endocrine system (1).pdfyyhyyyy
PPTX
pharmaceutics-1unit-1-221214121936-550b56aa.pptx
Everyday Spelling and Grammar by Kathi Wyldeck
hsl powerpoint resource goyloveh feb 07.ppt
faiz-khans about Radiotherapy Physics-02.pdf
anganwadi services for the b.sc nursing and GNM
Climate Change and Its Global Impact.pptx
Horaris_Grups_25-26_Definitiu_15_07_25.pdf
Thinking Routines and Learning Engagements.pptx
Health aspects of bilberry: A review on its general benefits
Macbeth play - analysis .pptx english lit
Integrated Management of Neonatal and Childhood Illnesses (IMNCI) – Unit IV |...
Physical education and sports and CWSN notes
Designing Adaptive Learning Paths in Virtual Learning Environments
FYJC - Chemistry textbook - standard 11.
Compact First Student's Book Cambridge Official
Key-Features-of-the-SHS-Program-v4-Slides (3) PPT2.pptx
Lecture on Viruses: Structure, Classification, Replication, Effects on Cells,...
Neurology of Systemic disease all systems
2025 High Blood Pressure Guideline Slide Set.pptx
Disorder of Endocrine system (1).pdfyyhyyyy
pharmaceutics-1unit-1-221214121936-550b56aa.pptx

1104 ch 11 day 4

  • 1. 11.1 Sequences & Summation Notation Day Two John 14:15 "If you love me, you will keep my commandments."
  • 2. Not all sequences can be defined with an explicit rule.
  • 3. Not all sequences can be defined with an explicit rule. A Recursive rule is one where one or more initial terms are given and all subsequent terms are defined using previous terms.
  • 4. Not all sequences can be defined with an explicit rule. A Recursive rule is one where one or more initial terms are given and all subsequent terms are defined using previous terms. an
  • 5. Not all sequences can be defined with an explicit rule. A Recursive rule is one where one or more initial terms are given and all subsequent terms are defined using previous terms. an next term
  • 6. Not all sequences can be defined with an explicit rule. A Recursive rule is one where one or more initial terms are given and all subsequent terms are defined using previous terms. an an+1 next term
  • 7. Not all sequences can be defined with an explicit rule. A Recursive rule is one where one or more initial terms are given and all subsequent terms are defined using previous terms. an an+1 previous next term term
  • 8. Not all sequences can be defined with an explicit rule. A Recursive rule is one where one or more initial terms are given and all subsequent terms are defined using previous terms. an−1 an an+1 previous next term term
  • 9. Not all sequences can be defined with an explicit rule. A Recursive rule is one where one or more initial terms are given and all subsequent terms are defined using previous terms. an−1 an an+1 second previous next term previous term term
  • 10. Not all sequences can be defined with an explicit rule. A Recursive rule is one where one or more initial terms are given and all subsequent terms are defined using previous terms. an−2 an−1 an an+1 second previous next term previous term term
  • 11. Find the first five terms of the sequence if: a1 = 3 and an = 2an−1 − 1
  • 12. Find the first five terms of the sequence if: a1 = 3 and an = 2an−1 − 1 seed
  • 13. Find the first five terms of the sequence if: a1 = 3 and an = 2an−1 − 1 seed current = 2(previous)-1
  • 14. Find the first five terms of the sequence if: a1 = 3 and an = 2an−1 − 1 seed current = 2(previous)-1 a1 = 3
  • 15. Find the first five terms of the sequence if: a1 = 3 and an = 2an−1 − 1 seed current = 2(previous)-1 a1 = 3 a2 = 2 ( 3) − 1 = 5
  • 16. Find the first five terms of the sequence if: a1 = 3 and an = 2an−1 − 1 seed current = 2(previous)-1 a1 = 3 a2 = 2 ( 3) − 1 = 5 a3 = 2 ( 5 ) − 1 = 9
  • 17. Find the first five terms of the sequence if: a1 = 3 and an = 2an−1 − 1 seed current = 2(previous)-1 a1 = 3 a2 = 2 ( 3) − 1 = 5 a3 = 2 ( 5 ) − 1 = 9 a4 = 2 ( 9 ) − 1 = 17
  • 18. Find the first five terms of the sequence if: a1 = 3 and an = 2an−1 − 1 seed current = 2(previous)-1 a1 = 3 a2 = 2 ( 3) − 1 = 5 a3 = 2 ( 5 ) − 1 = 9 a4 = 2 ( 9 ) − 1 = 17 a5 = 2 (17 ) − 1 = 33
  • 19. Find the first five terms of the sequence if: a1 = 3 and an = 2an−1 − 1 seed current = 2(previous)-1 a1 = 3 a2 = 2 ( 3) − 1 = 5 a3 = 2 ( 5 ) − 1 = 9 ∴ 3, 5, 9, 17, 33 a4 = 2 ( 9 ) − 1 = 17 a5 = 2 (17 ) − 1 = 33
  • 20. The Fibonacci Sequence 1, 1, 2, 3, 5, 8, 13, 21, K is defined recursively this way:
  • 21. The Fibonacci Sequence 1, 1, 2, 3, 5, 8, 13, 21, K is defined recursively this way: a1 = 1 a2 = 1 an = an−1 + an−2
  • 22. The Fibonacci Sequence 1, 1, 2, 3, 5, 8, 13, 21, K is defined recursively this way: a1 = 1 needs 2 seed values a2 = 1 an = an−1 + an−2
  • 23. The Fibonacci Sequence 1, 1, 2, 3, 5, 8, 13, 21, K is defined recursively this way: a1 = 1 needs 2 seed values a2 = 1 an = an−1 + an−2 Changing the seeds changes the numbers in the sequence, but it is still a Fibonacci Sequence.
  • 24. Groups: list the first five terms of this sequence: a1 = 4 and an = 2 ( an−1 + 5 )
  • 25. Groups: list the first five terms of this sequence: a1 = 4 and an = 2 ( an−1 + 5 ) a1 = 4 a2 = 2 ( 4 + 5 ) = 18 a3 = 2 (18 + 5 ) = 46 ∴ 4, 18, 46, 102, 214 a4 = 2 ( 46 + 5 ) = 102 a5 = 2 (102 + 5 ) = 214
  • 26. Together, let’s find a recursive definition for 1, 3, 2, − 1, − 3, − 2, 1, 3, 2, K and you can see this begins to repeat.
  • 27. Together, let’s find a recursive definition for 1, 3, 2, − 1, − 3, − 2, 1, 3, 2, K and you can see this begins to repeat. Look for the pattern and how you can use previous terms to generate current terms ... then identify the rule and the seeds. (I bet we can ‘skin the cat’ on this one)
  • 28. I’ll write your ideas on the board. 1, 3, 2, − 1, − 3, − 2, 1, 3, 2, K
  • 29. I’ll write your ideas on the board. 1, 3, 2, − 1, − 3, − 2, 1, 3, 2, K Here is one solution I have: a1 = 1, a2 = 3 and an = an−1 − an−2
  • 30. I’ll write your ideas on the board. 1, 3, 2, − 1, − 3, − 2, 1, 3, 2, K Here is one solution I have: a1 = 1, a2 = 3 and an = an−1 − an−2 Here is another: a1 = 1, a2 = 3, a3 = 2 and an = −an−3
  • 31. I’ll write your ideas on the board. 1, 3, 2, − 1, − 3, − 2, 1, 3, 2, K Here is one solution I have: a1 = 1, a2 = 3 and an = an−1 − an−2 Here is another: a1 = 1, a2 = 3, a3 = 2 and an = −an−3 Neither is better than the other. Both work!!
  • 32. Groups, find a recursive definition for 21, 17, 13, 9, 5, 1, − 3, K
  • 33. Groups, find a recursive definition for 21, 17, 13, 9, 5, 1, − 3, K Here is a correct definition: a1 = 21, and an = an−1 − 4
  • 34. HW #2 “Never tell people how to do things. Tell them what to do and they will surprise you with their ingenuity.” George Patton

Editor's Notes