DEV Community

Cover image for The Airy Disk: Why Diffraction Sets a Hard Limit on Every Lens and Mirror
NovaSolver
NovaSolver

Posted on Originally published at novasolver.jp

The Airy Disk: Why Diffraction Sets a Hard Limit on Every Lens and Mirror

Point a perfect telescope at a perfect star and you still will not see a point. You will see a small bright disk ringed by faint halos. The optics are flawless; the blur is not a defect. It is diffraction — the unavoidable spreading of light as it squeezes through a finite aperture — and it puts a ceiling on the sharpness of every camera, microscope, and telescope ever built.

This article explains where that blur comes from, how to compute its size, and how it translates into the resolving power of a real instrument. We will work a telescope example end to end and flag the mistakes that creep into resolution calculations.

Why this calculation matters

Resolution is the currency of optical instruments. An astronomer wants to split a close binary star; a microscopist wants to separate two organelles; a camera designer wants to know whether a sensor's pixels are wasted on detail the lens can never deliver. In all three cases the question is the same: how small a detail can the instrument distinguish before diffraction smears it away?

The Airy disk gives the answer. It is the smallest spot any aberration-free optic can form from a point source, and its size sets the diffraction limit — the best resolution physically possible for a given aperture and wavelength. This matters at the design stage, because there is no point building a sensor or eyepiece finer than the diffraction limit, and it matters at the analysis stage, because it tells you whether two features that look merged are genuinely unresolved or merely undersampled. Knowing the airy disk diffraction limit is what separates a sober optical specification from wishful thinking.

The core formula

When light from a distant point source passes through a circular aperture, it does not converge to a point. Waves from different parts of the aperture travel slightly different paths and interfere, spreading the energy into a pattern: a bright central disk surrounded by progressively fainter rings. That central disk is the Airy disk, named for George Airy, who first worked out its mathematics in 1835.

The angular radius of the Airy disk — the angle from the center to the first dark ring — is:

theta = 1.22 * lambda / D
Enter fullscreen mode Exit fullscreen mode

where lambda is the wavelength of the light and D is the diameter of the aperture. The angle comes out in radians. The factor 1.22 is not arbitrary; it is set by the first zero of a Bessel function, which is the natural mathematics of a circular aperture.

The formula carries a simple, powerful message. Resolution improves — theta shrinks — when you make the aperture D larger or use a shorter wavelength lambda. A bigger mirror gathers a wider span of wavefront, which interferes to a tighter spot. This is the single most important reason research telescopes keep getting larger.

Two practical readings follow. The Rayleigh criterion says two point sources are just resolvable when the center of one Airy disk falls on the first dark ring of the other — that is, when their angular separation equals theta. And in the focal plane of a lens, the same angle becomes a physical spot radius of about 1.22 * lambda * F-number, where the F-number is the focal length divided by D. A faster lens, with a smaller F-number, produces a smaller diffraction spot.

A worked example

Consider a telescope with an aperture diameter D = 0.1 m (100 mm), observing in the middle of the visible spectrum at a wavelength lambda = 550 nm, which is 550e-9 m. Find its diffraction-limited angular resolution.

Step 1 — substitute into the formula.

theta = 1.22 * lambda / D
theta = 1.22 * 550e-9 / 0.1
Enter fullscreen mode Exit fullscreen mode

Step 2 — evaluate the numerator.

1.22 * 550e-9 = 6.71e-7  (metres)
Enter fullscreen mode Exit fullscreen mode

Step 3 — divide by the aperture.

theta = 6.71e-7 / 0.1 = 6.71e-6 radians
Enter fullscreen mode Exit fullscreen mode

Step 4 — convert to a more familiar unit. Radians are awkward for sky angles, so convert to arcseconds. One radian is 206265 arcseconds:

theta = 6.71e-6 * 206265 = 1.38 arcseconds
Enter fullscreen mode Exit fullscreen mode

So a 100 mm telescope can resolve detail down to about 1.38 arcseconds — roughly the apparent separation of a coin's two faces seen from two kilometres away. Double the aperture to 200 mm and theta halves to about 0.69 arcseconds; the larger instrument sees twice as fine. That inverse scaling with aperture is the whole reason observatories invest in ever-bigger mirrors, and the reason a modest backyard telescope, however well made, simply cannot match one.

Common mistakes

Mixing radius and diameter. The 1.22 factor belongs to the aperture diameter D. Plug in the radius and your resolution will be off by a factor of two. Likewise, theta is the radius of the Airy disk, not its full width.

Forgetting the radian-to-arcsecond conversion. The formula returns radians. A raw answer like 6.71e-6 is meaningless to most observers until you multiply by 206265 to get arcseconds, or by 57.3 to get degrees.

Assuming a bigger sensor or more pixels buys more resolution. Once an instrument is diffraction-limited, finer pixels record the same blur in more detail but add no real information. Resolution is then capped by D and lambda, not by the detector.

Ignoring wavelength. Resolution depends on lambda, so an instrument resolves blue light better than red. An infrared telescope needs a much larger aperture than a visible one to reach the same angular resolution.

Confusing the diffraction limit with the real limit. The Airy formula gives the best case for a perfect optic. Atmospheric turbulence, aberrations, misalignment, and vibration all degrade real resolution. Ground-based telescopes are often limited by the atmosphere — typically around one arcsecond of seeing — long before diffraction has its say.

Try the interactive NovaSolver calculator

Running the calculation once shows the principle; sweeping aperture and wavelength shows how the trade-offs really behave. The Airy Disk Simulator — Diffraction Limit and Rayleigh Resolution on NovaSolver lets you set the wavelength, aperture diameter, F-number, and observation distance, and returns the diffraction-limited angle, the focal-plane Airy radius, the resolution at a chosen distance, and the central-disk energy fraction — alongside a 2D diffraction pattern and a 1D intensity profile that make the Rayleigh limit tangible.

Related calculators

You can explore the rest in the optics tools hub.

Closing note

The Airy disk is a humbling reminder that even a perfect optic has a limit, and that the limit is set by physics rather than craftsmanship. The formula is as compact as they come — theta = 1.22 lambda over D — yet it governs why telescopes grow, why microscopes favor short wavelengths, and why piling on megapixels eventually buys nothing. Compute the diffraction limit first, compare it honestly against atmosphere and aberrations, and you will know what your instrument can really see before you ever point it at the sky.

Top comments (0)