Logistic Equation in Epidemiology: Modeling Gonorrhea Transmission

Research updated on August 14, 2025
Author: Santhosh Ramaraj

Imagine you are tracking the spread of gonorrhea in a sexually active community. You want to know how the number of infected people changes over time, accounting for both new infections and recovery. The logistic equation, often introduced in population growth studies, naturally appears in this setting too.

Setting Up the Model

We divide the population into two groups:

  • Susceptible individuals: S(t), sexually active but not infected.
  • Infected individuals: I(t), sexually active and infectious.

The total number of sexually active individuals is:

N(t) = S(t) + I(t)

The key assumptions are:

  • New sexually active individuals enter at a rate \mu N(t), all initially susceptible.
  • Individuals leave the sexually active group at the same rate \mu N(t).
  • Infected individuals recover and return to the susceptible group at a rate \gamma I(t).
  • New infections occur at an incidence rate B(S, I).

Deriving the Incidence Rate

We require that if there are no susceptibles or no infectives, new infections stop:

B(S, 0) = B(0, I) = 0

The incidence rate should be proportional to both susceptibles and infectives:

B(S, I) \propto S I

Define:

  • c = average number of sexual partners per individual per unit time
  • \phi = average number of contacts per partner

The total contacts by susceptibles per unit time are:

\phi c S(t)

Under random mixing, the fraction of these contacts with infectives is:

\frac{I(t)}{N(t)}

So, the contacts between susceptibles and infectives per unit time are:

\phi c S(t) \cdot \frac{I(t)}{N(t)}

If q is the probability of transmission per contact, then the transmission rate is:

\beta = q \phi c

Thus the incidence rate is:

B(S, I) = \beta \frac{S(t) I(t)}{N(t)}

The Full Model

We now have:

\frac{dS}{dt} = \mu N(t) - \beta \frac{S(t) I(t)}{N(t)} - \mu S(t) + \gamma I(t)

\frac{dI}{dt} = \beta \frac{S(t) I(t)}{N(t)} - (\mu + \gamma) I(t)

Since births and deaths balance, \frac{dN}{dt} = 0, and N is constant.

Reducing to a Single Equation

Substitute S(t) = N - I(t) into the infected equation:

\frac{dI}{dt} = \beta \frac{(N - I) I}{N} - (\mu + \gamma) I

Which simplifies to:

\frac{dI}{dt} = \beta I \left( 1 - \frac{I}{N} \right) - (\mu + \gamma) I

Factor I:

\frac{dI}{dt} = \left[ \beta - (\mu + \gamma) \right] I \left( 1 - \frac{I}{N} \right)

Introducing the Basic Reproduction Number

We define:

R_0 = \frac{\beta}{\mu + \gamma}

If R_0 > 1, the infection spreads and persists. If R_0 \leq 1, it dies out.

Rewriting the equation:

\frac{dI}{dt} = \beta \left( 1 - \frac{1}{R_0} \right) I \left( 1 - \frac{I}{N} \right)

Logistic Form

Let:

r = \beta \left( 1 - \frac{1}{R_0} \right),
K = N \left( 1 - \frac{1}{R_0} \right)

The equation becomes:

\frac{dI}{dt} = r I \left( 1 - \frac{I}{K} \right)

This is the classic logistic equation.

Interpretation

  • If R_0 > 1: r > 0, K > 0, and I(t) \to K. The disease reaches an endemic level.
  • If R_0 \leq 1: The only meaningful equilibrium is I_{\infty} = 0, the disease disappears.

Example

Suppose:

  • N = 1000
  • \mu = 0.02 per year
  • \gamma = 0.5 per year
  • c = 5 partners per year
  • \phi = 10 contacts per partner
  • q = 0.05 transmission probability

First, compute:

\beta = q \phi c = 0.05 \times 10 \times 5 = 2.5

Then:

R_0 = \frac{2.5}{0.02 + 0.5} \approx 4.81

Since R_0 > 1, the infection persists, and:

K = 1000 \left( 1 - \frac{1}{4.81} \right) \approx 792

About 792 individuals will be infected long-term if no intervention occurs.

Why the Logistic Equation Fits

In epidemiology, the logistic form appears when:

  • The total population is constant.
  • Infection rates depend on interactions between susceptible and infected individuals.
  • Recovery or death removes people from the infected group.
  • There is a natural limit to infection spread due to finite susceptibles.

Key Takeaways

  • The logistic equation is useful beyond population growth, especially in modeling endemic infections.
  • The parameter R_0 is critical for predicting persistence.
  • Endemic levels can be predicted and used for public health planning.
  • Accurate parameter estimation from data is essential.

Disclaimer: This article is for educational purposes only.