Recursive Rules


Recursive. That word makes us think of second grade when teachers forced us to write with the cursive m that had three humps instead of two. Whoever came up with that? Either way, recursive rules have nothing to do with cursive handwriting. In fact, "recursive" is an adjective that describes a certain type of rule. It comes from the word "recursion," which is fancy lingo for something that's generated from prior or preceding terms.

In plain English, a recursive rule is when we find the next term of a sequence using the one (or ones) before it. No. Big. Deal. It can actually be easier sometimes.

To figure this out, we're going to go back to the sequences we already created rules for. This time, we'll make recursive rules instead of explicit ones.

Sample Problem

Find the recursive rule and a6 for the sequence: 4, 7, 10, 13, …

This time, we want to find a rule that uses an − 1 to get an. This is nothing more than the mathematically cool way of saying we want to use the second term to get the third, or the fifth term to get the sixth.

With this sequence, we take each term and add 3 to it. So we'll take the term that we want to know, an , and write it in terms of an − 1, or the term that came right before it.

{an} = (an – 1) + 3

The biggest downfall of recursive rules is that in order to find another term, like a6 in this case, we need to first find a5 and a4 and so on down the line. There's no plugging in n like we did before.

In this example, a4 = 13, so a5 = 13 + 3 = 16 and a6 = 16 + 3 = 19. So a6 = 19.

Not too bad. But what if we were asked for a30? Holy terms, Batman.

Sample Problem

Find the recursive rule and a10 for the sequence 2, 4, 8, 16, …

Each term is multiplied by 2 to get the next term. This sets up B-E-A-utifully. Our rule couldn't be much finer:

{an} = 2(an − 1)

The problem we do run into is finding a10 for this guy. We only have four terms, so we'll have to do some serious multiplication. Here it goes…

a5 = 2(a4 ) = 2(16) = 32
a6 = 2(a5 ) = 2(32) = 64
a7 = 2(a6 ) = 2(64) = 128
a8 = 2(a7 ) = 2(128) = 256
a9 = 2(a8 ) = 2(256) = 512
a10 = 2(a9 ) = 2(512) = 1024

So a10 = 1024, just like it did the first time.

Sample Problem

Find the recursive rule for the sequence 0, 1, 1, 2, 3, 5, 8, 13, …

This sequence is very famous and is known as the Fibonacci sequence. Without going into too much detail, this sequence is found all over the place, literally, and is really awesome. But don't take our word for it; check out this video. (You're going to want to watch this one.)

Now let's answer the question. We wanna find a recursive rule. This time, there is no common number added, subtracted, multiplied, or divided. There are no exponents involved. And, try as we might, there are no factorials. Instead, starting with the third term, each term in the Fibonacci Sequence is based solely on the previous two terms.

a1 = 0
a2 = 1
a3 = a2 + a1 = 1 + 0 = 1
a4 = a3 + a2 = 1 + 1 = 2
a5 = a4 + a3 = 2 + 1 = 3

And so on.

The rule must take into account both an − 1 and an − 2 which gives us:

{an} = (an – 1) + (an – 2)

Congratulations. You have officially graduated into the realm of the mathematically informed. More importantly, you now understand why this joke is funny:

A math professor walks into a Fibonacci conference, looks at an esteemed math professor colleague and says, "Man, I can't wait. I think this year's conference is going to be as big as the last two years combined."

Bonus Problem

Fibonacci's Honeybees

In a beehive there are male and female bees. There's a catch, though. Female bees are born when a male bee fertilizes a female egg. Male bees are born when a female egg is left unfertilized. This means males have a mother but no father. Weird. Your mission: draw the first six levels of the family tree of a male honeybee.

The first level has just one male, the one whose tree we are drawing. The second level has just one bee, the male's mom. The third level has a male and female since each female has a mom and a dad. The next level will have a male and female pair in addition to another female—and so on and so fourth.

Check it out. The levels of the honeybee family tree are 1, 1, 2, 3, 5, 8, … #iKnowRight