1 / 36

Chapter 1: Sequences and Sets 1.1 Sequences

Chapter 1: Sequences and Sets 1.1 Sequences. Sequences. What number comes next?. 1, 2, 3, 4, 5, ____. 6. 2, 6, 10, 14, 18, ____. 22. 1, 2, 4, 8, 16, ____. 32. What comes next?. 50. 2, 5, 10, 17, 26, 37, ____. 1, 2, 6, 24, 120, ____. 720. 2, 3, 5, 8, 12, ____. 17. 21.

reegan
Télécharger la présentation

Chapter 1: Sequences and Sets 1.1 Sequences

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Chapter 1:Sequences and Sets1.1 Sequences

  2. Sequences What number comes next? 1, 2, 3, 4, 5, ____ 6 2, 6, 10, 14, 18, ____ 22 1, 2, 4, 8, 16, ____ 32

  3. What comes next? 50 2, 5, 10, 17, 26, 37, ____ 1, 2, 6, 24, 120, ____ 720 2, 3, 5, 8, 12, ____ 17 21 1, 1, 2, 3, 5, 8, 13, ____

  4. The key to any sequence is to discover its pattern • The pattern could be that each term is somehow related to previous terms • The pattern could be described by its relationship to its position in the sequence (1st, 2nd, 3rd etc…) • You might recognize the pattern as some well known sequence of integers (like the evens, or multiples of 10). • You might be able to do all three of these ways!

  5. 2, 4, 6, 8, 10 … • Can we define a given element in relation to previous elements. • The first element has to be 2 since it has no previous elements • The second element is 2 more than the first element • The third element is 2 more than the second element. • In fact, each subsequent element is just two more than the previous one.

  6. 2, 4, 6, 8, 10 … • Can we represent this sequence in relation to its position? • At position 1 the value is 2 • At position 2 the value is 4 • At position 3 the value is 6 • At position n the value is 2 * n

  7. 2, 4, 6, 8, 10 … • Do we recognize this sequence as something familiar? • Yes. It is the positive even numbers.

  8. Mathematical Notation • When we want to refer to terms in a sequence we usually use lower case letters (a, b, …) followed by a subscript indicating the position in the sequence we are referring to. • a1 is the first term in a sequence • a2 is the second term in a sequence • an is the nth term in a sequence

  9. 2, 4, 6, 8, 10 … • What is a1? • What is a3? • What is a5? • What is an if n = 4? • What is an-1 if n = 4? 2 6 10 8 6

  10. Recursive Formula • A recursive formula for a sequence is one where each term is described in relation to a previous term (or terms)

  11. 2, 4, 6, 8, 10 … Write each term in relation to its prior term (as a recursive formula) • What is a1? a1=2 (no prior terms) • What is a3? a3= a2+ 2 • What is a5? a5= a4+ 2 • What is an? an= an-1+ 2

  12. Closed Formula • A closed formula for a sequence is a formula where each term is described only by its relation to its position.

  13. 2, 4, 6, 8, 10 … Write each term in relation to its position (as a closed formula) • What is a1? a1=1* 2 (no prior terms) • What is a3? a3= 3 * 2 • What is a5? a5= 5 * 2 • What is an? an= n * 2

  14. Let’s try another • Consider the sequence 5, 9, 13, 17… • Write a recursive formula for this sequence. • a1=5 • an= an-1 + 4 • Write a closed formula for this sequence • an= 4n + 1

  15. And another 1, 3, 7, 15, 31, 63… Making a table can help to get a feel for what’s going on.

  16. The recursive formula actually isn’t too bad. • a1=1 • an= 2an-1 + 1 The closed formula is a little bit harder this time.

  17. Now try your hand at these. Find both recursive and closed formulas for the following sequences. 2, 6, 10, 14, 18, ____ 1, 2, 4, 8, 16, ____ 1, 2, 6, 24, 120, ____

  18. 2, 6, 10, 14, 18, ____ Recursive Formula Closed Formula

  19. 1, 2, 4, 8, 16, ____ Recursive Formula Closed Formula

  20. 1, 2, 6, 24, 120, ____ Recursive Formula Closed Formula

  21. Find a recursive formula from a closed formula First write out the first several terms so you can understand the sequence

  22. Find a recursive formula from a closed formula Establish the starting point in the pattern and then determine how each value relates the prior value

  23. Find a closed formula from a recursive formula These tend to be harder but you still want to establish and understand the sequence

  24. Find a closed formula from a recursive formula At this point unless you are really clever we are kind of stuck, the pattern is not one you may recognize. Specialized methods are needed to complete these.

  25. Common Mathematical Notion • Summation: A summation is just the sum of the terms in a sequence. • If the terms in the sequence are • 1, 2, 3, 4, 5, 6 then the summation is • 1+2+3+4+5+6 = 21 • If the terms in the sequence are • 1, 4, 9, 16, 25 then the summation is • 1+4+9+16+25 = 55

  26. Summation is a very common Idea • Because it is so common, mathematicians have developed a shorthand to represent summations (also called sigma notation) This is what the shorthand looks like, on the next few slides we will dissect it a bit.

  27. Dissecting Sigma Notation The giant Sigma just means that this represents a summation

  28. Dissecting Sigma Notation The i=1 at the bottom just states where is the sequence we want to start. If the value was 5 then we would start the sequence at the 5th position

  29. Dissecting Sigma Notation The n at the top just says to what element in the sequence we want to get to. In this case we want to go up through the nth item.

  30. Dissecting Sigma Notation The portion to the right of the sigma is the closed formula for the sequence you want to sum over.

  31. Dissecting Sigma Notation So this states that we want to compute the closed formula for each element from 1 to n.

  32. Dissecting Sigma Notation The portion to the right of the sigma is the closed formula for the sequence you want to sum over.

  33. Dissecting Sigma Notation Thus our summation is 1 + 2 + 3 + … + n If I told you that n had the value of 5, then the summation would be 1 + 2 + 3 + 4 + 5 = 15

  34. Let’s try a few. Compute the following summations

  35. How would you write the following sums using sigma notation? 5+10+15+20+25+30+35+40 1+8+27+64+125+216

  36. So why are sequences important • Identifying patterns is an essential tool for anyone • Developing a vocabulary to represent and analyze these sequences is the key to speaking the language of mathematics.

More Related