Electronic Schrödinger Equation¶
The electronic Schrödinger equation is the fundamental equation of quantum chemistry. Every electronic structure method—including Hartree–Fock (HF), Density Functional Theory (DFT), Møller–Plesset Perturbation Theory (MP2), and Coupled Cluster (CC)—begins with this equation.
Its objective is straightforward:
Given the positions of the atomic nuclei, determine the electronic wavefunction and the corresponding energy of the molecule.
Unfortunately, for molecules containing more than one electron, the equation cannot be solved exactly. The remainder of this tutorial explains how increasingly sophisticated approximations ultimately lead to the Hartree–Fock method.
The Time-Independent Schrödinger Equation¶
For a stationary quantum system, the time-independent Schrödinger equation is
where
| Symbol | Meaning |
|---|---|
| \(\hat{H}\) | Hamiltonian operator |
| \(\Psi\) | Wavefunction |
| \(E\) | Total energy of the system |
The Hamiltonian contains all the information about the physical system. Solving this equation provides both
- the allowed energies of the system, and
- the corresponding wavefunctions.
Note
The wavefunction itself cannot be measured directly. However, its square,
represents the probability density of finding the electrons in space.
What is the Hamiltonian?¶
The Hamiltonian represents the total energy operator.
For any molecular system, it consists of
- kinetic energy,
- potential energy.
In classical mechanics,
where
- \(T\) is the kinetic energy,
- \(V\) is the potential energy.
Quantum mechanics follows the same principle, except that these quantities become operators.
Thus,
The Molecular Hamiltonian¶
A molecule contains
- nuclei,
- electrons.
Both possess kinetic energy, while several electrostatic interactions contribute to the potential energy.
Therefore,
where
| Operator | Physical Meaning |
|---|---|
| \(\hat T_n\) | Nuclear kinetic energy |
| \(\hat T_e\) | Electronic kinetic energy |
| \(\hat V_{nn}\) | Nucleus–nucleus repulsion |
| \(\hat V_{ee}\) | Electron–electron repulsion |
| \(\hat V_{ne}\) | Electron–nucleus attraction |
This expression represents the exact non-relativistic Hamiltonian of a molecule.
The Individual Energy Terms¶
Each contribution has a clear physical interpretation.
Nuclear Kinetic Energy¶
Since nuclei possess mass and move through space,
where
- \(M_A\) is the mass of nucleus \(A\),
- \(\nabla_A^2\) is the Laplacian with respect to its coordinates.
Because nuclei are much heavier than electrons, this term often changes much more slowly.
Electronic Kinetic Energy¶
Electrons also possess kinetic energy.
where
- \(m_e\) is the electron mass,
- \(i\) labels each electron.
This operator governs the motion of the electrons throughout the molecule.
Electron–Nucleus Attraction¶
Every electron is attracted to every nucleus through Coulomb's law.
where
- \(Z_A\) is the atomic number,
- \(r_{Ai}\) is the distance between electron \(i\) and nucleus \(A\).
This negative contribution is responsible for binding electrons to atoms.
Electron–Electron Repulsion¶
Since electrons have identical negative charges, they repel one another.
where
\(r_{ij}\)
is the distance between electrons.
This is the most difficult term in quantum chemistry because every electron interacts with every other electron.
Nuclear Repulsion¶
Similarly, the positively charged nuclei repel one another.
where
\(R_{AB}\)
is the distance between nuclei.
For a fixed molecular geometry, this term remains constant.
Why Can't We Solve This Equation Exactly?¶
For a hydrogen atom,
there is only one electron.
Since no electron–electron interaction exists,
the Schrödinger equation has an exact analytical solution.
However, molecules contain many electrons.
For a system containing \(N\) electrons,
each electron interacts with every other electron.
The wavefunction therefore depends on the coordinates of all electrons simultaneously,
making the problem enormously complicated.
The electron–electron repulsion term couples the motion of every electron to every other electron, preventing an exact solution.
Warning
The electron–electron repulsion term is the primary reason why exact solutions are impossible for most molecules.
The Need for Approximation¶
Because the exact Schrödinger equation cannot be solved for many-electron systems, quantum chemistry relies on carefully chosen approximations.
The first approximation is the
Born–Oppenheimer Approximation,
which separates nuclear motion from electronic motion.
This simplification transforms the full molecular Schrödinger equation into the electronic Schrödinger equation, which forms the starting point for Hartree–Fock theory.
Key Takeaways¶
- The Schrödinger equation is the foundation of electronic structure theory.
- The Hamiltonian contains all kinetic and potential energy contributions.
- Electron–electron repulsion prevents exact analytical solutions for molecules.
- Most quantum chemistry methods begin by introducing approximations to simplify this problem.
- The first and most important approximation is the Born–Oppenheimer Approximation, discussed in the next chapter.