Skip to content

Light and the Modern World

Bridge to quantum computing

Where the classical picture ends and the qubit begins

The last lesson left the transistor pinned against a wall of heat, a switch that is either on or off, a clean 1 or 0. That switch is the whole classical picture: definite, one thing at a time. This lesson takes you to the exact edge where that picture cracks. Fire the smallest thing you can, one particle, at two narrow slits, and it does something a pebble never could. What it does is the seed of an entirely different kind of machine.

Predict first: one particle, two slits

Imagine a wall with two thin slits and a screen behind it. You fire electrons at it so gently that only one is ever in flight, each landing as a single dot. Each electron is one indivisible particle, so surely it goes through one slit or the other, and after thousands of them you get two stripes on the screen, one behind each slit. Commit to that prediction before you run the widget. It is wrong, and the way it is wrong is the point.

Play: fire them one at a time

Press Fire one a few times, then Rapid fire to pile up hundreds. Each particle lands as a single dot in a single place, exactly like a pebble would. Watch what the dots build.

0 particles fired. With no detector, fire enough and the dots build up striped fringes, as if each single particle passed through both slits at once.

With no detector, the dots do not fall into two stripes. They stack into a set of many alternating bright and dark bands, an . That pattern is what you get when a wave passes through both slits at once and the two overlapping ripples reinforce in some places and cancel in others, which you saw for water and sound in waves. But here there was never more than one particle in the box. A single electron, arriving as one dot, still landed as if it had gone through both slits and interfered with itself.

Superposition: both paths until you look

There is no way to keep the pattern and also say which slit each electron took. The honest description, stated as the conceptual core of quantum mechanics, is that between the source and the screen the electron is not at one slit or the other but in a of both paths at once. The two possibilities are not our ignorance about a hidden truth; they genuinely coexist and interfere, and the striped screen is the physical proof.[1]

Now turn the which-slit detector on and fire again. The instant you force each particle to reveal which slit it used, the interference bands vanish and you get exactly the two plain stripes you first predicted. Measuring which path the particle took collapses the superposition into one definite path, and once the particle is committed to a single slit, there is nothing to interfere with. This is : looking changes the result. Superposition only survives while nothing records the outcome.

From this to a qubit

A classical bit is the transistor from the last lesson: it is definitely 0 or definitely 1, like an electron forced through one known slit. A is the electron before you looked: a two-state system that can sit in a superposition of 0 and 1 together, and only becomes one of them when you measure it.

A qubit is not a faster bit

The tempting misread is that a qubit is just a bit that computes quicker, or that it secretly holds 0 and 1 like a fast coin flip. Neither is right. Its power is that superposed states can interfere, canceling wrong answers and reinforcing right ones, exactly like the bright and dark bands on the screen. A quantum computer is not a fast classical computer; it is a machine that computes with interference.

You can feel why that might matter for scale. Describing the superposition of qubits takes numbers, one amplitude for every possible combination of bits, because all those combinations coexist. Thirty qubits already means over a billion amplitudes evolving together. For a few special problems, notably factoring huge numbers and simulating molecules and materials, quantum interference can reach the answer with far fewer steps than any known classical method, which is why Feynman first proposed building computers out of quantum parts to simulate quantum physics.[2] Each amplitude is a number you can think of with the vectors you already know, and a measurement turns those amplitudes into the probabilities of each outcome.

# 3 classical bits are always exactly one of 8 states:
classical = "101"                 # one definite string, 3 bits

# 3 qubits carry an amplitude for every one of the 2**3 = 8 combinations at once:
import math
amplitudes = [1/math.sqrt(8)] * 8  # a superposition over 000..111
# measuring returns ONE string, with probability = amplitude squared:
# prob("101") = amplitudes[5] ** 2

# n qubits -> 2**n amplitudes evolving together. n = 300 already exceeds
# the number of atoms in the observable universe.
for n in [10, 50, 300]:
    print(n, "qubits ->", 2**n, "amplitudes")
Why the state space explodes: classical picks one row, quantum carries them all

Where this course hands off

This is the end of the classical road and the start of another. The sibling Quantum Computing course picks up right here: it turns superposition and measurement into the math of qubits, gates, and algorithms, leaning on the same vectors and probability you built in the math track. You now have the one experiment everything there rests on.

Lock it in

  • Fire single particles at two slits and, with nothing watching, they still build an interference pattern, so a single particle explores both paths at once.
  • That combination of coexisting possibilities is superposition; it interferes, reinforcing some outcomes and canceling others.
  • Measuring which slit collapses the superposition to one definite path and destroys the interference. Looking changes the outcome.
  • A qubit is a bit that can be in superposition until measured. Its edge is interference, not raw speed, and its state space grows as for qubits.

Check yourself

A qubit differs from a classical bit because it can be:

In the double-slit experiment, adding a which-slit detector:

Match each concept to its classical or quantum meaning.

drop here

Definitely 0 or 1, one value at a time

drop here

A superposition of 0 and 1 until it is measured

drop here

Collapses the state to one definite outcome

drop here

A single particle exploring both paths, reinforcing and canceling

You fire electrons one at a time and still get an interference pattern. What does that force you to conclude about a single electron?

The observation that demands superposition. Try to state it, then check.

Primary source

Feynman Lectures on Physics, Vol III, Ch 1 - Quantum Behavior

Feynman builds all of quantum mechanics out of this one double-slit experiment, one particle at a time. The clearest first read there is.

Sources

  1. 1.Feynman Lectures on Physics, Vol III, Ch 1 - Quantum Behavior
  2. 2.R. P. Feynman, Simulating Physics with Computers, Int. J. Theor. Phys. 21 (1982)