AP Calculus BC glossary

Recursive Sequence

Also called: Recursive formula, Recurrence relation

A recursive sequence is given by one or more starting values together with a rule that produces each new term from the terms before it, instead of an explicit formula in n. Unless you can find a closed form, and arithmetic and geometric recursions always have one, you reach a distant term by iterating.

an+1=f(an,an1,),a1,,ak givena_{n+1} = f(a_n, a_{n-1}, \ldots), \qquad a_1, \ldots, a_k \ \text{given}

Recursive definitions are not an AP Calculus topic in their own right. Reading a recurrence off a list of opening terms belongs to AP Precalculus; on this exam recursion arrives through Euler's method, Topic 7.5, where each new value is built from the previous one. In Unit 10 the term-to-term view is the useful one, since a geometric series has an+1=rana_{n+1} = r\,a_n and the ratio test looks straight at an+1/ana_{n+1}/a_n.

How many starting values you need is set by how far back the rule reaches. A first order rule takes one: an+1=2an+1a_{n+1} = 2a_n + 1 with a1=2a_1 = 2 gives 2,5,11,23,2, 5, 11, 23, \ldots. Fibonacci reaches back two terms, an+1=an+an1a_{n+1} = a_n + a_{n-1}, so it needs two seeds, a1=a2=1a_1 = a_2 = 1.

Iterating is mechanical, and the counting is where marks go missing. Reaching a5a_5 from a1a_1 takes four applications of the rule, not five. Euler's method has the identical shape: each new value comes from the previous value plus the step size times the slope there.

The mistake

Substituting nn into a recursive rule as though the rule itself were closed. For an+1=an+3a_{n+1} = a_n + 3 with a1=2a_1 = 2 a closed form does exist, an=3n1a_n = 3n - 1, and the tenth term is 2+3(9)=292 + 3(9) = 29, since nine steps separate the first term from the tenth. Writing 2+3(10)2 + 3(10) counts one step too many.

Appears in: Unit 10: Infinite Sequences and Series (BC)