In May 2000, the Clay Mathematics Institute announced seven unsolved problems, each carrying a prize of one million dollars. The problems were chosen not for their difficulty alone—mathematics has no shortage of hard problems—but because they sit at the junctions where entire fields meet, where a resolution would crack open new continents of understanding. A solution to any one of them would reshape the landscape of mathematics, physics, or computer science.

As of today, one has been solved. The Poincaré conjecture was proved by Grigori Perelman in 2003 using Ricci flow with surgery, confirming Thurston’s geometrization program. Perelman declined both the million-dollar prize and the Fields Medal. The remaining six are open.

This article treats each problem technically. The aim is not to gesticulate at the difficulty but to state each problem precisely, explain why it matters, describe the landscape of partial results and promising approaches, and give a sense of what a solution might look like.

Problem Field Status
Poincaré Conjecture Topology / Geometry Solved
P vs NP Computer Science / Complexity Theory Open
Riemann Hypothesis Number Theory / Analysis Open
Yang–Mills Existence and Mass Gap Mathematical Physics / QFT Open
Navier–Stokes Existence and Smoothness Partial Differential Equations Open
Birch and Swinnerton-Dyer Conjecture Number Theory / Algebraic Geometry Open
Hodge Conjecture Algebraic Geometry / Topology Open

1. The Poincaré Conjecture Solved

The statement

Poincaré Conjecture (1904):

Every simply connected, closed 3-manifold is homeomorphic to the 3-sphere $S^3$.

A closed manifold is compact and without boundary. Simply connected means every closed loop can be continuously contracted to a point—there are no “holes” that loops can wrap around. The 3-sphere $S^3 = \{x \in \mathbb{R}^4 : |x| = 1\}$ is the three-dimensional analogue of the ordinary sphere.

In two dimensions, the analogous statement is trivially true: the only simply connected closed surface is $S^2$, the ordinary sphere. In dimensions $n \geq 5$, the generalized Poincaré conjecture was proved by Smale (1961) using the h-cobordism theorem. In dimension 4, Freedman proved it in 1982 (earning a Fields Medal). Dimension 3 was the hardest case.

Why dimension 3 is special

In high dimensions, there is “room to maneuver”—you can unknot spheres and perform surgery operations freely. In dimension 3, everything is tight. The topology of 3-manifolds is rich and constrained in ways that higher dimensions are not. This is why Poincaré’s conjecture was the last to fall.

Perelman’s proof: Ricci flow with surgery

The resolution came not from topology but from geometry—specifically, from the theory of geometric flows. Richard Hamilton introduced the Ricci flow in 1982:

Ricci Flow:

$$\frac{\partial g_{ij}}{\partial t} = -2 R_{ij}$$

where $g_{ij}$ is the Riemannian metric and $R_{ij}$ is the Ricci curvature tensor.

The Ricci flow deforms a Riemannian metric in the direction of its curvature, smoothing out geometric irregularities the way heat diffusion smooths out temperature variations. Regions of high curvature contract faster. Hamilton’s hope was that the flow would eventually homogenize the geometry, producing a manifold of constant curvature—which, if the manifold is simply connected, would identify it as $S^3$.

The problem is singularities. The Ricci flow can develop “necks” that pinch off in finite time, and the flow ceases to exist. Hamilton proposed a surgery procedure: when a singularity forms, cut the manifold along the pinching neck, cap off the resulting boundary spheres with hemispheres, and restart the flow on each piece.

Between 2002 and 2003, Perelman posted three papers to arXiv that completed Hamilton’s program. His key contributions:

  • No local collapsing theorem: Using a monotone quantity he called the $\mathcal{W}$-entropy (inspired by statistical mechanics), Perelman proved that the Ricci flow cannot collapse to lower dimensions locally. This was the critical missing estimate in Hamilton’s program.
  • Canonical neighborhood theorem: Near singularities, the geometry looks like one of a small catalog of model geometries (cylinders, caps, quotients). This makes surgery possible because you know exactly what you’re cutting.
  • Surgery algorithm terminates: Perelman showed that the surgery process terminates in finite time: either the manifold disappears (becomes extinct) or it settles into a well-understood geometric structure.

