Recursion Formulas: Practice Problems and Solutions

The Actuary's Free Study Guide for Exam 3L - Section 20

G. Stolyarov II
This section of sample problems and solutions is a part of The Actuary's Free Study Guide for Exam 3L, authored by Mr. Stolyarov. This is Section 20 of the Study Guide. See an index of all sections by following the link in this paragraph.

Two basic kinds of recursion formulas will be used on Exam 3L.

The backward recursion formula:

u(x) = c(x) + d(x)*u(x + 1)

The forward recursion formula:

u(x + 1) = -c(x)/d(x) + u(x)/d(x)

What are the functions u, c, and d?

u(x) is the function/life table characteristic being evaluated.

c(x) and d(x) are functions relating u(x) to u(x + 1). They are typically given, along with a starting value of u(x) or u(x +1). Or u(x) and u(x + 1) are given, and one is asked to find c(x) and d(x).

Here, we will do some fairly simple practice problems with recursion formulas, whose main objective will be to get students to memorize the formulas.

Source: Bowers, Gerber, et. al. Actuarial Mathematics. 1997. Second Edition. Society of Actuaries: Itasca, Illinois. p. 73.

Original Problems and Solutions from The Actuary's Free Study Guide

Problem S3L20-1. It is known that u(x + 1) = 3x3, d(x) = 3/x, c(x) = 5x2. Find u(x) using a recursion formula.

Solution S3L20-1. We use a backward recursion formula:

u(x) = c(x) + d(x)*u(x + 1) = 5x2 + (3/x)3x3 = 5x2 + 9x2 = u(x) = 14x2.

Problem S3L20-2. It is known that c(x) = 15x2, and d(x) = 3. You know that u(16) = 35. Find u(17) using a recursion formula.

Solution S3L20-2. We use a forward recursion formula:

u(x + 1) = -c(x)/d(x) + u(x)/d(x) = -15x2/3 + u(x)/3. We know that x = 16 and u(x) = 35. Thus, u(17) = -15*172/3 + 35/3 = u(17) = -1433.3333333333.

Problem S3L20-3. You are trying to establish a recursion formula between tpx and t+1px. Find c(x) and d(x) for this formula, satisfying the requirement that at least one of these functions must have a "p" in it.

Solution S3L20-3. We know that tpx = s(x + t)/s(x) and t+1px = s(x + t + 1)/s(x)

Now we can relate tpx to t+1px via a backward recursion formula:

tpx = t+1px[s(x + t)/s(x + t + 1)]

We know that s(x + t + 1)/s(x + t) = px+t,

so [s(x + t)/s(x + t + 1)] = 1/px+t

Thus, tpx = [1/px+t]t+1px

tpx = 0 + [1/px+t]t+1px.

This follows the format of the backward recursion formula u(x) = c(x) + d(x)*u(x + 1).

Thus, c(x) = 0 and d(x) = [1/px+t].

Problem S3L20-4. You are trying to establish a recursion formula between a(x) and a(x+1) for a population of aquatic aardvarks. It is known that (Lx - lx+1) = (7/8)(Lx+1 - lx+2) for all x and (lx - lx+1) = (3/4)(lx+1 - lx+2) for all x. Find c(x) and d(x) for this formula. Your answers should be expressed in terms of the functions "L," "l," and a(x). (If you need to, feel free to refresh yourself on the formula for Lx in Section 13 and the formula for a(x) from Section 14.)

Solution S3L20-4.

We know from Section 14 that a(x) = (Lx - lx+1)/(lx - lx+1).

Likewise, a(x+1) = (Lx+1 - lx+2)/(lx+1 - lx+2)

Now we can relate a(x) to a(x+1):

a(x) = a(x+1)[(lx+1 - lx+2)/(Lx+1 - lx+2)][(Lx - lx+1)/(lx - lx+1)]

a(x) = a(x+1)[(lx+1 - lx+2)/(lx - lx+1)][(Lx - lx+1)/(Lx+1 - lx+2)]

We know that (Lx - lx+1) = (7/8)(Lx+1 - lx+2) and (lx - lx+1) = (3/4)(lx+1 - lx+2).

So [(lx+1 - lx+2)/(lx - lx+1)] = 4/3 and [(Lx - lx+1)/(Lx+1 - lx+2)] = 7/8

Thus, a(x) = a(x+1)(4/3)(7/8)

a(x) = (7/6)a(x+1)

Hence, using the format of the backward recursion formula, c(x) = 0 and d(x) = 7/6.

Problem S3L20-5. You are trying to establish a recursion formula between x3 and 2(x+1)3. Find c(x) in this formula, given that u(x) = x3 and u(x+1) = 2(x+1)3, and d(x) = 2.

Solution S3L20-5. We use the format of a backward recursion formula:

u(x) = c(x) + d(x)*u(x + 1)

x3 = c(x) + d(x)*2(x+1)3

x3 = c(x) + d(x)*2(x+1)3

x3 = c(x) + d(x)(2x3 + 6x2 + 6x + 2)

x3 = c(x) + 2(2x3 + 6x2 + 6x + 2)

c(x) = x3 - (4x3 + 12x2 + 12x + 4)

c(x) = - 3x3 - 12x2 - 12x - 4

See other sections of The Actuary's Free Study Guide for Exam 3L.

Published by G. Stolyarov II

G. Stolyarov II is a science fiction novelist, independent essayist, poet, amateur mathematician, composer, author, and actuary.  View profile

To comment, please sign in to your Yahoo! account, or sign up for a new account.