AnyLearn
All lessons
Sciencebeginner

How bacteria grow, and why counting them is hard

Bacterial growth is exponential, which makes the arithmetic simple and the intuition terrible. This lesson covers doubling time, the four phases of a culture, and the gap between the cells you can see down a microscope and the ones that will actually grow on a plate.

Updated · AI-authored, review-gated · how lessons are made

Not signed in: your progress and quiz score won't be saved.
Progress1 / 10

Growth means more cells, not bigger ones

When a microbiologist says a culture is growing, they mean the population is doubling, not that individual cells are getting larger. Each cell splits into two, both daughters split again, and the count follows one equation:

N(t)=N02t/gN(t) = N_0 \cdot 2^{t/g}

Here N0N_0 is the starting count, tt is elapsed time and gg is the generation time, the interval a population needs to double. For Escherichia coli in rich medium at 37 degrees Celsius, gg is about 20 minutes. In a nutrient-poor environment the same species may take days.

Generation time is a property of the conditions as much as of the organism. Change the temperature, the carbon source or the oxygen, and gg moves.

Full lesson text

All 10 steps on one page, for reading, reference, and search.

Show

1. Growth means more cells, not bigger ones

When a microbiologist says a culture is growing, they mean the population is doubling, not that individual cells are getting larger. Each cell splits into two, both daughters split again, and the count follows one equation:

N(t)=N02t/gN(t) = N_0 \cdot 2^{t/g}

Here N0N_0 is the starting count, tt is elapsed time and gg is the generation time, the interval a population needs to double. For Escherichia coli in rich medium at 37 degrees Celsius, gg is about 20 minutes. In a nutrient-poor environment the same species may take days.

Generation time is a property of the conditions as much as of the organism. Change the temperature, the carbon source or the oxygen, and gg moves.

2. Three hours of doubling

Start with a single cell and let it double every twenty minutes. Nothing dramatic seems to happen for the first hour.

One cell, doubling every 20 minutes
cells0200400600020406080100120140160180
Source: Computed from N = 2^(t/20 min), the standard E. coli lab generation time

After one hour there are 8 cells. After two, 64. After three, 512. The curve looks flat and then looks vertical, but the rule never changed: it multiplied by two, ten times over. This is why lab cultures are plotted on a logarithmic axis, where exponential growth becomes a straight line and a change in slope becomes visible.

3. Why the exponential has to stop

Extend that curve and it stops making physical sense very quickly.

Predict first

One E. coli cell divides every 20 minutes with unlimited nutrients and no waste. After 48 hours, roughly what would its descendants weigh?

The point is not the absurd number. It is that unrestricted exponential growth is never what you are observing. Any real culture is already being limited by something, and identifying that limit is most of what growth experiments are for.

4. The four phases of a closed culture

Inoculate a sealed flask of broth and the population traces the same four-part shape every time. Nothing is added and nothing is removed, which is what makes the pattern reproducible.

PhaseWhat the count doesWhat the cells are doing
Lagflatsensing the medium, building enzymes and ribosomes, no division yet
Exponential (log)doubles at a constant intervaldividing at the maximum rate the conditions allow
Stationaryflat againdivision and death balance as nutrients run down and waste builds
Deathfallslosses exceed replacement, often exponentially

Lag is not idleness. A cell moved from one sugar to another has to build a different set of enzymes before it can divide, and the length of the lag measures that retooling.

5. The culture as a lifecycle

Each transition is triggered by a change in the cells' surroundings rather than by a clock, which is why altering the medium moves the boundaries.

stateDiagram-v2
  [*] --> Lag
  Lag --> Exponential: enzymes and ribosomes ready
  Exponential --> Stationary: nutrients drop and waste rises
  Stationary --> Death: maintenance energy runs out
  Death --> [*]

6. Two ways to count, measuring two different things

You cannot count a billion cells individually, so every method is a proxy, and the proxies disagree on purpose.

MethodWhat it measuresSpeedBlind spot
Optical density (OD600)how much light the broth scatterssecondscounts dead cells and debris as if alive
Direct microscopic countcells visible in a known volumeminutescannot tell living from dead
Viable plate count (CFU)cells that grow into colonies1 to 2 daysmisses anything that will not grow on that medium

Key idea: Optical density answers "how much bacterial material is here". A plate count answers "how much of it can reproduce". After a disinfectant or an antibiotic these two numbers separate sharply, and which one you quote decides what you conclude.

7. Working a plate count backwards

A viable count works by dilution. You dilute the sample until a plate carries a countable number of colonies, conventionally 30 to 300, then scale back up. Below 30 the count is dominated by chance; above 300 colonies merge and hide each other.

def cfu_per_ml(colonies, volume_plated_ml, dilution_factor):
    """Scale one countable plate back to cells per mL of the original sample."""
    return colonies / (volume_plated_ml * dilution_factor)