For simply connected manifolds, Perelman showed the flow with surgery eventually makes the manifold extinct (it shrinks to a point while becoming rounder), confirming that the manifold was homeomorphic to $S^3$.

Resolution
Perelman’s proof was verified by multiple groups (Kleiner–Lott, Morgan–Tian, Cao–Zhu) over several years. He was awarded the Fields Medal in 2006 and the Millennium Prize in 2010. He declined both. The Poincaré conjecture is the only Millennium Problem that has been solved.

2. P vs NP Open

The statement

Let $\Sigma^*$ denote the set of all finite binary strings. A decision problem is a subset $L \subseteq \Sigma^*$ (a “language”). A deterministic Turing machine $M$ decides $L$ in time $T(n)$ if for every input $x$ of length $n$, $M$ halts in at most $T(n)$ steps and correctly outputs whether $x \in L$.

Complexity classes:

$$\mathbf{P} = \bigcup_{k \geq 1} \mathrm{DTIME}(n^k)$$ $$\mathbf{NP} = \bigcup_{k \geq 1} \mathrm{NTIME}(n^k)$$

$\mathbf{P}$ is the class of decision problems solvable by a deterministic Turing machine in polynomial time. $\mathbf{NP}$ is the class of problems for which a proposed solution (a “certificate”) can be verified in polynomial time. Equivalently, $\mathbf{NP}$ is the class solvable in polynomial time by a nondeterministic Turing machine—one that can “guess” correctly at each step.

The P vs NP question:

$$\mathbf{P} \stackrel{?}{=} \mathbf{NP}$$

Clearly $\mathbf{P} \subseteq \mathbf{NP}$: if you can solve a problem efficiently, you can certainly verify a solution efficiently. The question is whether the reverse holds. Can every problem whose solutions are easy to check also be solved efficiently?

Why it matters

If $\mathbf{P} = \mathbf{NP}$, then the distinction between finding solutions and verifying them collapses. Cryptography based on factoring and discrete logarithms breaks. Optimization problems that currently require heuristics become exactly solvable. Mathematical theorem-proving becomes (in principle) automatable. If $\mathbf{P} \neq \mathbf{NP}$, there exist problems with an inherent, provable gap between the difficulty of verification and the difficulty of solution—a profound structural fact about computation.

NP-completeness

Cook (1971) and Levin (independently) showed that the Boolean satisfiability problem (SAT) is NP-complete: it is in $\mathbf{NP}$, and every problem in $\mathbf{NP}$ reduces to it in polynomial time. Karp (1972) showed 21 other problems are NP-complete, including graph coloring, Hamiltonian cycle, subset sum, and integer programming. Today thousands of natural problems are known to be NP-complete.

If any NP-complete problem is in $\mathbf{P}$, then $\mathbf{P} = \mathbf{NP}$. Decades of algorithmic effort have failed to find polynomial-time algorithms for any of them, which is strong circumstantial evidence that $\mathbf{P} \neq \mathbf{NP}$. But evidence is not proof.

Barriers to proof

The real difficulty of P vs NP is not just that we lack a proof—it is that we can prove that certain proof techniques cannot work. These are the known barriers:

Relativization (Baker–Gill–Solovay, 1975). There exist oracles $A$ and $B$ such that $\mathbf{P}^A = \mathbf{NP}^A$ and $\mathbf{P}^B \neq \mathbf{NP}^B$. Any proof technique that “relativizes”—that works unchanged in the presence of an oracle—cannot resolve P vs NP. This rules out most techniques from classical computability theory.

Natural proofs (Razborov–Rudich, 1997). A “natural proof” of circuit lower bounds is one that exploits a property shared by a large fraction of Boolean functions. Razborov and Rudich showed that if one-way functions exist (a standard cryptographic assumption), then natural proofs cannot prove superpolynomial circuit lower bounds for $\mathbf{NP}$. This rules out the combinatorial techniques used for most known lower bounds.

