The page defined the common difference, derived the explicit and recursive formulas, the two equivalent series-sum formulas, the arithmetic-mean property, and the procedure for inserting means between two values. The table below collects each formula with a representative example for quick reference.
| Concept |
Formula / property |
Example |
| Common difference |
d = an+1 − an (constant for every n) |
5, 12, 19, 26 → d = 7 |
| Explicit (n-th term) |
an = a₁ + (n − 1) · d |
a₁ = 4, d = 6 → an = 4 + 6(n − 1) |
| Recursive |
a₁ = c; an = an−1 + d |
a₁ = 4, an = an−1 + 6 |
| Series sum (with an) |
Sn = n⁄2 · (a₁ + an) |
1 + 2 + … + 100 = 100⁄2 · 101 = 5050 |
| Series sum (with d) |
Sn = n⁄2 · (2a₁ + (n − 1) · d) |
used when an is not known directly |
| Arithmetic-mean property |
an = (an−1 + an+1) ⁄ 2 for interior terms |
every interior term is the mean of its two neighbors |
| Inserting k means between a, b |
d = (b − a) ⁄ (k + 1); inserts a + d, a + 2d, …, a + kd |
3 means between 5, 25 → d = 5; 5, 10, 15, 20, 25 |
| Linear-function structure |
an = d · n + (a₁ − d) — slope d, intercept (a₁ − d); plotted vs n the terms lie on a straight line |
d > 0 increasing, d < 0 decreasing, d = 0 constant |