Tag Archives: sequence

Geometric Sequences

I’ve added a script which helps to understand geometric sequences.

Suppose you were to draw an equilateral triangle on a sheet of paper. It might look something like this:

Now suppose that you draw lines connecting the midpoints of each of the edges of this triangle. This will dissect the larger triangle into four smaller triangles, each of which are equilateral. Three of these smaller triangles will be oriented in the same direction as the original triangle, whereas one will not. Consider the second image below, with the three triangles with the same orientation as the original triangle numbered.

We can continue to draw lines connecting the midpoints of the edges of the marked triangles and counting the resulting triangles that have the same orientation as the original triangle and we see that a pattern emerges.

What one notices is that each time we draw a new triangle by connecting the midpoints of the marked edges, we wind up with three times the number of triangles that were in the previous picture. So (assuming we had enough space) we could draw out the figure that would be the result of doing any number of these dissections. However, if we are only interested in knowing the number of triangles that each image will contain, we can take advantage of the fact that this pattern represents a geometric sequence.

A geometric sequence is a sequence with an initial term, a1 and a common ration, r, where each term after the initial term is obtained by multiplying the previous term by the ratio (a1 cannot be zero, and r cannot be zero or one).

In a geometric sequence, if we know the first term and the ratio, we can determine the nth term by the formula

an = a1*rn – 1

Similarly, if we know the first term and the ratio, we can determine the sum of the first n terms in a geometric sequence by the formula:

Sn =
a1(1 – rn)
1 – r

For the previous example with the triangles pointed in the same direction, we can show the results in the following table:

Drawing NumberNumber of Trianglesratiosum numbersum value
a113S11
a233S24
a393S313
a4273S440
a5813S5121

The script is available at http://www.learninglover.com/examples.php?id=34

Other Blogs that have covered this topic:
Study Math Online

Arithmetic Sequences

Arithmetic Sequences

I’ve added a script which helps to understand arithmetic sequences.

At a previous job of mine, there was a policy of holding a dinner party for the company each time we hired a new employee. At these dinners, each employee was treated to a $20 dinner at the expense of the company. There was also a manager responsible for keeping track of the costs of these dinners.

In computing the costs, the manager noticed that each time there is a new dinner, it was $20 more expensive than the last one. So if we let a1 represent the cost of the first dinner, and let ai represent the cost of the ith dinner, then we see that ai = ai-1 + 20. Sequences like this, where t arise quite often in practice and are called arithmetic sequences. An arithmetic sequence is a list of numbers where the difference between any two consecutive numbers is constant.

For the example above, the term an will represent the cost of dinner after the nth employee has joined the company (assuming that no employees have left the company over this time period). Also the term Sn will represent the total cost the company has paid towards these dinners.

Before we continue with this example, consider the following table which lists the first five terms of an arithmetic sequence as well as the common difference and the first five sums of this sequence.

term numberterm valuediffsum numbersum value
a143S14
a273S211
a3103S321
a4133S434
a5163S550

One of the beauties of arithmetic sequences is that if we know the first term (a1) and the common difference (d), then we can easily calculate the terms an and Sn for any n with the following formulas:

an = a1 + d*(n – 1), where d is the common difference.
Sn = n*(a1 + an)/2

We can use these formulas to derive more information about the sequence. For example, if my manager wanted to estimate the cost of dinners once we had added 30 new employees, this would be term a30 of the sequence, which we can evaluate with the above formula by a30 = a1 + d*(n – 1) = 0 + 20*(30 – 1) = 0 + 20 * 29 = 580.

The script is available at http://www.learninglover.com/examples.php?id=33.

Other Blogs that have covered this topic:
Study Math Online