Algebrization (Aaronson–Wigderson, 2009). An extension of relativization that also allows algebraic extensions of oracle queries. P vs NP cannot be resolved by any technique that algebrizes, which rules out essentially all known techniques in algebraic complexity theory.

The meta-problem
Resolving P vs NP requires a fundamentally new proof technique—one that does not relativize, is not natural, and does not algebrize. Such techniques essentially do not exist yet in complexity theory. The few known exceptions (the IP = PSPACE proof, interactive proofs, the PCP theorem) give some hope that non-relativizing, non-naturalizing techniques exist, but none has been successfully aimed at P vs NP.

Promising directions

Geometric Complexity Theory (GCT). Mulmuley and Sohoni (2001–present) propose using algebraic geometry and representation theory to separate $\mathbf{VP}$ from $\mathbf{VNP}$ (Valiant’s algebraic analogues of P and NP). The program aims to show that certain orbit closures in the space of polynomials cannot equal others, using multiplicity obstructions from representation theory. GCT is the most ambitious ongoing program aimed at P vs NP. It avoids all three barriers by working with geometric rather than combinatorial structure. However, recent work (Bürgisser, Ikenmeyer, Panova) has shown that the simplest forms of multiplicity obstructions are insufficient, meaning the program requires deeper representation-theoretic tools than initially hoped.

Circuit complexity. Ryan Williams (2011) showed that $\mathrm{NEXP} \not\subseteq \mathrm{ACC}^0$, the first nontrivial circuit lower bound in decades. The technique—connecting algorithm design to lower bounds via the “algorithmic method”—is a new paradigm. While still far from P vs NP, it demonstrates that meaningful lower bounds are provable.

3. The Riemann Hypothesis Open

The statement

The Riemann zeta function is defined for $\operatorname{Re}(s) > 1$ by the absolutely convergent series:

$$\zeta(s) = \sum_{n=1}^{\infty} \frac{1}{n^s} = \prod_{p \text{ prime}} \frac{1}{1 - p^{-s}}$$

The equality between the series and the Euler product (valid for $\operatorname{Re}(s) > 1$) encodes the fundamental theorem of arithmetic: every positive integer has a unique prime factorization. Riemann showed (1859) that $\zeta$ has an analytic continuation to all of $\mathbb{C} \setminus \{1\}$, with a simple pole at $s = 1$, and satisfies the functional equation:

$$\pi^{-s/2} \, \Gamma\!\left(\frac{s}{2}\right) \zeta(s) = \pi^{-(1-s)/2} \, \Gamma\!\left(\frac{1-s}{2}\right) \zeta(1-s)$$

The zeta function vanishes at the trivial zeros $s = -2, -4, -6, \ldots$ (forced by the Gamma function poles). All other zeros lie in the critical strip $0 \leq \operatorname{Re}(s) \leq 1$.

The Riemann Hypothesis (1859):

All nontrivial zeros of $\zeta(s)$ have real part $\frac{1}{2}$.

That is, if $\zeta(\rho) = 0$ and $\rho$ is not a negative even integer, then $\rho = \frac{1}{2} + i\gamma$ for some real $\gamma$.

Why the zeros of $\zeta$ control the primes

The prime counting function $\pi(x) = \#\{p \leq x : p \text{ prime}\}$ is related to $\zeta$ via the explicit formula (von Mangoldt, Riemann):

