Thermodynamics and Free Energy
Thermodynamics explains the direction and limits of chemical change. Thermochemistry measured heat; thermodynamics adds entropy and free energy so that spontaneity, maximum useful work, and equilibrium composition can be treated in one framework.
In the Ebbing and Gammon sequence this topic sits near first law, enthalpy, spontaneous processes, entropy, standard entropies, third law, Gibbs free energy, spontaneity, free energy interpretation, free energy and equilibrium constants, and temperature effects. 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.
- Spontaneous process proceeds without continuous external forcing under specified conditions.
- Entropy measures dispersal of energy and matter among available microstates.
- Second law states that entropy of the universe increases for a spontaneous process.
- Third law assigns zero entropy to a perfect crystal at 0 K.
- Gibbs free energy combines enthalpy and entropy for constant-temperature, constant-pressure processes.
- Standard free energy change refers to standard-state conditions.
- Reaction free energy depends on current composition through .
- At equilibrium, .
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:
- Entropy of universe: .
- Gibbs relation: .
- Standard reaction entropy: .
- Standard free energy of reaction: .
- Composition dependence: .
- Equilibrium link: .
A negative predicts spontaneity in the forward direction for the current conditions, not necessarily speed. A reaction can be spontaneous and slow because kinetics imposes an activation barrier. The equation is the bridge between thermodynamics and equilibrium: changing composition changes the driving force until equilibrium is reached.
A good way to use these results is to state the chemical model first, then substitute numbers second. For thermodynamics and free energy, 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 thermodynamics and free energy 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
| Sign pattern | Temperature effect | Spontaneity |
|---|---|---|
| , | favorable at all T | always spontaneous |
| , | unfavorable at all T | never spontaneous under standard model |
| , | enthalpy favored, entropy opposed | spontaneous at low T |
| , | entropy favored, enthalpy opposed | spontaneous at high T |
Worked example 1: Spontaneity from enthalpy and entropy
Problem. A process has and . Find at 298 K and decide spontaneity.
Method.
-
Convert entropy to kJ: .
-
Use .
-
Compute .
-
Subtract: .
-
Positive means the forward process is not spontaneous under these conditions.
Checked answer. , so the forward process is nonspontaneous at 298 K. Both enthalpy and entropy are positive, so high temperature may make the process spontaneous; 298 K is just below the threshold.
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: Equilibrium constant from standard free energy
Problem. At 298 K, a reaction has . Find .
Method.
-
Use .
-
Convert free energy to joules: .
-
Solve for .
-
Substitute: .
-
Calculate: .
-
Exponentiate: .
Checked answer. . Negative standard free energy corresponds to , as found.
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 exp
R = 8.314
def delta_g(delta_h_kj, delta_s_j, T):
return delta_h_kj - T * (delta_s_j / 1000.0)
def K_from_delta_g(delta_g_kj, T):
return exp(-(delta_g_kj * 1000.0) / (R * T))
print(delta_g(25.0, 80.0, 298.0))
print(K_from_delta_g(-11.4, 298.0))
Common pitfalls
- Forgetting to convert entropy from J to kJ. Avoid it by matching units before using .
- Equating spontaneous with fast. Avoid it by separating thermodynamics from kinetics.
- Using to predict direction at nonstandard composition without . Avoid it by using .
- Thinking equilibrium means . Avoid it by remembering equilibrium means , not necessarily equal concentrations.
- Ignoring temperature when comparing spontaneity. Avoid it by checking the term explicitly.
- Using logarithm base 10 in without conversion. Avoid it by using natural log unless the equation is rewritten.