ALG1-10.3

Arithmetic & Geometric Sequences

Learn to tell arithmetic from geometric sequences, write recursive and explicit formulas, and see how they connect to linear and exponential functions.

What you'll do in this lesson

A voice-first session with the Crimsora tutor on Arithmetic & Geometric Sequences, then targeted practice and FRQs — with the tutor adapting to where you get stuck.

What this lesson covers

Every sequence is just a list of numbers in order, but the interesting question is always the same: what did you do to one term to get the next? If you added the same amount every time, the sequence is arithmetic. If you multiplied by the same amount every time, it is geometric. That one decision drives everything else in this lesson.

Once you know the type, you can describe the sequence two ways: recursively, by saying where it starts and how to step forward, or explicitly, by writing a formula that jumps straight to the 50th term without listing the first 49. Along the way you will see something that ties this unit back to earlier work — arithmetic sequences are linear functions in disguise, and geometric sequences are exponential functions in disguise. Same math, new notation.

Reading a Sequence: Differences and Ratios

A sequence is an ordered list of numbers. Each number is a term, and terms are labeled by position: a1a_1 is the first term, a2a_2 the second, and ana_n the term in position nn. The position number nn is always a counting number — there is no term number 0.5 and (in this course) no a0a_0 unless a problem sets one up on purpose.

To classify a sequence, run two quick tests on consecutive terms. Subtract to look for a constant common difference dd, then divide to look for a constant common ratio rr. Whichever test gives the same answer every time tells you the type.
SequenceDifferencesRatiosType
4,9,14,194, 9, 14, 19+5,+5,+5+5, +5, +52.25,1.56,2.25, 1.56, \ldotsArithmetic, d=5d = 5
3,6,12,243, 6, 12, 24+3,+6,+12+3, +6, +122,2,22, 2, 2Geometric, r=2r = 2
80,60,40,2080, 60, 40, 2020,20,20-20, -20, -200.75,0.67,0.75, 0.67, \ldotsArithmetic, d=20d = -20
1,4,9,161, 4, 9, 16+3,+5,+7+3, +5, +74,2.25,1.784, 2.25, 1.78Neither
Two cautions. First, always subtract in the direction later term minus earlier term, so d=a2a1d = a_2 - a_1; reversing the order flips the sign and sends the rest of the problem the wrong way. Second, check more than one pair. The list 2,4,8,102, 4, 8, 10 has a ratio of 2 for the first two steps and then quits, so it is not geometric. A sequence is only arithmetic or geometric if the pattern holds for every consecutive pair.

Recursive Formulas: Start Here, Then Do This

A recursive formula describes a sequence in terms of the term before it. It always has two parts, and leaving one out makes the formula useless.

For an arithmetic sequence: a1=first terma_1 = \text{first term} and an=an1+da_n = a_{n-1} + d for n2n \ge 2.

For a geometric sequence: a1=first terma_1 = \text{first term} and an=an1ra_n = a_{n-1} \cdot r for n2n \ge 2.

So the sequence 6,10,14,18,6, 10, 14, 18, \ldots is written a1=6a_1 = 6, an=an1+4a_n = a_{n-1} + 4. The sequence 5,15,45,5, 15, 45, \ldots is written a1=5a_1 = 5, an=an13a_n = a_{n-1} \cdot 3.

The notation an1a_{n-1} trips people up. It does not mean "the term ana_n minus 1." The subscript is an address, not a quantity: an1a_{n-1} is the term one position earlier. If n=7n = 7, then an1a_{n-1} means a6a_6.

The most common mistake is writing only an=an1+4a_n = a_{n-1} + 4 and stopping. That rule fits 6,10,14,6, 10, 14, \ldots but it also fits 1,5,9,1, 5, 9, \ldots and infinitely many other lists. Without the starting value the sequence is not pinned down. The second most common mistake is mixing operations — writing an=an1+3a_n = a_{n-1} + 3 for a sequence that actually triples. Say the pattern out loud ("times three") before you write it.

Recursive formulas are excellent for generating the next few terms and terrible for finding a60a_{60}, because you would have to compute all 59 terms before it. That is exactly the problem explicit formulas solve.

Explicit Formulas: Jump Straight to Any Term