$$\psi(x) = x - \sum_{\rho} \frac{x^\rho}{\rho} - \frac{\zeta'(0)}{\zeta(0)} - \frac{1}{2}\log(1 - x^{-2})$$

where $\psi(x) = \sum_{p^k \leq x} \log p$ is the Chebyshev function, and the sum runs over the nontrivial zeros $\rho$ of $\zeta$. Each zero $\rho = \beta + i\gamma$ contributes an oscillating correction term of magnitude $x^\beta$. If all zeros have $\beta = 1/2$, these correction terms have magnitude $\sqrt{x}$, giving:

$$\pi(x) = \operatorname{Li}(x) + O(\sqrt{x} \log x)$$

This is the best possible error term for the prime number theorem. If any zero has $\beta > 1/2$, the error term is larger. The Riemann Hypothesis is equivalent to the statement that primes are distributed as regularly as possible.

Computational evidence

Over $10^{13}$ nontrivial zeros have been computed (by Platt, Gourdon, Odlyzko, and others), and every single one lies on the critical line $\operatorname{Re}(s) = 1/2$. Hardy (1914) proved infinitely many zeros lie on the critical line. Selberg (1942) proved a positive proportion do. Conrey (1989) proved at least 40% do. But none of this proves all of them do.

Connections and approaches

Random matrix theory. Montgomery (1973) conjectured that the pair correlation of the nontrivial zeros of $\zeta$ matches the pair correlation of eigenvalues of random matrices in $\mathrm{GUE}$ (the Gaussian Unitary Ensemble). This was famously noted by Dyson during a tea-time conversation. Odlyzko’s numerical computations confirmed the match to extraordinary precision. The Katz–Sarnak philosophy generalizes this: zeros of $L$-functions behave statistically like eigenvalues of random matrices from classical compact groups.

This suggests a spectral interpretation: there should exist a self-adjoint operator whose eigenvalues are the imaginary parts of the nontrivial zeros of $\zeta$. If such an operator exists and can be shown to be self-adjoint (hence with real eigenvalues), RH would follow. This is the Hilbert–Pólya conjecture.

Function field analogue. The Riemann Hypothesis for zeta functions of curves over finite fields was proved by Weil (1948) and generalized by Deligne (1974) to arbitrary varieties. In that setting, the zeros are eigenvalues of the Frobenius endomorphism acting on étale cohomology, and their absolute values are controlled by the Weil conjectures. The hope is to find an analogous geometric/cohomological structure for the number field case. Connes’s noncommutative geometry program and Deninger’s conjectural cohomology theory are attempts in this direction.

The de Bruijn–Newman constant. Define a family of entire functions $H_t$ parameterized by $t \in \mathbb{R}$, where $H_0$ is closely related to the Riemann xi function. The de Bruijn–Newman constant $\Lambda$ is the infimum of $t$ such that $H_t$ has only real zeros. RH is equivalent to $\Lambda \leq 0$. Newman (1976) conjectured $\Lambda \geq 0$, i.e., $\Lambda = 0$. Rodgers and Tao (2020) proved $\Lambda \geq 0$, confirming Newman’s conjecture. This means RH, if true, is “barely true”—the zeros are right at the edge of the critical line.

“If I were to awaken after having slept for a thousand years, my first question would be: has the Riemann hypothesis been proved?”
— attributed to David Hilbert

4. Yang–Mills Existence and Mass Gap Open

The statement

Quantum Yang–Mills theory is the mathematical framework underlying the Standard Model of particle physics. The gauge group of the Standard Model is $SU(3) \times SU(2) \times U(1)$, where $SU(3)$ governs the strong nuclear force (quantum chromodynamics, QCD). The Millennium Problem concerns pure Yang–Mills theory with a compact simple gauge group $G$ (such as $SU(3)$) in four-dimensional Minkowski spacetime.

Yang–Mills Millennium Problem:

Prove that for any compact simple gauge group $G$, a nontrivial quantum Yang–Mills theory exists on $\mathbb{R}^4$ (satisfying the Wightman axioms or equivalent) and has a mass gap: the lowest energy state above the vacuum has strictly positive energy $\Delta > 0$.

The classical Yang–Mills equations are well-understood. The field is a connection $A_\mu$ (a $\mathfrak{g}$-valued 1-form on $\mathbb{R}^4$), and the action is:

$$S[A] = \frac{1}{4g^2} \int_{\mathbb{R}^4} \operatorname{tr}(F_{\mu\nu} F^{\mu\nu}) \, d^4x$$

where $F_{\mu\nu} = \partial_\mu A_\nu - \partial_\nu A_\mu + [A_\mu, A_\nu]$ is the field strength. The Euler–Lagrange equations are the Yang–Mills equations: $D_\mu F^{\mu\nu} = 0$, where $D_\mu = \partial_\mu + [A_\mu, \cdot]$ is the covariant derivative. These are nonlinear generalizations of Maxwell’s equations.

The problem is quantization. The quantum theory requires constructing a Hilbert space, a Hamiltonian, and showing that the energy spectrum has a gap above zero. Physicists have done this perturbatively (via Feynman diagrams and renormalization) with spectacular predictive success. But a rigorous nonperturbative construction of the theory does not exist.

Why a mass gap?

In quantum electrodynamics (gauge group $U(1)$), there is no mass gap: the photon is massless. But in QCD (gauge group $SU(3)$), the force-carrying gluons are “confined”—they cannot exist as free particles. The lightest observable particles (protons, pions) have positive mass. This phenomenon, called confinement, means the spectrum has a gap. Proving confinement and the mass gap from first principles is one of the great unsolved problems in mathematical physics.

The difficulty

The problem has two parts, and both are hard. Existence: No one has rigorously constructed a nontrivial quantum field theory in four spacetime dimensions satisfying the Wightman axioms (or the Osterwalder–Schrader axioms for the Euclidean version). Constructive QFT has succeeded in 2 and 3 dimensions for simpler theories, but 4D Yang–Mills is beyond current techniques. Mass gap: Even assuming existence, proving a spectral gap requires nonperturbative control over the theory—precisely where perturbative methods fail.

Approaches and partial results

Lattice gauge theory. Wilson (1974) discretized Yang–Mills theory on a spacetime lattice, making it mathematically rigorous as a finite-dimensional statistical mechanical system. Lattice QCD numerical simulations confirm confinement and predict hadron masses to high accuracy. But taking the continuum limit (lattice spacing $\to 0$) while maintaining a nontrivial theory is unproven. The lattice approach gives overwhelming numerical evidence but not a proof.

Constructive QFT. Rigorous constructions exist for simpler models: $\phi^4$ theory in 2 and 3 dimensions (Glimm–Jaffe), Gross–Neveu model in 2D, Yang–Mills in 2D (Migdal, Witten). Balaban (1980s) made substantial progress toward 4D Yang–Mills on the lattice using renormalization group techniques, proving ultraviolet stability. Completing Balaban’s program is an active area of research.

Asymptotic freedom. Gross, Wilczek, and Politzer (1973, Nobel Prize 2004) showed that non-Abelian gauge theories are asymptotically free: the coupling constant decreases at high energies. This makes the ultraviolet behavior tractable (the theory is weakly coupled at short distances). The difficulty is the infrared: at low energies, the coupling becomes strong, and perturbation theory breaks down. The mass gap is an infrared phenomenon.

5. Navier–Stokes Existence and Smoothness Open

The statement

The Navier–Stokes equations describe the motion of a viscous incompressible fluid in $\mathbb{R}^3$:

Navier–Stokes Equations:

$$\frac{\partial \mathbf{u}}{\partial t} + (\mathbf{u} \cdot \nabla)\mathbf{u} = -\nabla p + \nu \Delta \mathbf{u} + \mathbf{f}$$ $$\nabla \cdot \mathbf{u} = 0$$

where $\mathbf{u}(x, t)$ is the velocity field, $p(x, t)$ is the pressure, $\nu > 0$ is the kinematic viscosity, and $\mathbf{f}(x, t)$ is an external force.

Millennium Problem (3D, no boundaries):

Given smooth, divergence-free initial data $\mathbf{u}_0$ with sufficient decay, and smooth forcing $\mathbf{f}$, prove one of:

(A) Existence and smoothness: There exists a smooth solution $\mathbf{u}(x, t)$ for all $t > 0$.

(B) Breakdown: There exist smooth initial data for which the solution develops a singularity (blows up) in finite time.

The nonlinearity $(\mathbf{u} \cdot \nabla)\mathbf{u}$ is the problem. It is quadratic in $\mathbf{u}$ and involves a derivative, which can amplify small-scale features. The viscous term $\nu \Delta \mathbf{u}$ dissipates energy and smooths the solution, but it is unclear whether dissipation always wins.

What is known

Leray (1934): Proved that weak solutions (distributional solutions with finite energy) exist globally for any $L^2$ initial data. These Leray–Hopf weak solutions satisfy an energy inequality but may not be unique or smooth. The regularity question is: are these weak solutions actually smooth?

Local existence: Classical smooth solutions exist for short time (Kato, 1984; Fujita–Kato). The time of existence depends on the size of the initial data in appropriate Sobolev or Besov norms. For small initial data, global smooth solutions exist.

Caffarelli–Kohn–Nirenberg (1982): The set of space-time points where a suitable weak solution is singular has one-dimensional parabolic Hausdorff measure zero. In particular, singularities (if they exist) are very “thin”—they cannot fill a curve in space-time.

Scaling. Navier–Stokes has a natural scaling: if $\mathbf{u}(x, t)$ is a solution, so is $\lambda \mathbf{u}(\lambda x, \lambda^2 t)$. The energy $\|\mathbf{u}\|_{L^2}^2$ scales as $\lambda^{2 - 3} = \lambda^{-1}$ in 3D, making NS supercritical. The energy does not control the solution at small scales. In 2D, the scaling is critical and global regularity is known (Ladyzhenskaya, 1969). The 3D supercriticality is the fundamental analytical obstruction.

Approaches and recent progress

Self-similar blowup. If a singularity forms, the simplest scenario is self-similar: $\mathbf{u}(x, t) \sim (T - t)^{-1/2} U(x / (T-t)^{1/2})$ as $t \to T$. Nečas, Rusin, and Šverák (2011) ruled out self-similar blowup under mild assumptions, and Tao (2019) showed that certain self-similar blowup profiles are inconsistent with the equations. This shifts attention to more exotic singularity scenarios.

Tao’s averaged model (2016). Terence Tao constructed a modified version of Navier–Stokes (preserving key features like the energy identity and supercriticality, but breaking a subtle cancellation) for which smooth solutions do blow up in finite time. This suggests that regularity for the actual equations, if true, relies on specific structural cancellations in the nonlinearity—not just on energy dissipation alone.

Convex integration. Buckmaster and Vicol (2019) showed that weak solutions (below the Leray–Hopf energy class) are non-unique, using techniques from the Onsager conjecture resolution. This means weak solutions alone cannot resolve the problem; one needs to work with strong solutions or suitable weak solutions.

6. The Birch and Swinnerton-Dyer Conjecture Open

The statement

An elliptic curve over $\mathbb{Q}$ is a smooth projective curve of genus 1 with a distinguished rational point. Every such curve has an equation of the form:

$$E: \quad y^2 = x^3 + ax + b, \qquad a, b \in \mathbb{Z}, \quad 4a^3 + 27b^2 \neq 0$$

The set of rational points $E(\mathbb{Q})$ forms a finitely generated abelian group (Mordell’s theorem, 1922):

$$E(\mathbb{Q}) \cong \mathbb{Z}^r \oplus E(\mathbb{Q})_{\text{tors}}$$

where $r \geq 0$ is the algebraic rank and the torsion subgroup is finite (and completely classified by Mazur’s theorem). The rank $r$ tells you the number of independent rational points of infinite order. Computing $r$ is extremely difficult.

Attached to $E$ is its $L$-function, defined for $\operatorname{Re}(s) > 3/2$ by an Euler product:

$$L(E, s) = \prod_{p \text{ prime}} L_p(E, s)^{-1}$$

where the local factors encode the number of points on $E$ modulo $p$. The modularity theorem (Wiles–Taylor, Breuil–Conrad–Diamond–Taylor, building on Wiles’s proof of Fermat’s Last Theorem) implies that $L(E, s)$ extends to an entire function on $\mathbb{C}$ and satisfies a functional equation relating $L(E, s)$ to $L(E, 2-s)$.

Birch and Swinnerton-Dyer Conjecture:

Weak form: The algebraic rank $r$ equals the analytic rank (the order of vanishing of $L(E, s)$ at $s = 1$):

$$r = \operatorname{ord}_{s=1} L(E, s)$$

Strong form: The leading term of the Taylor expansion at $s = 1$ is:

$$\lim_{s \to 1} \frac{L(E, s)}{(s - 1)^r} = \frac{\Omega_E \cdot \mathrm{Reg}(E) \cdot \prod_p c_p \cdot |\text{Ш}(E)|}{|E(\mathbb{Q})_{\text{tors}}|^2}$$

where $\Omega_E$ is the real period, $\mathrm{Reg}(E)$ is the regulator, $c_p$ are the Tamagawa numbers, and $\text{Ш}(E)$ is the Tate–Shafarevich group.

The intuition

BSD connects two very different things: the algebraic structure of rational points on $E$ (the rank) and the analytic behavior of $L(E, s)$ near $s = 1$. The more rational points there are, the faster $L(E, s)$ vanishes at $s = 1$. This is a deep bridge between arithmetic (counting solutions) and analysis (the behavior of a complex function).

What is known

Rank 0 and 1. Gross–Zagier (1986) and Kolyvagin (1990) proved BSD in the cases where the analytic rank is 0 or 1:

  • If $L(E, 1) \neq 0$ (analytic rank 0), then $r = 0$: the curve has finitely many rational points.
  • If $L(E, 1) = 0$ and $L'(E, 1) \neq 0$ (analytic rank 1), then $r = 1$: the curve has a rational point of infinite order, constructed explicitly using Heegner points.

These results earned Gross and Zagier the Cole Prize and represent the deepest known results toward BSD. For analytic rank $\geq 2$, essentially nothing is known unconditionally.

The Tate–Shafarevich group. The group $\text{Ш}(E)$ measures the failure of the Hasse principle for principal homogeneous spaces of $E$. BSD predicts that $\text{Ш}(E)$ is finite. This is known for curves of rank 0 and 1 (Kolyvagin), but open in general. If $\text{Ш}$ can be infinite, the strong form of BSD fails.

Computational evidence. BSD has been numerically verified for hundreds of thousands of elliptic curves (Cremona’s tables, LMFDB). The agreement between algebraic rank and analytic rank is perfect in all computed cases.

7. The Hodge Conjecture Open

The statement

Let $X$ be a smooth projective algebraic variety over $\mathbb{C}$ of complex dimension $n$. De Rham’s theorem gives an isomorphism between the singular cohomology $H^k(X, \mathbb{C})$ and the space of closed differential $k$-forms modulo exact forms. The Hodge decomposition refines this:

$$H^k(X, \mathbb{C}) = \bigoplus_{p+q=k} H^{p,q}(X)$$

where $H^{p,q}(X)$ consists of cohomology classes representable by closed forms of type $(p, q)$—those with $p$ holomorphic differentials $dz_i$ and $q$ anti-holomorphic differentials $d\bar{z}_j$. The Hodge decomposition is a consequence of Kähler geometry and the Hodge theorem (harmonic forms).

A rational $(p, p)$-class is a class in $H^{p,p}(X) \cap H^{2p}(X, \mathbb{Q})$: it lives in the $(p,p)$ part of the Hodge decomposition and has rational periods. An algebraic cycle of codimension $p$ is a formal $\mathbb{Q}$-linear combination of closed irreducible subvarieties of codimension $p$. Such a cycle defines a cohomology class in $H^{2p}(X, \mathbb{Q})$ via the cycle class map, and this class always lands in $H^{p,p}$.

Hodge Conjecture (1950):

On a smooth projective variety $X$ over $\mathbb{C}$, every rational $(p, p)$-class is a $\mathbb{Q}$-linear combination of classes of algebraic cycles.

That is: $\operatorname{Hdg}^p(X) := H^{p,p}(X) \cap H^{2p}(X, \mathbb{Q})$ equals the $\mathbb{Q}$-span of algebraic cycle classes.

The geometric picture

The Hodge decomposition separates cohomology by “type”—how many holomorphic vs. anti-holomorphic directions a form involves. Classes of type $(p,p)$ are special: they are “balanced” between holomorphic and anti-holomorphic. The Hodge conjecture says this balanced topological condition is equivalent to an algebraic condition: these classes come from honest subvarieties sitting inside $X$.

In other words: certain purely topological objects (cohomology classes satisfying a Hodge-type condition) are secretly algebraic (representable by subvarieties).

What is known

Codimension 1. The Hodge conjecture for $(1,1)$-classes is the Lefschetz $(1,1)$-theorem, proved by Lefschetz (1924) and later by Kodaira–Spencer using sheaf cohomology. Every rational $(1,1)$-class is the first Chern class of a line bundle, which is algebraic. This is the only case where the conjecture is fully proven in general.

Abelian varieties. For abelian varieties of dimension $\leq 5$, the Hodge conjecture is known in many cases (Mattuck, Moonen, and others). For general abelian varieties, it remains open.

Failure of the integral version. Atiyah and Hirzebruch (1962) showed that the integral Hodge conjecture (with $\mathbb{Z}$ instead of $\mathbb{Q}$) is false. Kollár gave further counterexamples. The rational version remains open.

Failure for Kähler manifolds. Voisin (2002) showed that the Hodge conjecture fails for general compact Kähler manifolds (which satisfy the Hodge decomposition but are not necessarily algebraic). This means projectivity is essential—the conjecture is specifically about algebraic geometry, not just complex geometry.

Approaches

Algebraic $K$-theory and motivic cohomology. The Hodge conjecture is intimately connected to the theory of motives. Grothendieck’s standard conjectures (which imply the Hodge conjecture) posit algebraic cycle classes satisfying specific properties. The Bloch–Beilinson conjectures relate Chow groups (algebraic cycles modulo rational equivalence) to $L$-functions, providing a framework where the Hodge conjecture is part of a much larger conjectural picture linking arithmetic, geometry, and analysis.

Normal functions and Griffiths’s program. Griffiths introduced the study of normal functions (sections of intermediate Jacobian fibrations) as a tool for constructing algebraic cycles. Recent work by Green–Griffiths–Kerr has developed this into a systematic approach, relating the Hodge conjecture to singularities of normal functions and to the structure of Hodge loci in moduli spaces.

The View from 2025

Twenty-five years after the Clay Institute’s announcement, the landscape is sobering. One problem solved, six open, and on several of them the community is not obviously closer than it was in 2000. The Riemann Hypothesis remains as mysterious as it was in 1859. P vs NP is blocked by provable barriers. Yang–Mills requires mathematical tools that do not yet exist. Navier–Stokes sits in the gap between what analysis can control and what fluids actually do.

But progress has been made, even where problems remain open. Perelman’s proof showed that geometric analysis could solve purely topological problems, revitalizing Ricci flow as a tool across mathematics. Tao’s work on averaged Navier–Stokes clarified what structural features would need to prevent blowup. The Rodgers–Tao result on the de Bruijn–Newman constant sharpened our understanding of how “close to the edge” the Riemann Hypothesis sits. The modularity theorem, which resolved Fermat’s Last Theorem and established BSD for rank $\leq 1$, opened the Langlands program as the dominant framework in number theory.

The problems were chosen well. Each one sits at a junction where resolving it would force the creation of new mathematical ideas—not just settling a question, but building new machinery. That machinery, more than the million-dollar prizes, is the point.

The Millennium Problems are not seven isolated questions. They are seven windows into the deepest structures of mathematics: the topology of spaces, the limits of computation, the distribution of primes, the foundations of quantum physics, the behavior of fluids, the arithmetic of curves, and the algebraic nature of geometry. Progress on any one of them tends to illuminate the others.