
David W. answered 09/15/16
Tutor
4.7
(90)
Experienced Prof
Explicit Formula of a Sequence - A formula that allows direct computation of any term for a sequence a1, a2, a3, . . . , an, . . . . Thus, given an n, we can immediately determine an.
Note that this is an arithmetic sequence, so the explicit formula is:
an = a1 + (n-1)d where a1 is the first term and d is the common difference
an = 2 +(n-1)2
an = 2 + 2n - 2
an = 2n
Recursive Formula of a Sequence
For a sequence a1, a2, a3, . . . , an, . . . a recursive formula is a formula that requires the computation of all previous terms in order to find the value of an.
For a sequence a1, a2, a3, . . . , an, . . . a recursive formula is a formula that requires the computation of all previous terms in order to find the value of an.
The recursive definition for this sequence is:
a1 = 2 [base case]
an = an-1 + 2 for n>1 [recursive case]