Remember that in notes on Arrhenius Theory I briefly alluded to the fact that the percent dissociation for dilute acids was empirically found to depend on the initial concentration. Once we have the tools of equilibrium, we can actually see why that’s the case:

Consider an acid HA with some acidity constant Ka. Let’s take an initial solution with concentration . The acid will dissociate:

And let’s say the percent of an acid that will dissociate is . Meaning . By stoichiometry, this has to mean . Also, if you initially had of an acid, dissociated, then you have left, which is the concentration . Let’s use the definition of :

From now on, we can take two different paths. We can either follow the historical path of reasoning or use the benefit of computer software and create some figures. Scroll down to the Ostwald Law of Dilution for the historical account, and I’m going to start with the modern day treatment first.

No Approximations

Let’s solve for in (2):

Solving the quadratic equation:

has to be positive, so the only meaningful physical root is .

First of all, it’d be nice to check our solution. We can easily do that using Python

from sympy import symbols, Eq, solve
 
alpha, Ka, c0 = symbols("alpha Ka c0")
equation = Eq(Ka, alpha**2 * c0**2 / ((1 - alpha) * c0))
solutions = solve(equation, alpha)

This gives us:

[(-Ka - sqrt(Ka*(Ka + 4*c0)))/(2*c0), (-Ka + sqrt(Ka*(Ka + 4*c0)))/(2*c0)]

Which is exactly what we found!

Ostwald Law of Dilution

We can manipulate (2) into:

For a dilute acid, it turns out that is pretty small. Thus . As a result:

or:

which is exactly the empirical relationship observed by Ostwald in 1890s.

If you wonder when is true, check out this page which dynamically plots as a function of for different pKa values.

An amusing conjecture

You may wonder why do we bother talking about , it seems like a just another number, so what makes it worthy of so much attention? Remember that the initial formulation of Arrhenius theory didn’t employ the concepts of equilibrium. The most you could do is empirically calculate the fraction of acid that was dissociated and observe that it inversely depended on concentration: . I think you agree that such relationship is quite troublesome: it says that the percent of an acid that dissociates is inversely related to the acid concentration. Dilute acids dissociate to a greater extent. It’s very counterintuitive that the fraction of acid that dissociates depends on the concentration in the first place, much more counterintuitive that the relationship is inverse.

Now can you imagine the relief when you learn that this is nothing but a mathematical artifact of the form of equilibrium constant (which stems from the equality in the reaction rates)? That there’s something constant after all? That this empiric dependence can actually be predicted with theory?

My conjecture is that all problems like Q1:

are structured in the way: 1) use Ka to calculate pH 2) find as a demonstration of the superiority of the theory of equilibrium (or its validation) because it a) gives you new information b) perfectly agrees with what people already knew (which is that people used to measure experimentally).

Which is actually a good indication of how science progresses. First you have a collection of experimental data points, from you which you can infer some correlations (such as ), then someone makes a bold conjecture (such as the existence and establishment of equilibrium), develops a mathematical model which is first validated by explaining the currently known data and once you have that confidence in the model, you can start using its predictive power and calculate things you couldn’t find before.