In short
An arithmetic progression (AP) is a sequence in which every consecutive pair of terms has the same difference d, called the common difference. If the first term is a and the common difference is d, the n-th term is a_n = a + (n-1)d. This formula turns the recursive pattern "add d each time" into a direct formula that gives you any term instantly. APs are linear — their terms lie on a straight line when plotted — and they show up whenever something grows (or shrinks) by a fixed amount at each step.
An auto-rickshaw meter in a city starts at ₹25 for the first kilometre, then adds ₹12 for each additional kilometre. After 1 km the fare is ₹25. After 2 km, ₹37. After 3 km, ₹49. After 4 km, ₹61. Write these fares in order:
Check the gaps: 37 - 25 = 12, 49 - 37 = 12, 61 - 49 = 12. Every consecutive pair differs by the same amount — ₹12. That constant gap is the defining feature of an arithmetic progression. The fare after n kilometres is not some mysterious formula; it is just the starting fare plus (n-1) copies of ₹12. The tenth kilometre? 25 + 9 \times 12 = 133. No surprises.
This article is about that structure: sequences with a constant difference. You will see exactly why the n-th term formula works, how to recognise an AP, and what properties make it a workhorse in mathematics.
Definition and common difference
Arithmetic Progression
A sequence a_1, a_2, a_3, \dots is an arithmetic progression (AP) if there exists a constant d such that
The constant d is called the common difference. The first term is usually denoted a.
The common difference can be positive (the sequence increases), negative (the sequence decreases), or zero (every term is the same).
| AP | First term a | Common difference d | Behaviour |
|---|---|---|---|
| 3, 7, 11, 15, \dots | 3 | 4 | increasing |
| 20, 17, 14, 11, \dots | 20 | -3 | decreasing |
| 5, 5, 5, 5, \dots | 5 | 0 | constant |
A constant sequence is a special case of an AP — the most boring one, but still legitimate.
To check whether a given sequence is an AP, compute consecutive differences a_2 - a_1, a_3 - a_2, a_4 - a_3, and so on. If they are all equal, it is an AP and that common value is d. If even one difference disagrees, it is not an AP.
Take 2, 6, 18, 54, \dots The differences are 4, 12, 36 — not constant. This is not an AP. (It is a geometric progression — the ratio between consecutive terms is constant, but that is a different story.)
The n-th term formula — derivation
You know the first term a and the common difference d. What is the n-th term?
Build it step by step. Each term is the previous one plus d:
The pattern: the n-th term has (n - 1) copies of d added to the first term a. Why n - 1 and not n? Because the first term is the starting point — you add d zero times to get a_1, once to get a_2, twice to get a_3, and so on. By the time you reach a_n, you have added d exactly n - 1 times.
That is the formula. It is worth pausing to see why it must be right. The sequence is defined by a_1 = a and a_{n+1} = a_n + d. By mathematical induction, if a_n = a + (n-1)d, then a_{n+1} = a_n + d = a + (n-1)d + d = a + nd = a + ((n+1) - 1)d. The formula holds for a_1 = a + 0 \cdot d = a (base case), and the inductive step carries it forward. So it holds for all n.
The formula also reveals why AP terms lie on a straight line when plotted. Expand it:
This is a linear function of n, of the form a_n = dn + c where c = a - d. The slope is d (the common difference) and the y-intercept is a - d. A sequence is an AP if and only if its terms, when plotted against their index, fall on a straight line.
Drag the red point along the line below to pick any term of the AP with a = 3 and d = 4. The readout shows the index n and the value a_n = 4n - 1 — the formula in action.
Properties of an AP
Several useful properties follow directly from the n-th term formula.
Property 1: Any three consecutive terms satisfy a_{n+1} = \frac{a_n + a_{n+2}}{2}.
In other words, the middle term of any three consecutive terms is the average of the outer two. Check it: a_n = a + (n-1)d, a_{n+2} = a + (n+1)d. Their average is \frac{(a + (n-1)d) + (a + (n+1)d)}{2} = \frac{2a + 2nd}{2} = a + nd = a_{n+1}.
This property also works backwards: if three numbers p, q, r satisfy q = \frac{p + r}{2}, then p, q, r are in AP. The number q is called the arithmetic mean of p and r.
Property 2: The n-th term from the end.
If an AP has m terms total, the n-th term from the end is a_m - (n-1)d, where a_m is the last term. This is the same formula run backwards, with -d replacing d.
Property 3: Sum of terms equidistant from the ends.
In a finite AP with first term a and last term l, the sum of the first and last terms equals the sum of the second and second-to-last, equals the sum of the third and third-to-last, and so on:
Why? a_k + a_{m+1-k} = [a + (k-1)d] + [a + (m-k)d] = 2a + (m-1)d = a + l for every k. Each pair sums to the same value.
This property is the key to deriving the sum formula in the next article.
Property 4: Inserting arithmetic means.
If you have two numbers p and q and want to place k numbers between them so that the whole list is in AP, those inserted numbers are called k arithmetic means between p and q. The common difference of the resulting AP is d = \frac{q - p}{k + 1}, and the r-th inserted number is p + r \cdot \frac{q - p}{k + 1}.
For instance, to insert 3 arithmetic means between 2 and 18: d = \frac{18 - 2}{3 + 1} = 4, so the three means are 6, 10, 14, and the full AP is 2, 6, 10, 14, 18.
Worked examples
Example 1: Find the 20th term and the general term of the AP $7, 3, -1, -5, \dots$
Step 1. Identify a and d.
The first term is a = 7. The common difference is d = 3 - 7 = -4.
Why: the common difference is always a_2 - a_1. Here it is negative, so the sequence decreases.
Step 2. Write the general term.
Why: substitute a = 7 and d = -4 into the formula and simplify.
Step 3. Plug in n = 20.
Why: the general term gives random access — you do not need to list 19 previous terms.
Step 4. Verify with a known term.
a_3 = 11 - 4(3) = 11 - 12 = -1. The third term in the given sequence is -1. Correct.
Why: checking against a known term catches sign errors and off-by-one mistakes.
Result: The general term is a_n = 11 - 4n, and a_{20} = -69.
The graph shows the line going down and to the right — exactly what a negative common difference looks like. By n = 20, the line has descended far below zero to a_{20} = -69.
Example 2: The 5th and 11th terms of an AP are $19$ and $43$. Find $a$, $d$, and $a_{15}$.
Step 1. Set up two equations from the given information.
a_5 = a + 4d = 19 and a_{11} = a + 10d = 43.
Why: the n-th term formula a_n = a + (n-1)d applied at n = 5 and n = 11 gives two linear equations in two unknowns.
Step 2. Subtract the first equation from the second.
(a + 10d) - (a + 4d) = 43 - 19, giving 6d = 24, so d = 4.
Why: subtracting eliminates a, leaving a single equation in d.
Step 3. Substitute back to find a.
a + 4(4) = 19, so a = 19 - 16 = 3.
Why: with d known, either equation gives a directly.
Step 4. Compute a_{15}.
a_{15} = 3 + 14 \times 4 = 3 + 56 = 59.
Why: plug n = 15, a = 3, d = 4 into the formula.
Result: a = 3, d = 4, a_{15} = 59.
Two terms of an AP determine everything, because two points determine a line. Once you know any two terms and their positions, the first term, the common difference, and every other term follow.
Common confusions
-
"The common difference must be positive." No. The common difference can be any real number — positive (increasing AP), negative (decreasing AP), or zero (constant AP). The word "difference" does not imply "positive gap."
-
"The first term of an AP must be a_1 = 1." No. The first term a can be any real number. The word "first" refers to the position in the sequence, not to the value.
-
"If the terms alternate in sign, it is an AP." Not necessarily. The sequence 1, -2, 4, -8, \dots alternates in sign but the differences are -3, 6, -12 — not constant. It is a geometric progression, not an AP. For sign alternation in an AP, you need d negative enough to cross zero and keep going — like 10, 3, -4, -11, \dots with d = -7.
-
"a_n = a + nd." This is an off-by-one error. The correct formula is a_n = a + (n-1)d. The first term is a, not a + d. A useful check: plug in n = 1 and confirm you get a.
-
"I can find the general term from the first three terms alone." For an AP, yes — the first two terms already determine a and d, so three terms are more than enough. But a general sequence (one that might not be an AP) cannot always be pinned down from finitely many terms.
Going deeper
If you came here to understand what an AP is, derive the n-th term formula, and see the key properties, you have everything you need. The rest of this section is for readers who want the connection to linear functions and a few less obvious properties.
APs and linear functions
The n-th term of an AP is a_n = dn + (a - d). Compare this with the slope-intercept form of a linear function: f(x) = mx + c. The common difference d plays the role of slope m, and a - d plays the role of the y-intercept c.
This is not an analogy — it is an exact correspondence. An infinite sequence is an AP if and only if the function f(n) = a_n is a linear function of n. That is why the plotted terms of an AP always fall on a straight line.
The correspondence goes further. The problem "find d given two terms" is exactly the problem "find the slope of a line given two points." The problem "find a_n for a specific n" is exactly "evaluate a linear function at a point." Anything you know about linear equations transfers directly to APs.
If a_n is a linear polynomial in n, the sequence is an AP
Conversely, any sequence whose general term is a polynomial of degree 1 in n — that is, a_n = pn + q for constants p and q — is an AP with first term a_1 = p + q and common difference d = p. Check: a_{n+1} - a_n = [p(n+1) + q] - [pn + q] = p, which is constant.
This is the only polynomial degree that gives an AP. A quadratic general term like a_n = n^2 gives differences 3, 5, 7, 9, \dots that are not constant — the sequence of perfect squares is not an AP. (But the differences form an AP — a fact that leads to the theory of finite differences.)
Three numbers in AP
A useful shorthand for competition and exam problems: if three numbers are in AP, write them as a - d, \; a, \; a + d. Their sum is 3a (the d terms cancel), which often lets you find a immediately. Their product or any other symmetric expression simplifies because of the cancellation.
For four numbers in AP, write them as a - 3d, \; a - d, \; a + d, \; a + 3d (spacing by 2d). The sum is 4a.
This trick — centring the AP at its middle term — appears in almost every problem where you need to find three or four terms in AP with given conditions.
Where this leads next
- Sum of Arithmetic Progression — the formula for a_1 + a_2 + \dots + a_n and its derivation using the pairing property you saw above.
- Arithmetic Mean — the connection between the middle term of an AP and the average of the endpoints, generalised to n numbers.
- Geometric Progression — the sequence where consecutive terms have a constant ratio instead of a constant difference. The AP's multiplicative cousin.
- Sequences — Introduction — the general framework of sequences, general terms, and recursive definitions that this article builds on.
- Linear Equations in One Variable — the algebra of solving a + (n-1)d = k for n (finding which term has a given value) is a linear equation.