# 137 colonies from 0.1 mL of a one-in-a-million dilution
cfu_per_ml(137, 0.1, 1e-6)
# 1.37e+09 CFU per mL

So 137 countable colonies report 1.37 billion viable cells per millilitre in the original tube. Every plated cell is assumed to have produced exactly one colony, which is where the method starts to lie.

8. The unit is called a colony forming unit for a reason

The name is a confession. A plate count does not measure cells, it measures things that grew into a visible colony.

Gotcha: Many bacteria grow in pairs, chains, or clumps. A clump of forty staphylococci that lands on the agar together produces one colony and is recorded as one CFU. The same sample viewed under a microscope shows forty cells. Neither number is wrong; they are answers to different questions.

This is why Staphylococcus samples are vortexed before plating and why counts are reported as CFU rather than as cells. It also means a plate count is systematically an underestimate of cell number whenever the organism aggregates, which is most of the time outside a well-shaken flask.

9. Alive, but refusing to grow

There is a deeper problem than clumping. Cells can be intact, metabolising and capable of causing infection, yet produce no colony on any plate you offer them. Microbiologists call this state viable but nonculturable, or VBNC.

Bacteria enter it under stress: starvation, cold, low oxygen, disinfectant residue. Membranes stay intact and genes stay transcribed, but division stops. On a plate count the sample reads clean. Under a microscope with a viability dye, it is populated.

In practice: This is why food and water safety standards specify the exact medium, temperature and incubation time, and why a negative plate count is evidence of absence only for organisms that grow under those precise conditions.

10. What the count is for

Counting is not bookkeeping. Nearly every practical question in microbiology is a comparison of two counts.

Does this disinfectant work? Compare viable counts before and after. Is this water safe? Count indicator organisms per 100 mL against a legal threshold. Does this antibiotic stop this isolate? That is the next lesson, and it is a growth measurement wearing different clothes: the lowest drug concentration at which the population fails to increase.

The recurring trap is treating one proxy as the truth. Optical density that will not fall does not mean the drug failed, and a clean plate does not mean the sample is sterile. Know which question your number answers.

Check your understanding

The lesson ends with a 5-question quiz. Take it in the player above to see your score.

  1. A culture starts with 500 cells and has a generation time of 30 minutes. How many cells after 2 hours?
    • 2,000
    • 4,000
    • 8,000
    • 16,000
  2. A culture in lag phase shows no increase in cell number. What is happening?
    • The cells are dying as fast as they divide
    • The cells are synthesising the enzymes and ribosomes the new medium requires
    • The medium has already run out of its limiting nutrient
    • The cells are growing larger but not yet dividing at all
  3. You plate 0.1 mL of a 10^-5 dilution and count 84 colonies. What is the viable count of the original sample?
    • 8.4 x 10^5 CFU/mL
    • 8.4 x 10^6 CFU/mL
    • 8.4 x 10^7 CFU/mL
    • 8.4 x 10^8 CFU/mL
  4. A sample of clumping staphylococci gives a microscopic count ten times higher than its plate count. What best explains the gap?
    • The plate medium is toxic to nine out of ten cells
    • Clumps of cells each grow into a single colony, counted as one CFU
    • The microscope counts the same cells repeatedly
    • Nine out of ten cells in any sample are always dead
  5. Water leaving a treatment plant shows zero colonies on a standard plate count, yet cells are visible with a viability dye. What is the most likely explanation?
    • The dye produces false positives on mineral particles
    • The cells are dead, and viability dyes cannot distinguish that
    • The cells are viable but nonculturable after disinfection stress
    • The plate was incubated too long and the colonies died back

Related lessons

Science
beginner

The bacterial cell: what makes it different

A bacterium and one of your cells are both alive and share almost no structure beyond that. This lesson walks the bacterial cell part by part, the wall, the loop of DNA, the smaller ribosome, and shows why each difference is exactly what an antibiotic aims at.

10 steps·~15 min
Science
intermediate

The unculturable majority: reading microbes we cannot grow

Most microbes on Earth have never been grown in a laboratory, so for a century microbiology studied the small fraction that cooperated. This lesson covers the great plate count anomaly, how 16S sequencing and metagenomics read organisms directly, and what those methods still cannot tell you.

11 steps·~17 min
Science
intermediate

Antibiotics: selective toxicity and how resistance defeats it

An antibiotic has to break something a bacterium has and you do not. This lesson covers the four target families, how MIC is measured, the four ways bacteria defeat a drug, and how a resistance gene moves between cells that are not even related.

11 steps·~17 min
Science
intermediate

Choosing a Material Without Guessing

There are tens of thousands of engineering materials and no way to compare them by intuition. This lesson builds the material index, the single combined number that ranks candidates for a stated job, shows why steel, aluminium and titanium have almost identical stiffness per kilogram, and covers the environment and processing constraints that overrule the ranking.

10 steps·~15 min