GintiCalcEvery calculation

SeqLab

Geometric Sequence Calculator

aₙ = a₁ · rⁿ⁻¹.

Geometric sequences: nth term and sum

Each term multiplies the previous one by a constant ratio. Ratios below 1 shrink the sequence and its sum converges.

First term a1Ratio rTerms nnth termSum of n terms
236486.0000728.0000
1210512.00001023.0000
32126144.000012285.0000
51.5756.9531160.8594
1000.580.7813199.2188

Row two is the doubling sequence, and its sum of 1,023 is always one less than the next term - which is why a byte holding 8 doubling bits maxes out at 255 rather than 256. The last row halves each time, and its sum is closing on 200: a geometric series with a ratio below 1 converges to a finite total no matter how many terms you add, which is the resolution of Zeno's paradox. Above a ratio of 1 the growth is exponential, which is why compound interest, population growth and viral spread are all geometric.

A constant multiplier, not a constant step

Where arithmetic sequences add the same amount each time, geometric sequences multiply by the same ratio r — 2, 6, 18, 54… multiplies by 3 every step, which is why growth accelerates so much faster.

Where it shows up

Compound interest, population growth, and viral spread are all geometric processes — this is the same mathematical structure behind 'doubling every period' scenarios.

Frequently asked questions

A bacteria colony doubles every hour starting with 500. How many after 10 hours?

Geometric sequence with a₁ = 500 and r = 2. After 10 hours: a₁₁ = 500 × 2¹⁰ = 500 × 1,024 = 512,000 bacteria. (Note: hour 0 is term 1, so hour 10 is term 11.)

How is a geometric sequence related to compound interest?

Compound interest is a geometric sequence where the common ratio r = (1 + rate). A $1,000 investment at 5% annual interest gives the sequence 1000, 1050, 1102.50, 1157.63… — each term is the previous multiplied by 1.05. The compound interest calculator handles this directly.

What happens when the common ratio is between 0 and 1?

The sequence shrinks toward zero. A bouncing ball that reaches 80% of its previous height follows r = 0.8: heights of 10, 8, 6.4, 5.12 meters. The infinite sum converges to a₁/(1 − r) = 10/0.2 = 50 meters total distance.

Related Math calculators

You might also like

Last updated: September 6, 2026