Chemical Kinetics
Chemical kinetics studies how fast reactions occur and what molecular events control that rate. Thermodynamics can say whether products are favored, but kinetics explains whether the reaction reaches them in a second, a year, or effectively never under the given conditions.
In the Ebbing and Gammon sequence this topic sits near reaction rates, experimental rate laws, integrated rate laws, temperature effects, collision theory, transition-state theory, Arrhenius equation, mechanisms, elementary reactions, rate-determining steps, and catalysis. That placement matters because general chemistry is cumulative: a later calculation usually reuses earlier ideas about measurement, atomic structure, bonding, molecular motion, or equilibrium. The aim of this page is to turn the chapter-level ideas into a working reference that can be used for problem solving without copying the textbook's wording or examples.
Definitions
The following definitions give the vocabulary and notation used in this page. Treat them as operational definitions: each one says what can be counted, measured, compared, or conserved in a chemical argument.
- Reaction rate is change in concentration per unit time, adjusted for stoichiometric coefficients.
- Rate law expresses rate as a function of reactant concentrations determined experimentally.
- Reaction order is the exponent of a concentration term in the rate law.
- Rate constant is the proportionality factor in a rate law.
- Integrated rate law relates concentration to time.
- Half-life is the time required for a reactant concentration to fall to half its value.
- Activation energy is the energy barrier for reaction.
- Catalyst increases rate by providing a lower-energy pathway and is regenerated.
Definitions in chemistry often connect a symbolic representation to a physical sample. A formula such as names a substance, gives the atomic ratio inside one molecule, and supplies the molar mass used in a macroscopic calculation. A state symbol such as is not cosmetic; it says the species is dispersed in water and may be treated as ions when writing a net ionic equation. In the same way, constants such as , , , or are compact definitions of the measurement system being used.
Key results
The central results are:
- Rate law example: .
- Zero-order integrated law: .
- First-order integrated law: and .
- Second-order integrated law for one reactant: .
- Arrhenius equation: .
- Two-temperature form: .
The rate law is not generally read from the balanced overall equation. It must be measured or derived from a valid mechanism whose elementary steps add to the overall reaction. Catalysts change mechanism and activation energy; they do not change the equilibrium constant because they speed forward and reverse reactions consistently.
A good way to use these results is to state the chemical model first, then substitute numbers second. For chemical kinetics, the model usually answers questions such as what particles are present, what is conserved, which process is idealized, and which measurement is being interpreted. Once that sentence is clear, the algebra becomes a bookkeeping problem rather than a search for a memorized pattern.
Units are part of the result, not decoration. Whenever a formula contains an empirical constant, a tabulated value, or a ratio of measured quantities, the units tell you whether the expression has been used in the intended form. This is especially important in general chemistry because several equations have nearly identical algebra but different meanings: pressure can be a measured state variable, an equilibrium correction, or a colligative effect; energy can be heat flow, enthalpy, internal energy, or free energy.
The strongest check is an independent chemical interpretation. Ask whether the sign agrees with direction, whether a concentration can be negative, whether a mole ratio follows the balanced equation, whether an equilibrium shift opposes the stress, and whether a microscopic description explains the macroscopic number. These checks connect chemical kinetics to neighboring topics instead of leaving it as an isolated technique.
A second check is to compare the limiting cases. If a reactant amount goes to zero, a product amount cannot remain large. If temperature rises in a gas sample at fixed volume, pressure should not fall in an ideal model. If an acid is diluted, hydronium concentration should normally decrease unless a coupled equilibrium supplies more. Limiting cases often reveal algebra that has been rearranged correctly but applied to the wrong chemical situation.
Finally, keep symbolic and particulate representations side by side. A balanced equation, an equilibrium expression, an orbital diagram, or a polymer repeat unit is a compact symbol for a population of particles. Translating that symbol into words forces you to say what is reacting, what is being counted, and what is being held constant. That translation is usually the difference between a calculation that can be adapted to a new problem and one that only imitates a worked example.
Visual
| Order in A | Rate law | Linear plot | Half-life behavior |
|---|---|---|---|
| 0 | vs | decreases with | |
| 1 | vs | constant | |
| 2 | vs | increases as concentration drops |
Worked example 1: Rate law from initial rates
Problem. For a reaction, trial 1 has , , rate . Trial 2 has , , rate . Trial 3 has , , rate . Find the rate law.
Method.
-
Compare trials 1 and 2: constant, doubles.
-
Rate increases by factor , so and .
-
Compare trials 1 and 3: constant, triples.
-
Rate increases by factor , so and .
-
Rate law is .
-
Use trial 1 to find : .
-
Thus if rate is in M/s.
Checked answer. with units . Using trial 2 gives .
The important habit is to identify the conserved quantity before reaching for an equation. In this example the units, coefficients, charges, or particles chosen in the first step control every later step. The final numerical answer is not accepted merely because it came from a formula; it is checked against the chemical picture. If the magnitude, sign, units, or limiting condition contradicts that picture, the calculation has to be restarted from the definition rather than patched at the end.
Worked example 2: First-order half-life
Problem. A first-order decomposition has . How long until 25.0 percent of the reactant remains?
Method.
-
Use first-order integrated law: .
-
If 25.0 percent remains, .
-
Substitute: .
-
Compute .
-
Solve: .
Checked answer. . Twenty-five percent remaining is two half-lives; min.
The important habit is to identify the conserved quantity before reaching for an equation. In this example the units, coefficients, charges, or particles chosen in the first step control every later step. The final numerical answer is not accepted merely because it came from a formula; it is checked against the chemical picture. If the magnitude, sign, units, or limiting condition contradicts that picture, the calculation has to be restarted from the definition rather than patched at the end.
Code
The snippet below is intentionally small, but it is runnable and mirrors the calculation style used in the worked examples. It keeps units visible in variable names so that the computation remains auditable.
from math import log
def first_order_time(fraction_remaining, k):
return -log(fraction_remaining) / k
def rate_constant(rate, concentrations, orders):
denominator = 1.0
for conc, order in zip(concentrations, orders):
denominator *= conc ** order
return rate / denominator
k = rate_constant(2.0e-3, [0.100, 0.100], [2, 1])
t = first_order_time(0.250, 0.0230)
print(k, t)
Common pitfalls
- Deriving the rate law from overall coefficients. Avoid it by using experimental data unless the step is elementary.
- Confusing reaction order with stoichiometric coefficient. Avoid it by determining order by concentration dependence.
- Forgetting units of change with overall order. Avoid it by solving dimensions from rate units.
- Using the wrong integrated rate plot. Avoid it by checking which transformed concentration is linear.
- Saying a catalyst changes equilibrium yield. Avoid it by separating rate change from equilibrium position.
- Using Celsius in Arrhenius calculations. Avoid it by converting temperatures to kelvin.