Arithmetic Progression (AP)
A bus leaves Pune at 6 a.m. and arrives at every subsequent stop every 15 minutes. The arrival times 6:00,6:15,6:30,6:45,… form an arithmetic progression: each term differs from the previous by a fixed amount, 15 minutes. This constant-difference pattern is the simplest and most ubiquitous kind of sequence.
Definitions
A sequence a1,a2,a3,… is an arithmetic progression (AP) if the difference an+1−an is the same constant for every n. That constant is the common difference, denoted d.
If the first term is a, the AP looks like
a, a+d, a+2d, a+3d, …
The n-th term
an=a+(n−1)d.
This is a linear function of n , APs are exactly the sequences whose general term is linear in n.
Sum of the first n terms
Write the sum forward and backward:
Sn=a+(a+d)+(a+2d)+⋯+(a+(n−1)d),
Sn=(a+(n−1)d)+(a+(n−2)d)+⋯+a.
Add term by term: each of the n pairs sums to 2a+(n−1)d, so 2Sn=n[2a+(n−1)d] and
Sn=2n[2a+(n−1)d].
If ℓ=a+(n−1)d is the last term, the formula also reads Sn=2n(a+ℓ) , sum equals number of terms times the average of first and last.
Properties
Symmetry. Equidistant terms from the start and end sum to the same: ak+an−k+1=a+ℓ (for an AP of n terms).
Reverse is also AP. If a,a+d,…,ℓ is an AP, so is ℓ,ℓ−d,…,a , the common difference flips sign.
Mean property. In an AP, every term (except the first and last) is the arithmetic mean of its neighbours: an=2an−1+an+1.
Three terms in AP. It is sometimes convenient to write three consecutive terms as a−d,a,a+d, four as a−3d,a−d,a+d,a+3d , this makes sums simple and exploits symmetry.
Worked examples
Example 1. Find the 30-th term of 5,9,13,17,…
Here a=5,d=4. So a30=5+29⋅4=121.
Example 2. Find the sum of the first 50 positive odd integers.
Odd integers: 1,3,5,… with a=1,d=2. So a50=1+49⋅2=99 and S50=250(1+99)=25⋅100=2500. (Equivalently, 502.)
Example 3. Find three numbers in AP whose sum is 24 and product is 440.
Let the numbers be a−d,a,a+d. Sum =3a=24⇒a=8. Product =a(a2−d2)=8(64−d2)=440⇒64−d2=55⇒d2=9⇒d=±3. Numbers: 5,8,11.
Example 4. In an AP, a5=30 and a12=65. Find a and d.
a+4d=30, a+11d=65. Subtracting: 7d=35⇒d=5, a=10.
Example 5. Find the sum of all multiples of 7 between 1 and 1000.
First: 7, last: 994. Number of terms: 7994−7+1=142. Sum =2142(7+994)=71⋅1001=71,071.
Try it yourself
- Find the 20-th term of 7,13,19,25,…
- The 10-th term of an AP is 32, the 20-th term is 72. Find the AP.
- Find the sum 4+9+14+⋯+254.
- How many terms of 3,7,11,… sum to 210?
- The sum of the first n terms of an AP is 3n2+5n. Find the AP.
- Find five numbers in AP whose sum is 25 and whose product is 945.
- The p-th term of an AP is q and the q-th term is p. Find the (p+q)-th term.
- If Sp=q and Sq=p (with p=q), find Sp+q.
- Find the sum of all two-digit multiples of 4.
- Find ∑k=130(5k−3).
- Three numbers are in AP. If 7 is subtracted from the smallest, the numbers become a GP. Their sum is 36. Find them.
- Find the sum of n terms of the AP a,a+d,a+2d,… when a=−10,d=4,n=20.
Pitfalls / Tricks
- Number of terms is n=dℓ−a+1. Don't forget the +1.
- For three terms in AP, use a−d,a,a+d. For four, use a−3d,a−d,a+d,a+3d.
- The sum formula Sn=2n(a+ℓ) is the quickest , use it when both endpoints are known.
- Insight. Every AP is a linear function of the index. Knowing this, you can answer most questions just by setting up a linear equation.