An explicit formula gives ana_n directly from nn. Build it by counting how many steps you take from the first term.

To reach a5a_5 from a1a_1 you take 4 steps. To reach ana_n you take n1n - 1 steps. So:an=a1+(n1)darithmetica_n = a_1 + (n-1)d \qquad \text{arithmetic}an=a1rn1geometrica_n = a_1 \cdot r^{\,n-1} \qquad \text{geometric}For 6,10,14,18,6, 10, 14, 18, \ldots with a1=6a_1 = 6 and d=4d = 4: an=6+(n1)4a_n = 6 + (n-1)4, which simplifies to an=4n+2a_n = 4n + 2. Check it — a3=4(3)+2=14a_3 = 4(3) + 2 = 14, correct.

For 5,15,45,5, 15, 45, \ldots with a1=5a_1 = 5 and r=3r = 3: an=53n1a_n = 5 \cdot 3^{n-1}. Then a6=535=5243=1215a_6 = 5 \cdot 3^5 = 5 \cdot 243 = 1215.

The number one error in this whole lesson is the off-by-one: writing an=6+4na_n = 6 + 4n or an=53na_n = 5 \cdot 3^n. Both formulas are shifted one term too far. There is a five-second fix — plug in n=1n = 1. A correct formula must return the first term. 531=155 \cdot 3^1 = 15, not 5, so that version is wrong.

In the geometric formula, the exponent applies only to rr, never to the product. 53n15 \cdot 3^{n-1} means 55 times 3n13^{n-1}; it does not mean (53)n1=15n1(5 \cdot 3)^{n-1} = 15^{n-1}. Order of operations handles the exponent first, then the multiplication.

Sequences Are Functions: The Linear and Exponential Link

A sequence is a function whose inputs are the position numbers 1,2,3,1, 2, 3, \ldots and whose outputs are the terms. That reframing explains why these formulas look so familiar.

Distribute the arithmetic formula: an=a1+(n1)d=dn+(a1d)a_n = a_1 + (n-1)d = dn + (a_1 - d). That is y=mx+by = mx + b with slope dd. The common difference is the slope — the constant rate of change per step. Rewrite the geometric formula as an=(a1r)rna_n = \left(\frac{a_1}{r}\right) r^{n} and you get y=abxy = ab^x, an exponential function with base rr. The common ratio is the growth factor.
FeatureArithmeticGeometric
Step ruleadd ddmultiply by rr
Explicit forman=a1+(n1)da_n = a_1 + (n-1)dan=a1rn1a_n = a_1 r^{n-1}
Function familylinearexponential
Graph shapepoints along a linepoints along a curve
Grows byequal amountsequal percents
One genuine difference: the graph of a sequence is a set of separate dots, not a connected line or curve, because the domain is only the counting numbers. There is no term between a3a_3 and a4a_4, so you never connect the points.

This link is practical. A phone plan that charges a flat 15 dollars more each month is arithmetic and linear. A bacteria culture that doubles every hour is geometric and exponential. When someone tells you a quantity grows by 5 percent per year, the multiplier is r=1.05r = 1.05, so successive years form a geometric sequence — and that is the same structure you will use for compound interest and half-life problems later.

Working Backward: Finding dd, rr, or the Term Number

Problems often hand you two terms that are not next to each other, or ask which position a given value occupies.

Suppose an arithmetic sequence has a3=11a_3 = 11 and a7=27a_7 = 27. Going from position 3 to position 7 is 4 steps, and the total change is 2711=1627 - 11 = 16, so d=16÷4=4d = 16 \div 4 = 4. Back up two steps from a3a_3 to get a1=112(4)=3a_1 = 11 - 2(4) = 3. The explicit formula is an=3+(n1)4=4n1a_n = 3 + (n-1)4 = 4n - 1.

For geometric sequences, the same idea uses division. If a2=12a_2 = 12 and a5=96a_5 = 96, that is 3 steps, so r3=96÷12=8r^3 = 96 \div 12 = 8 and r=2r = 2. Then a1=12÷2=6a_1 = 12 \div 2 = 6 and an=62n1a_n = 6 \cdot 2^{n-1}.

