Maxwell-Boltzmann Distribution
Copyright (c) RDMCHEM LLC 2020
Overview
Molecular Speeds
In the 1800s James Clerk Maxwell and Ludwig Boltzmann independently investigated the distribution of velocities of atoms or molecules in an ideal gas at a given temperature. The distribution of molecular speeds became known as the Maxwell-Boltzmann distribution. In this lessons we will explore this distribution as a function of temperature and mass of the gaseous particles.
The Maxwell-Boltzmann distribution is
fv = 4⋅π⋅M2⋅π⋅R⋅T32⋅v2⋅exp−M⋅v22⋅R⋅T
where v is the speed of the gas particles, M is the molar mass, T is the temperature, and R is the gas constant. From the distribution we can approximate the probability P(v) of finding a gas particle with a speed v between v-dv/2 and v+dv/2 as
Pv ≈ fvdv
where dv is a small (differential) interval about the velocity v.
If the distribution is correctly defined, the total probability of finding the particle at some speed must be unity, that is
∫0∞fvdv=1 .
Before we begin, we define the ideal gas constant in SI units
RSI ≔ evalfScientificConstantsConstant'R';
RSI≔8.3144598
We can define the Maxwell-Boltzmann distribution with Maple
fv,M,T,R ≔ 4⋅Pi⋅M2⋅Pi⋅R⋅T32v2exp−M⋅v22⋅R⋅T;
f≔v,M,T,R↦π⋅2⋅Mπ⋅R⋅T32⋅v2⋅ⅇ−M⋅v22⋅R⋅T
Let us check that the total probability of the particle having some speed is unity for a gas with a molar mass of 0.1 kg/mol at a temperature of 273 K
P_total ≔ intfv,0.1,273,RSI, v=0..infinity;
P_total≔0.9999999999
(a) Does the total probability equal the expected value of unity?
We can explore the Maxwell-Boltzmann distribution as a function of the temperature and molar mass of the gas.
Exploreplotfv,M,T,RSI, v=0..2000, axes=boxed,labels='vms','fv', color=blue, thickness=2, T=100..1000,M=0.01..1;
T
M
Using the slide rules to change temperature T in K and molar mass M in kg/mol (SI units), answer the following questions:
(b) Approximately from the graph, what is the most probably velocity for water H2O at 275 K?
(c) Approximately from the graph, what is the most probably velocity for methane CH4 at 550 K?
Most Probable Speed
The most probable speed for a gas molecule occurs at the peak (maximum) of the Maxwell-Boltzmann distribution.
We can compute an analytical expression for the most probable speed by solving for the speed at which the derivative of the distribution vanishes
eq ≔ difffv,M,T,R, v = 0;v_mp ≔ solveeq,v;
eq≔2⁢π⁢2⁢Mπ⁢R⁢T32⁢v⁢ⅇ−M⁢v22⁢R⁢T−π⁢2⁢Mπ⁢R⁢T32⁢v3⁢M⁢ⅇ−M⁢v22⁢R⁢TR⁢T=0
v_mp≔0,2⁢M⁢R⁢TM,−2⁢M⁢R⁢TM
(d) Which of the three answers for the most probable speed is physically realistic? Explain briefly.
(e) Show the simplification of this result to match the textbook result.
Average Speed
The average speed for a gas molecule can be derived by integrating the Maxwell-Boltzmann distribution with the speed for all possible speeds
v_ave ≔ intfv,M,T,R⋅v, v=0..infinity;
v_ave≔limv→∞⁡−T⁢R⁢2⁢MR⁢T32⁢M⁢ⅇ−M⁢v22⁢R⁢T⁢v2+2⁢ⅇ−M⁢v22⁢R⁢T⁢T⁢R−2⁢R⁢Tπ⁢M2
Taking this limit by substitution and simplification, we have
v_ave ≔ simplifysubsⅇ−M⁢v22⁢R⁢T=0, v_ave;
v_ave≔2⁢T⁢R⁢2⁢MR⁢TM⁢π
(f) Show the simplification of this result to match the textbook result.
(g) Take the ratio of the formulas for vmp and vave. Which speed is always greater? Explain briefly.
Download Help Document