Mixtures, Solutions, and Activities
Mixtures are where chemical potential becomes unavoidable. The properties of a solution are not just weighted averages of pure-component properties; each component contributes a partial molar amount that depends on composition and intermolecular interactions.
Atkins develops simple mixtures from ideal gas mixing through ideal and nonideal liquid solutions, then extends the discussion to activities, colligative properties, and electrolyte solutions. The central idea is that equilibrium is governed by chemical potential, while composition enters through activity rather than bare concentration whenever nonideality matters.
Figure: Osmotic pressure as a macroscopic consequence of chemical-potential differences in solution. Image: Wikimedia Commons, LadyofHats, public domain.
Definitions
The partial molar quantity of component for an extensive property is
For volume,
For Gibbs energy,
The ideal solution expression for a solvent or component is
Raoult's law for an ideal solution is
Henry's law for a dilute solute is
where is Henry's law constant for the solute in that solvent.
The activity is defined so the chemical potential keeps the perfect-looking form
For a real solution,
when the mole-fraction convention is used. The activity coefficient measures deviation from ideality.
Colligative properties depend mainly on the number of solute particles, not their chemical identity, in the dilute ideal limit:
where is molality, is molar concentration, and is osmotic pressure.
Key results
The Gibbs energy of mixing for two perfect gases or an ideal solution is
Because , each , so ideal mixing is spontaneous:
The entropy of ideal mixing is
and the enthalpy of ideal mixing is
so the ideal driving force is entropic.
The Gibbs-Duhem equation applies to activities and activity coefficients. For a binary solution at constant and ,
For regular solutions, deviations from Raoult's law are often expressed through activity coefficients. A simple symmetric model has
where reflects unlike-versus-like interaction differences.
For electrolytes, individual ion activities cannot be measured independently in ordinary thermodynamics. Mean ionic activity and mean activity coefficient are used. For a salt ,
Debye-Huckel theory captures the limiting effect of ionic atmospheres:
in the limiting law, where ionic strength is
Partial molar quantities are necessary because molecules in a mixture experience surroundings different from those in pure substances. If ethanol is added to water, the total volume is not the sum of pure molar volumes multiplied by mole numbers. Hydrogen bonding, packing, and disruption of water structure change the incremental volume. The partial molar volume is therefore the slope of total volume with respect to added amount at fixed , , and other mole numbers. The same idea applies to enthalpy, entropy, and Gibbs energy.
The chemical potential of a component in a mixture is the partial molar Gibbs energy. It governs phase equilibrium, osmosis, vapor pressure, and reaction equilibrium. A solvent in a solution has lower chemical potential than the pure solvent in an ideal solution because
and . This lowering is entropic in origin for ideal solutions. It explains vapor-pressure lowering, boiling-point elevation, freezing-point depression, and osmotic pressure without needing a special molecular attraction between solute and solvent.
Raoult's law and Henry's law are complementary limiting laws. Raoult's law is approached by a component that is nearly pure, because its molecular environment resembles the pure liquid. Henry's law is approached by a dilute solute, because each solute molecule is mostly surrounded by solvent and has a different standard proportionality. A binary solution can show Raoult behavior for the solvent and Henry behavior for the solute in the same dilute composition range.
Nonideal solutions require activities because composition alone does not fully describe escaping tendency. Positive deviations from Raoult's law occur when unlike interactions are less favorable than like interactions; molecules escape more readily to the vapor. Negative deviations occur when unlike interactions are more favorable; vapor pressures are suppressed. Strong deviations can produce azeotropes and liquid-liquid phase separation, linking solution thermodynamics to phase diagrams.
The Gibbs energy of mixing provides a stability criterion. For an ideal binary solution,
is negative for all intermediate compositions. For a nonideal solution, an excess Gibbs energy term may make the curve concave in some region. If the curvature becomes negative enough, a homogeneous mixture is unstable with respect to separation into two phases of different compositions. Common-tangent constructions in phase diagrams come from minimizing total Gibbs energy.
Colligative properties share a common source: solute lowers the chemical potential of the solvent. Freezing point is depressed because the solution solvent must be cooled further before its chemical potential matches that of the pure solid solvent. Boiling point is elevated because a higher temperature is needed for the solution solvent chemical potential to match the vapor at external pressure. Osmotic pressure is the mechanical pressure needed to raise the solution solvent chemical potential back to that of the pure solvent across a semipermeable membrane.
Electrolytes complicate the story because each formula unit produces multiple ions and because Coulomb interactions are long ranged. Ionic strength weights concentrations by charge squared, so a small amount of a multivalent ion can affect activity coefficients strongly. The Debye-Huckel limiting law predicts that mean activity coefficients decrease from 1 as ionic strength increases from zero. At higher concentrations, ion size, specific association, solvent structure, and short-range interactions require extended models or experimental activity data.
A practical calculation must also respect standard-state conventions. Activities based on mole fraction, molality, and concentration use different standard states. The numerical value of an activity coefficient has meaning only with its convention. This is why equilibrium constants and electrochemical potentials must state their standard states carefully.
Visual
| Law or concept | Mathematical form | Applies to | Physical meaning |
|---|---|---|---|
| Raoult's law | solvent, ideal or near pure | vapor pressure reduced by dilution | |
| Henry's law | dilute solute | solubility controlled by solute-solvent interactions | |
| Activity | real solutions | effective composition in chemical potential | |
| Ideal mixing | ideal gases/solutions | entropy-driven spontaneous mixing | |
| Osmotic pressure | dilute solutions | pressure needed to stop solvent flow | |
| Debye-Huckel limiting law | very dilute electrolytes | ion atmospheres lower effective chemical potential |
Worked example 1: Gibbs energy and entropy of ideal mixing
Problem. Mix of and of at and the same initial pressure. Calculate and .
Method. Use ideal mixing formulas with total amount .
- Mole fractions:
- Composition sum:
- Gibbs energy:
- Entropy:
Checked answer. and . The signs match spontaneous ideal mixing.
Worked example 2: Osmotic pressure of a dilute solution
Problem. A protein solution has concentration at . Estimate the osmotic pressure in pascals and mmHg assuming ideal dilute behavior.
Method. Use with SI units.
- Convert concentration:
- Substitute:
- Convert to mmHg using :
Checked answer. The osmotic pressure is small but measurable. The units work because .
Code
import numpy as np
R = 8.314462618
T = 298.15
def ideal_mixing(n_moles):
n_moles = np.array(n_moles, dtype=float)
total = n_moles.sum()
x = n_moles / total
s = np.sum(x * np.log(x))
delta_g = total * R * T * s
delta_s = -total * R * s
return x, delta_g, delta_s
x, dg, ds = ideal_mixing([1.0, 3.0])
print("mole fractions:", x)
print("Delta_mix G (kJ):", dg / 1000)
print("Delta_mix S (J/K):", ds)
def osmotic_pressure(c_mol_L, T=298.15):
c_mol_m3 = c_mol_L * 1000.0
return c_mol_m3 * R * T
print("Pi Pa:", osmotic_pressure(2.5e-4))
Common pitfalls
- Treating mole fraction, molarity, and molality as interchangeable. Their differences matter outside very dilute aqueous solutions.
- Applying Raoult's law to a dilute solute when Henry's law is appropriate.
- Forgetting that ideal mixing has but not .
- Using individual ion activity coefficients as if they were directly measurable thermodynamic quantities.
- Ignoring activity in equilibrium calculations for concentrated solutions or electrolytes.
Before applying an ideal-solution formula, identify which component is in its limiting region. A solvent near may obey Raoult's law even while the solute obeys Henry's law. The same species can use different standard states depending on whether it is treated as solvent, solute, gas, or electrolyte. Writing the chemical potential expression first is often safer than memorizing which law to apply.
For colligative properties, check whether the solute dissociates, associates, or reacts. The simple formulas count solute particles in the dilute ideal limit. Electrolytes require van't Hoff factors as a first correction, but ion pairing and activity effects can make the effective particle count concentration-dependent. Polymers and proteins can show nonideal osmotic behavior that is deliberately used to infer molar mass and interactions.
Partial molar quantities are slopes, not simple fractions. If a graph of total volume versus amount is curved, the partial molar volume changes with composition. The tangent slope gives the partial molar value at that composition, while the total mixture property comes from summing . This distinction is essential in solution thermodynamics and in interpreting experimental data.