To find a term's position, set the explicit formula equal to the value and solve. Is 71 in the sequence 4n14n - 1? Solve 4n1=714n - 1 = 71 to get n=18n = 18, a counting number, so yes — it is the 18th term. Is 50 in that sequence? 4n1=504n - 1 = 50 gives n=12.75n = 12.75, which is not a valid position, so 50 never appears. That whole-number check is the point of the question.

Watch for decreasing geometric sequences: 64,32,16,64, 32, 16, \ldots has r=12r = \frac{1}{2}, a ratio between 0 and 1, and it decreases without ever reaching zero. A negative ratio makes signs alternate — 3,6,12,243, -6, 12, -24 has r=2r = -2.

Key terms

Sequence.
An ordered list of numbers, treated as a function whose inputs are the position numbers 1,2,3,1, 2, 3, \ldots and whose outputs are the terms.
Term (ana_n).
A single number in a sequence, labeled by its position. a4a_4 means the fourth term; the subscript is an address, not a multiplier.
Arithmetic sequence.
A sequence in which the same number is added to each term to get the next, giving a constant common difference.
Common difference (dd).
The constant value anan1a_n - a_{n-1} in an arithmetic sequence; it equals the slope of the matching linear function.
Geometric sequence.
A sequence in which each term is multiplied by the same nonzero number to get the next, giving a constant common ratio.
Common ratio (rr).
The constant value an÷an1a_n \div a_{n-1} in a geometric sequence; it equals the base (growth factor) of the matching exponential function.
Recursive formula.
A definition that states the first term and a rule for producing each term from the one before, such as a1=6a_1 = 6 and an=an1+4a_n = a_{n-1} + 4.
Explicit formula.
A formula that computes ana_n directly from the position nn, such as an=a1+(n1)da_n = a_1 + (n-1)d or an=a1rn1a_n = a_1 r^{n-1}.

Worked example

The first four terms of a sequence are 96, 48, 24, 12. Classify the sequence, write both a recursive and an explicit formula, find the 8th term, and determine whether 1.5 is a term of the sequence.
Step 1 — Classify. Check differences: 4896=4848 - 96 = -48 but 2448=2424 - 48 = -24. Not constant, so it is not arithmetic. Check ratios: 48÷96=1248 \div 96 = \frac{1}{2}, 24÷48=1224 \div 48 = \frac{1}{2}, 12÷24=1212 \div 24 = \frac{1}{2}. The ratio is constant, so the sequence is geometric with r=12r = \frac{1}{2} and a1=96a_1 = 96.

Step 2 — Recursive formula. State both parts: a1=96a_1 = 96 and an=an112a_n = a_{n-1} \cdot \frac{1}{2} for n2n \ge 2. (Writing an=an12a_n = \frac{a_{n-1}}{2} is equally correct.)

Step 3 — Explicit formula. Use an=a1rn1a_n = a_1 r^{n-1}, so an=96(12)n1a_n = 96\left(\frac{1}{2}\right)^{n-1}. Verify with n=1n = 1: 96(12)0=961=9696\left(\frac{1}{2}\right)^0 = 96 \cdot 1 = 96. That matches the first term, so the exponent is right.

Step 4 — Find a8a_8. a8=96(12)7=961128=96128=0.75a_8 = 96\left(\frac{1}{2}\right)^{7} = 96 \cdot \frac{1}{128} = \frac{96}{128} = 0.75.

Step 5 — Is 1.5 a term? Set 96(12)n1=1.596\left(\frac{1}{2}\right)^{n-1} = 1.5. Divide both sides by 96: (12)n1=1.596=164\left(\frac{1}{2}\right)^{n-1} = \frac{1.5}{96} = \frac{1}{64}. Since (12)6=164\left(\frac{1}{2}\right)^6 = \frac{1}{64}, we need n1=6n - 1 = 6, so n=7n = 7. Because 7 is a counting number, yes — 1.5 is the 7th term. (Listing forward confirms it: 96, 48, 24, 12, 6, 3, 1.5.)

Practice questions

Which explicit formula generates the sequence 7,11,15,19,7, 11, 15, 19, \ldots?
  1. an=7+4na_n = 7 + 4n
  2. an=4n+3a_n = 4n + 3
  3. an=74n1a_n = 7 \cdot 4^{n-1}
  4. an=4+7(n1)a_n = 4 + 7(n-1)

