EXAMPLE 3 Write recursive rules for special sequences

  • Slides: 9
Download presentation
EXAMPLE 3 Write recursive rules for special sequences Write a recursive rule for the

EXAMPLE 3 Write recursive rules for special sequences Write a recursive rule for the sequence. a. 1, 1, 2, 3, 5, . . . b. 1, 1, 2, 6, 24, . . . SOLUTION a. Beginning with the third term in the sequence, each term is the sum of the two previous terms. ANSWER So, a recursive rule is a 1 = 1, a 2 = 1, an = an – 2 + an – 1.

EXAMPLE 3 b. Write recursive rules for special sequences Denote the first term by

EXAMPLE 3 b. Write recursive rules for special sequences Denote the first term by a 0 = 1. Then note that a 1 = 1 a 0, a 2 = 2 a 1, a 3 = 6 = 3 a 2, and so on. ANSWER So, a recursive rule is a 0 = 1, an = n an – 1.

EXAMPLE 4 Solve a multi-step problem Music Service . An online music service initially

EXAMPLE 4 Solve a multi-step problem Music Service . An online music service initially has 50, 000 annual members. Each year it loses 20% of its current members and adds 5000 new members. Write a recursive rule for the number an of members at the start of the nth year.

EXAMPLE 4 . . Solve a multi-step problem Find the number of members at

EXAMPLE 4 . . Solve a multi-step problem Find the number of members at the start of the 5 th year. Describe what happens to the number of members over time. SOLUTION STEP 1 Write a recursive rule. Because the number of members declines 20% each year, 80% of the members are retained from one year to the next. Also, 5000 new members are added each year.

EXAMPLE 4 Solve a multi-step problem ANSWER A recursive rule is a 1 =

EXAMPLE 4 Solve a multi-step problem ANSWER A recursive rule is a 1 = 50, 000, an = 0. 8 an – 1 + 5000.

EXAMPLE 4 Solve a multi-step problem STEP 2 Find the number of members at

EXAMPLE 4 Solve a multi-step problem STEP 2 Find the number of members at the start of the 5 th year. Enter 50, 000 (the value of a 1) into a graphing calculator. Then enter the rule 0. 8 Ans + 5000 to find a 2. Press three more times to find a 5.

EXAMPLE 4 Solve a multi-step problem STEP 3 Describe what happens to the number

EXAMPLE 4 Solve a multi-step problem STEP 3 Describe what happens to the number of members over time. Continue pressing on the calculator. As shown at the right, after many years the number of members approaches 25, 000.

GUIDED PRACTICE 9. for Examples 3 and 4 Write a recursive rule for the

GUIDED PRACTICE 9. for Examples 3 and 4 Write a recursive rule for the sequence. a. 1, 2, 2, 4, 8, 32, . . ANSWER So, a recursive rule is a 1 = 1, a 2 = 2, an = (an – 2) (an – 1).

GUIDED PRACTICE for Examples 3 and 4 10. WHAT IF? In Example 4, suppose

GUIDED PRACTICE for Examples 3 and 4 10. WHAT IF? In Example 4, suppose 70% of the member are retained each year. What happen to the number of member over time? ANSWER The number of members stabilizes at about 16, 667 members.