Answer: an=4n+3a_n = 4n + 3

The differences are all +4+4, so the sequence is arithmetic with d=4d = 4 and a1=7a_1 = 7. Then an=7+(n1)4=7+4n4=4n+3a_n = 7 + (n-1)4 = 7 + 4n - 4 = 4n + 3. Test it: a1=4(1)+3=7a_1 = 4(1) + 3 = 7 and a3=4(3)+3=15a_3 = 4(3)+3 = 15, both correct. The choice 7+4n7 + 4n is the classic off-by-one — it gives 11 for n=1n = 1, one term too far along. The third choice multiplies instead of adds, and the fourth swaps the roles of the first term and the common difference.
A geometric sequence has a2=18a_2 = 18 and a4=162a_4 = 162. Find the common ratio and a1a_1, then write the explicit formula. Assume rr is positive.

Answer: r=3r = 3, a1=6a_1 = 6, and an=63n1a_n = 6 \cdot 3^{n-1}.

Going from position 2 to position 4 is two multiplications by rr, so 18r2=16218 \cdot r^2 = 162, giving r2=9r^2 = 9 and r=3r = 3 (the problem says rr is positive, which rules out 3-3). Back up one step from a2a_2: a1=18÷3=6a_1 = 18 \div 3 = 6. Substituting into an=a1rn1a_n = a_1 r^{n-1} gives an=63n1a_n = 6 \cdot 3^{n-1}. Check a4=627=162a_4 = 6 \cdot 27 = 162. Students often divide 162162 by 1818 and call the result the ratio, but 99 is the two-step multiplier, not the one-step ratio.
Explain why the sequence 5,10,15,20,5, 10, 15, 20, \ldots corresponds to a linear function while 5,10,20,40,5, 10, 20, 40, \ldots corresponds to an exponential function, and describe how their graphs differ.

Answer: The first is arithmetic with d=5d = 5, so an=5na_n = 5n, a linear rule with constant rate of change 5. The second is geometric with r=2r = 2, so an=52n1a_n = 5 \cdot 2^{n-1}, an exponential rule with a constant growth factor. Both graphs are sets of discrete points, but the first set lies along a straight line and the second lies along an increasing curve that gets steeper.

In the first sequence you add the same amount at every step, which is exactly what constant slope means in a linear function. In the second you multiply by the same amount at every step, which is what a constant base means in an exponential function. The key detail people forget is the domain: the inputs are only n=1,2,3,n = 1, 2, 3, \ldots, so you plot separate dots and never connect them — there is no term between the 2nd and the 3rd.

FAQ

What is the difference between a recursive and an explicit formula?
A recursive formula tells you where to start and how to get from one term to the next, so you must know the previous term to use it. An explicit formula computes any term directly from its position number. Recursive is faster for listing the next two or three terms; explicit is the only practical way to find something like the 200th term.
Why is there an n1n-1 in the explicit formulas instead of nn?
Because you start counting from a1a_1, not from a step zero. Getting to the 5th term from the 1st takes only 4 additions (or 4 multiplications), so getting to the nnth term takes n1n-1 of them. Quick check: substitute n=1n = 1 into your formula. If it does not return the first term, your exponent or coefficient is shifted.
Can a sequence be both arithmetic and geometric?
Yes, but only in the constant case. A sequence like 7,7,7,7,7, 7, 7, 7, \ldots has d=0d = 0 and r=1r = 1, so it satisfies both definitions. Apart from constant sequences (and ignoring sequences of all zeros, where the ratio is undefined), no sequence is both.
How do I know a sequence is neither arithmetic nor geometric?
Compute all the consecutive differences and all the consecutive ratios. If neither list is constant, the sequence is neither type. Squares like 1,4,9,161, 4, 9, 16 and the Fibonacci sequence 1,1,2,3,5,81, 1, 2, 3, 5, 8 are common examples — Fibonacci does have a recursive rule, an=an1+an2a_n = a_{n-1} + a_{n-2}, but it is not arithmetic because the amount added changes each time.

Learn this with a teacher, not a page

The Crimsora tutor teaches Arithmetic & Geometric Sequences live — explaining on a whiteboard, asking you questions, and adapting to where you get stuck.