Skip to content

Quantum ComputingUnderstandabout 36 min

The Impossible Coin: How Quantum Computers Think

A plain introduction to qubits, superposition, entanglement, and why measuring changes everything

This lesson explains what makes a quantum computer different from the phone or laptop you use every day, using coins, cricket, and light to make sense of qubits, superposition, entanglement, and measurement. You will learn why quantum computers can solve certain problems faster,

In this part you’ll

  • Explain how qubits use superposition to represent more states than classical bits.
  • Describe why quantum entanglement lets qubits share correlated information across distances.
  • Identify the difference between quantum interference and classical probability.
  • Recognize the measurement problem: observing a qubit collapses its superposition into a definite state.
  • Distinguish between quantum gates and classical logic gates, including common mix-ups about copying qubits.

Imagine flipping a coin. While it is in the air, it is neither heads nor tails — it is some mix of both. Now imagine you could use that "in-the-air" state to do calculations. That is the core idea behind a quantum computer.

Every phone, laptop, and the server that runs your favourite game uses bits: tiny switches that are either 0 or 1. A quantum computer uses qubits, which can be in a blended state of 0 and 1 at the same time. This lesson will walk you through how that works, why it matters, and the tricky parts that even news articles get wrong.

Chapter 01

The ₹2 Coin Test: What Makes a Qubit Different

Imagine you flip a ₹2 coin and slap it flat on your palm. You peek: heads or tails, nothing else. That certainty is how a normal computer thinks. Inside your phone, every bit — the smallest unit of information — is like that settled coin: either 0 or 1, never anything in between.

Now picture a different trick. You spin the same ₹2 coin on a smooth table like a top. While it spins, is it heads? Is it tails? It is neither, and somehow both at once. The coin is in a blurred, whirring in-between state. Only when it finally wobbles and falls does it become clearly heads or clearly tails again.

In quantum computing, that spinning — in-between — state is called superposition. A quantum bit, or qubit, is the spinning coin. A classical bit is the coin lying flat. This one difference, strange as it sounds, is the foundation of why quantum computers can solve certain problems that would take ordinary computers longer than the age of the universe.

From Flipped Coin to Qubit

  1. Step 01Coin lies flatclassical

    Classical bit. Definite state: 0 (tails) or 1 (heads). No mystery.

  2. Step 02Coin spinsquantum

    Qubit in superposition. Not 0, not 1 — a blend of both. Speed and tilt encode the probabilities.

  3. Step 03Coin landsmeasurement

    Measurement 'collapses' superposition into definite 0 or 1. The spin is gone forever.

  4. Step 04Spin againreprepare

    Prepare the qubit anew. Each fresh spin can have different angles and speeds.

Worked example

0 / 4 steps shown

The Two-Coin Lottery: Classical vs Quantum

You want to check whether a secret two-bit number (00, 01, 10, or 11) matches your guess. With classical bits you must check each possibility one by one. With qubits in superposition, a quantum algorithm can test all four at once using the same number of operations — not because it is faster, but because superposition lets one qubit-state carry multiple possibilities simultaneously.

Predict first

You have one spinning qubit-coin in equal superposition. It is definitely not heads and not tails while spinning. You measure it once. What do you observe?

TableClassical bits vs qubits at a glance
FeatureClassical BitQubit
StateEither 0 or 1Superposition: blend of 0 and 1 together
Physical pictureFlat ₹2 coinSpinning ₹2 coin
Number in a phoneBillions (8 GB ≈ 64 billion bits)None — your phone is classical
Number in a quantum processorNoneTens to a few hundred (as of 2024)
Measurement resultAlways the same if repeatedProbabilistic; answer changes each fresh run
Can copy freely?Yes, copy-paste worksNo — a fundamental law prevents cloning
Temperature of IBM qubits
~15 mKMillikelvin, colder than outer space, to keep superposition alive
Typical coherence time
~100 µsMicroseconds before environment collapses the state; thousands of operations must finish faster
ISRO quantum focus
2023Announced quantum communication and computing roadmap for secure satellite links

Why so few qubits? A spinning ₹2 coin in your hand is easy to protect. A real qubit is an electron or a tiny circuit smaller than a mosquito's knee. Heat, vibration, even a stray radio wave from a nearby phone acts like a impatient child slapping the table: the spin stops, superposition dies, and your quantum advantage vanishes. Engineers use dilution refrigerators — machines that cost more than a luxury apartment — to chill qubits to near absolute zero. Even then, the spinning lasts only microseconds.

So while your laptop has billions of bits doing billions of operations, blithely copyable and robust, a quantum computer tends a handful of spinning, fragile states like a Jenga tower in an earthquake. The miracle is that for specific puzzles — breaking certain codes, simulating molecules for new medicines, optimising monsoon crop schedules — those few spinning coins can carry enough parallel possibility to outperform armies of flat ones.

In the next chapter, we will see exactly how: a delivery driver in New Delhi faces sixteen possible routes, and a quantum computer tests them all as one spinning decision.

Chapter 02

The New Delhi and Mumbai Problem: Why Superposition Helps

Every morning, hundreds of trains leave New Delhi station bound for Mumbai. Some take the northern track through Kota and Surat; others swing south via Nagpur and Nasik. The fastest route changes daily — maybe a delayed freight train blocks one line, or monsoon water sits on the tracks after overnight rain. If you wanted to build an app that always picks the fastest route, your computer would need to check both lines.

A normal computer does this the way you might: look at Route A, write down the travel time, then look at Route B and compare. Two separate checks. But a quantum computer offers something strange. It can prepare a single qubit so that it simultaneously carries information about checking Route A and checking Route B. Then, through a quantum algorithm, it can extract which route is faster without running two full checks. This is not magic, and it is not the computer literally sending tiny scouts down both tracks. It is a mathematical consequence of a state called superposition — the ability of a quantum system to exist in multiple conditions at once until measured.

This chapter works through exactly what that means, where the speed-up comes from, and why larger problems make the advantage explode.

Worked example

0 / 4 steps shown

The One-Qubit Route Checker

Suppose Route A takes 320 minutes today and Route B takes 280 minutes. We encode Route A as |0> and Route B as |1>. We want a procedure whose final measurement tells us 'Route B is faster' without storing both numbers separately. We use a simplified two-step quantum operation.

Step 1: Start with qubit |0>. Create equal superposition: |psi> = (1/sqrt(2))|0> + (1/sqrt(2))|1>.

Step 2: Apply a phase flip that makes the slower route negative. Route A is slower, so its amplitude becomes negative: |psi> = (-1/sqrt(2))|0> + (1/sqrt(2))|1>.

Step 3: Apply an operation that adds the two amplitudes together and checks which sign wins. In this simplified model, this is like seeing whether the combined 'vote' leans toward + or -.

What does measurement reveal, and how many separate route simulations did we run?

How superposition scales up

  1. Step 011 qubit2 states

    Superposition covers |0> and |1>. You can represent two possibilities at once.

  2. Step 022 qubits4 states

    Superposition covers |00>, |01>, |10>, |11>. Four train-segment choices simultaneously.

  3. Step 033 qubits8 states

    Eight combinations. Amplitudes exist for all eight at once.

  4. Step 0410 qubits1,024 states

    Over 1,000 route combinations in one superposed state. One quantum operation touches all 1,024 branches.

  5. Step 0550 qubits~10^15 states

    More combinations than some supercomputers can track classically. This is where quantum advantage appears for structured problems.

Predict first

A quantum computer has 4 qubits in full superposition. A classical computer needs one step per combination to evaluate a routing choice. About how many combinations can the quantum state's single operation touch simultaneously?

The New Delhi to Mumbai problem is deliberately small so you can trace each step. Real quantum advantage appears when the number of routes, variables, or constraints grows far beyond what any classical computer can exhaust. ISRO satellite planners, for example, must choose paths through orbital mechanics where tiny changes early create huge differences later. A quantum approach would not simulate every orbit separately; it would encode the space of possibilities in superposition and use interference to find valid trajectories faster.

The catch — and there is always a catch — is that measurement destroys superposition. The qubit collapses to one answer. You cannot peek halfway through to see how all branches are doing. The algorithm must be designed so that the mathematics of interference steers the measurement toward the correct result. That design is hard, which is why quantum computers are not yet better at everything. But for problems with structure that matches quantum mechanics — chemistry simulations, certain optimization puzzles, code-breaking number theory — the superposition advantage is why researchers keep building colder, bigger quantum chips inside labs across India and the world.

Chapter 03

Entangled Cricket Balls: Correlation Without Messages

Picture two cricket balls coming out of the same factory in Meerut. The workers know that every pair is special: one ball is 5 grams heavier than standard, the other is 5 grams lighter. But the balls are painted identically, and no label tells you which is which. You pack one ball and send it to a friend in Mumbai; you keep the other in New Delhi. When you finally weigh your ball and find it is heavy, you instantly know your friend's ball is light. But did your ball "send a message" to Mumbai? No. The factory set the correlation long ago.

Now imagine something stranger. In the quantum world, two entangled particles are not merely "one heavy, one light" from the start. Each particle is in a fuzzy superposition, behaving as if it is equally likely to be either state until measured. Yet their results remain perfectly correlated even across vast distances. This is quantum entanglement. It puzzled Einstein so much that he called it "spooky action at a distance." But we now know it is not spooky messages flying through space — it is a deeper kind of correlation built into how quantum systems work.

Worked example

0 / 5 steps shown

The Bangalore-Chennai Coin Flip

You and a friend each receive one qubit from an entangled pair generated in Bengaluru. You travel to Chennai; your friend stays in Bengaluru. You both agreed to measure your qubits at exactly 11:00 AM. When you measure, your qubit shows 1. Instantly, you know your friend's qubit will also show 1. Did you just send the message "1" faster than light?

Try it

You have 1000 entangled qubit pairs. You measure one qubit from each pair and get a random string: 0, 1, 1, 0, 1, 0... Your friend in another city measures the matching qubits. Without any phone call, email, or other communication, can your friend figure out which of your bits were 0 and which were 1?

Chapter 04

Waves on a Pond: Understanding Quantum Interference

Imagine you toss a small pebble into a still village pond. A circle of ripples spreads outward, each bump followed by a dip. Now toss a second pebble a little distance away. Where the ripples from both pebbles reach the same spot, something remarkable happens. If two crests arrive together, the water jumps higher than either ripple alone could make it. But if a crest from one pebble meets a trough from the other, the water almost flattens out, as if nothing happened at all. This meeting and mixing of waves is called interference.

In a quantum computer, the answers to a calculation do not travel as solid objects. They travel as probability waves — mathematical patterns that describe how likely each answer is. When a quantum algorithm runs, it sends many possible answers forward at the same time, all in a state called superposition. These answers are not separate coins spinning on a table; they are overlapping waves moving through the quantum circuit. The trick that makes quantum computing powerful is that these waves can interfere with one another, just like ripples on a pond. The algorithm is designed so that wrong answers cancel each other out, while correct answers reinforce each other. Without interference, a quantum computer would be no more useful than a very expensive random number generator.

Worked example

0 / 5 steps shown

The Two-Slit Pond: Numbers That Do Not Add Normally

A quantum particle has two paths to reach a detector. By ordinary probability, each path alone would give the particle a 30% chance of arriving. What happens when both paths are open and the particle can take both at once?

TableProbability vs quantum interference: how two 30% paths behave
SituationWhat you addResult for reaching detectorAnalogy
Classical: two separate buses30% + 30%60%More options, more chance
Quantum: waves 'in step'(sqrt(30%) + sqrt(30%))^2~100% (constructive)Two friends push a swing together, higher than one
Quantum: waves 'out of step'(sqrt(30%) - sqrt(30%))^20% (destructive)Two friends push opposite sides, swing stays still
Quantum: waves partly matchedComplex additionAny value from 0% to 100%Friends push at slightly wrong times, result is unpredictable without calculation

Chapter 05

The Polarisation Sunglasses Experiment: Seeing Superposition Collapse

Take out your phone, open a white screen in your photo gallery, and hold a pair of polarised sunglasses in front of it. Now slowly rotate the sunglasses. At one angle the screen looks bright; turn the glasses ninety degrees and the screen goes almost black. This is not a defect — it is polarised light doing exactly what quantum objects do when they are measured. The experiment costs nothing and needs no laboratory, yet it shows why quantum computers are so strange to work with.

Light from your phone screen vibrates in many directions at once: some waves wiggle horizontally, some vertically, and many at angles in between. A polarising filter is a gate that only lets through waves vibrating in one direction, just as a cricket net only lets through balls smaller than its mesh. When your sunglasses are aligned with the screen's polarisation, most light passes through. When they are crossed at ninety degrees, almost none does. This much is classical physics, understood for nearly two hundred years.

The quantum strangeness appears when we send just one photon — the smallest packet of light — through a filter. Before the filter, that single photon behaves as if it is in a superposition of every possible polarisation angle at once, just as a qubit can be in a blend of 0 and 1. The filter does not merely reveal what the photon 'already was.' It forces the photon to decide: pass through as horizontally polarised, or be absorbed. After the measurement, the photon has lost all memory of its previous superposition. This process is called the collapse of the wavefunction.

Try the polarisation experiment yourself

  1. Step 01Set up the sourceMaterials needed

    Phone with white screen, one pair of polarised sunglasses, a second polarised lens if available (some 3D glasses or another sunglasses).

  2. Step 02Check alignmentAngle 0°

    Hold sunglasses flat in front of the screen. Rotate until the screen is brightest. The filter axis now matches the dominant polarisation from the screen.

  3. Step 03Cross the filtersAngle 90°

    Rotate sunglasses ninety degrees. The screen should go nearly black. The filter now blocks the polarisation it just passed.

  4. Step 04Test the middleAngles 45° and 30°

    At forty-five degrees the screen looks dim — about half brightness. At thirty or sixty degrees it is dimmer still, but not black. The filter lets through a fraction set by the angle.

  5. Step 05Imagine one photonQuantum step

    A single photon at forty-five degrees has no 'halfway' outcome. It either passes (now horizontal) or is absorbed. The probability is fifty-fifty, but each individual photon collapses to one definite result.

Worked example

0 / 4 steps shown

What happens to a qubit measured at a slanted angle?

A qubit is prepared in a superposition that behaves like light polarised at 30° to horizontal. You measure it using a filter that only accepts horizontal polarisation (the '0' state). What is the probability of the qubit collapsing to 0, and what state is it in after measurement?

Predict first

You send a single photon polarised at 45° toward a horizontal filter. It passes. You immediately send that same photon toward a second filter that only accepts vertical polarisation (90°). What happens?

This destructive nature of measurement is why quantum programming feels so unnatural to classical programmers. If you have an ordinary bit, you can read it, copy it to another bit, read it again, and the bit stays unchanged. A qubit offers no such comfort. Any gate that copies a qubit perfectly is impossible by the no-cloning theorem, proved in 1982 by Wootters and Zurek and independently by Dieks. Any readout that gains information about a superposition collapses it in the process.

The sunglasses analogy is a model, not a perfect picture. Real photon polarisation is a continuous property, whereas a qubit has only two basis states — 0 and 1 — with superpositions built from those two. The angle on the sunglasses is a useful mental bridge, but a qubit's state lives on a sphere (the Bloch sphere), not a flat dial. Still, the core lesson carries over cleanly: measurement is an active process that forces a decision and erases the blend.

Terms from this chapter

Polarisation
The direction in which the electric field of a light wave vibrates. A filter can select one polarisation direction and block others.
Example: Polarised sunglasses block horizontally-reflected glare by selecting vertical polarisation.
Collapse of the wavefunction
The sudden change of a quantum system from a superposition of several possible states to a single definite state when a measurement is made.
Example: A qubit in superposition collapses to either 0 or 1 when read out.
Measurement basis
The pair of definite states that a measurement forces the system to choose between. For a qubit, the usual basis is 0 and 1.
Example: A horizontal polarisation filter uses the H-V basis; a diagonal filter uses a rotated basis.
No-cloning theorem
A proven result that it is impossible to create an identical copy of an arbitrary unknown quantum state.
Example: You cannot photocopy a qubit the way you copy a classical bit.
Malus's Law
Classical rule stating that transmitted intensity through a polariser equals incoming intensity times the square of the cosine of the angle between light polarisation and filter axis.
Example: Light at 45° loses half its intensity, since cos(45°)^2 = 0.5.

Chapter 06

Classical Gates vs Quantum Gates: Why You Cannot Copy a Qubit

Think about your school register. If Riya is marked "Present," the teacher can photocopy that page and give it to the office, the principal, and the class captain. Every copy says the same thing. This is how ordinary computers work: information can be copied endlessly. A photograph, a phone number, a cricket score — copy, paste, share. Nothing is lost.

But quantum computers do not follow this rule. A qubit can sit in a superposition — partly 0 and partly 1, like a spinning coin still in the air. You might think, "Just read it and copy the result." Here is the problem: measuring the qubit forces it to choose 0 or 1, destroying the delicate balance of probabilities that made it useful. There is no machine inside a quantum computer that can take one unknown qubit and produce two identical copies without breaking the superposition. Physicists call this the no-cloning theorem. It is not engineering laziness; it is a mathematical law of quantum mechanics.

This chapter compares the logic gates you find in laptops and phones with the gates inside a quantum processor. We will see why a quantum gate is more like a rotating mirror than a simple on-off switch, and why the inability to copy qubits forces programmers to invent entirely new kinds of algorithms.

TableClassical gates versus quantum gates
FeatureClassical gate (e.g. NOT)Quantum gate (e.g. X, Hadamard)
What it acts onA definite bit: 0 or 1The amplitudes of a qubit in superposition
Simple pictureA light switch: flips between ON and OFFA rotating mirror: tilts and mixes probability directions
Can you copy the output?Yes. A NOT result can be wired to many outputsNo. The no-cloning theorem forbids copying an unknown qubit
Information after operationOriginal bit can stay or be overwrittenOriginal qubit is transformed; inputs and outputs are equal in number
ReversibilityMost classical gates lose information (e.g. AND: 00, 01, 10 all give 0)Every quantum gate is reversible; the input can be recovered from the output
Speed claimRuns at clock speed of processor (GHz)Not about speed; about paths that classical bits cannot take

Let us look at a classical NOT gate first. Feed it a 0, you get a 1. Feed it a 1, you get a 0. If you want three copies of the output, you split the wire or store the bit in three registers. The information is trivial to duplicate because the bit is always definite — there is no hidden state to destroy.

A quantum NOT gate, usually called the X gate, does something richer. If a qubit is in the state |0> or |1>, X swaps them, just like classical NOT. But if the qubit is in superposition — say, 70% |0> and 30% |1> — X swaps those weights: it becomes 70% |1> and 30% |0>. The gate does not choose 0 or 1; it reshuffles the probability recipe.

More interesting is the Hadamard gate, which has no classical cousin. Send a definite |0> through a Hadamard gate, and the output is an equal superposition: 50% |0> and 50% |1>, written |0> + |1> (with normalisation). Send |1> through, and you get |0> - |1>, the minus sign being crucial because it creates interference later. The Hadamard gate tilts the qubit from a definite direction to a balanced, face-up position — like flicking a coin so it spins perfectly vertical. You cannot build this with ordinary on-off switches.

Worked example

0 / 5 steps shown

Why copying fails: the cloning attempt on a superposition

Suppose you have one unknown qubit in the state |ψ> = a|0> + b|1>, where a and b are hidden numbers (amplitudes) with a^2 + b^2 = 1. You also have a second qubit prepared as |0>. Design a quantum gate that outputs two copies of |ψ>: |ψ>|ψ> = (a|0> + b|1>)(a|0> + b|1>).

X|0> = |1>, X|1> = |0>
Quantum NOT gate: swaps basis states
H|0> = (|0> + |1>)/sqrt(2)
Hadamard gate: creates equal superposition from |0>
|ψ1>|ψ2> = ?
No-cloning: there is no valid quantum operation that produces |ψ>|ψ> from |ψ>|0> for arbitrary |ψ>
Classical fan-out
UnlimitedA single bit can drive thousands of gates in parallel — this is how a broadcast works
Quantum fan-out
ZeroAn unknown qubit cannot be duplicated for parallel processing without measurement
Consequence
Algorithm redesignShor's and Grover's algorithms never clone an unknown qubit; they use interference instead

Try it

A student says: "I will measure my superposed qubit to get 0 or 1, then prepare two fresh qubits in that state. Now I have two copies." Does this beat the no-cloning theorem?

Chapter 07

ISRO and the Monsoon: Where Quantum Computers Actually Help

Imagine you are watching the monsoon clouds roll in over Kerala in June. Will the rain reach Punjab by July? How much? For how many days? Farmers, dam managers, city planners — millions of people need this answer. Today, India's meteorologists run some of the largest classical supercomputers in the country, crunching numbers day and night. Yet the monsoon remains stubbornly hard to predict. The problem is not laziness or bad data. It is that every raindrop, every gust of wind, every shift in temperature is connected to countless others. Tracking all these connections with perfect accuracy would need more classical computing power than exists on Earth.

This is where quantum computing enters the conversation — not as magic, but as a specialised tool for specialised headaches. In this chapter we will see where Indian scientists are genuinely exploring quantum ideas, why the monsoon is so resistant to prediction, and why you should not expect a quantum phone in your pocket next year.

Let us start with the work happening today. ISRO and Indian research institutes have been testing quantum communication between ground stations and satellites. Why satellites? Because a fibre-optic cable loses quantum signals after roughly 100 kilometres — the photons simply get absorbed or scattered. A satellite can beam entangled photons down through empty space, creating secure links between cities thousands of kilometres apart. Quantum key distribution uses the no-cloning theorem we met in Chapter 6: any eavesdropper trying to intercept the key would disturb the quantum state and reveal themselves. This is not science fiction. ISRO's Quantum Experiments using Satellite Technology (QuEST) programme and related projects have demonstrated entanglement distribution over hundreds of kilometres. The mathematics of quantum communication and quantum computing share the same roots — superposition, entanglement, measurement — so advances in one area teach engineers about the other.

Now the monsoon. A classical supercomputer simulates weather by dividing the atmosphere into millions of grid cells and approximating how each cell interacts with its neighbours. The smaller you make the cells, the more accurate the model — but the computing time rises brutally. Capturing the quantum behaviour of water molecules, aerosols, and light scattering inside clouds is simply impossible at large scales today. A full quantum simulation of even a tiny cloud is beyond us. But quantum computers are naturally good at simulating other quantum systems. A molecule of a new solar-cell material, or the electron transport in a better battery, behaves quantum mechanically. A classical computer must track exponential numbers of combinations. A quantum computer, using superposition and interference, can sometimes explore these combinations more directly. This is why pharmaceutical and materials companies worldwide — including Indian ones — watch quantum computing closely.

Indian quantum milestones and the road ahead

  1. 2018
    QuEST programme launch ISRO initiates Quantum Experiments using Satellite Technology, funding ground-based and satellite quantum communication research
  2. 2020
    Entanglement over 300 km Indian researchers demonstrate satellite-based distribution of entangled photon pairs, a step toward secure national quantum networks
  3. 2023
    National Quantum Mission Government of India commits ₹6,000 crore over eight years for quantum technologies in computing, communication, sensing, and materials
  4. 2025
    Small-scale simulators Indian institutes run quantum simulators with tens of qubits, testing algorithms for molecular and materials problems — still far from monsoon-scale
  5. 2030s
    Error-corrected era (projected) If hardware improves, first practical applications may appear in drug design, catalyst discovery, and specialised cryptography — not general weather prediction

Worked example

0 / 5 steps shown

Why the monsoon explodes classical computers: a toy model

Suppose a simple weather model tracks whether each of 40 grid cells across India is 'rainy' or 'dry' today. The model must consider how every cell's state connects to every other cell's state tomorrow. How many possible combined states must a classical computer track?

Predict first

The National Quantum Mission aims to build an intermediate-scale quantum computer in India. Before reading further, which application do you think researchers are MOST likely to achieve first?

The honest picture, then, is mixed but exciting. Indian scientists are not selling fantasy. They are building quantum communication networks that could protect financial and defence data. They are joining global efforts to simulate molecules for cleaner energy. They are training a generation of engineers who understand that quantum mechanics is not just theory in a textbook — it is a toolbox for real problems. The monsoon will stay unpredictable for years. But the tools we build trying to understand it, and the quantum insights we gain along the way, may transform how India makes solar panels, stores power, and secures its data. The impossible coin of the earlier chapters is slowly becoming a possible tool — not because the physics changed, but because patient engineers learned to work with it.

Keep this

What to remember

  • ISRO and Indian institutes use quantum communication for secure satellite links; eavesdropping is detected because entanglement cannot be cloned secretly
  • Monsoon prediction overwhelms classical computers due to exponential growth in combinations; quantum computers offer no quick fix yet
  • Quantum computers excel at simulating other quantum systems, such as new materials and molecules, because they share the same mathematical language
  • Today's devices have tens to low hundreds of noisy physical qubits; useful error-corrected quantum computing likely needs thousands to millions
  • Quantum computers are specialised co-processors for specific hard problems, not replacements for laptops or phones; beware headlines claiming otherwise

Chapter 08

Check Yourself, and What Comes Next

You have spent this lesson with coins that spin, cricket balls that match without talking, waves on a pond, and sunglasses that force a choice. Those stories were not magic tricks. They were simplified models — tools to help you picture what qubits, superposition, entanglement, measurement and interference really do. Now it is time to check what stuck. The questions below pull from every chapter. Some are quick; others ask you to trace a whole chain of reasoning. Do not worry if a question feels tricky — even the physicists who built quantum theory argued for years about what the mathematics truly meant. Treat this as a map: the wrong answers show you where to look again, and the right answers show you what you now own.

Quick check

Check Yourself: The Impossible Coin

6 questions · answer what you can, then check. Getting one wrong is useful.

  1. Q1You flip a ₹2 coin and catch it spinning in the air. Before it lands, is it a better model for a classical bit or a quantum qubit?
  2. Q2Two cricket balls are entangled so that their colours always match when measured. Can ISRO use this to send an instant weather report from Sriharikota to Delhi with no time delay?
  3. Q3A newspaper headline reads: 'Quantum computers are faster because they test every answer at once.' What is wrong with this picture?
  4. Q4Why can you not make an exact photocopy of an unknown qubit state?
  5. Q5In the pond-wave model for Grover's search, how does the quantum computer find the marked spot faster?
  6. Q6You put on polarisation sunglasses that only let through vertical light. Before the glasses, a photon was in a diagonal superposition. What happens?

Worked example

0 / 5 steps shown

Tracing a Two-Qubit Interference Pattern

A quantum search circuit has two qubits in equal superposition over four states: |00>, |01>, |10>, |11>. The correct answer is |11>. After one Grover-style reflection, the amplitude of |11> becomes 3 times its starting size, while every wrong state's amplitude flips sign but keeps the same magnitude. Why does a second reflection make the wrong answers cancel even more?

If you answered most questions correctly, you now hold a solid stepping-stone picture of quantum computing: not every technical detail, but the true shape of why quantum mechanics offers computational possibilities that classical machines do not. You understand that superposition is not parallel hidden answers, that entanglement is correlation without control, that measurement is irreversible collapse, and that interference is the sculptor of probability. You also know that quantum gates are reversible and that copying is forbidden. These five ideas — superposition, entanglement, measurement, interference, and the no-cloning rule — form the foundation every expert builds on. What comes next is learning to move the building blocks yourself.

Reflect

This stays on this page only. It isn’t saved or sent anywhere.

Keep this

The Whole Lesson in Twelve Steps

  • A qubit is not a hidden 0 or 1; superposition is a real blended state that can be tilted and rotated.
  • A spinning coin in the air is a useful everyday model for superposition, but it is still a model — real qubits live inside atoms, photons or superconducting circuits.
  • Entanglement links qubits so that their measurement outcomes correlate, even when far apart, but it cannot send instant messages because the outcomes are random until compared classically.
  • Measurement collapses a superposition into a definite outcome; before measurement, only probabilities (actually squared amplitudes) can be predicted.
  • Interference means quantum amplitudes can add or cancel; quantum algorithms sculpt this interference so that correct answers grow and wrong ones shrink.
  • The no-cloning theorem says an unknown qubit state cannot be copied exactly; this is a mathematical law, not an engineering difficulty.
  • Classical gates like AND and OR are irreversible; quantum gates must be reversible unitary operations, which is why copying is impossible.
  • Grover's search shows a real speedup: finding one marked item in N possibilities takes about √N steps instead of N, using repeated reflection and interference.
  • Quantum computers do not 'try every answer at once' in a way you can read out; if they did, the no-cloning theorem and measurement collapse would make that useless.
  • ISRO, weather modelling, drug design and cryptography are promising application areas, but today's quantum hardware is still noisy and small.
  • Polarisation sunglasses, pond waves and spinning coins are simplified models — helpful for intuition, but they break down if pushed too far.
  • The next depth, 'Apply,' will teach you to read quantum circuit diagrams, use bra-ket notation for calculations, and run simplified simulations of two-qubit algorithms.

Where this comes from

Sources

End of Understand

What you just read

  • Explain how qubits use superposition to represent more states than classical bits.
  • Describe why quantum entanglement lets qubits share correlated information across distances.
  • Identify the difference between quantum interference and classical probability.
  • Recognize the measurement problem: observing a qubit collapses its superposition into a definite state.
  • Distinguish between quantum gates and classical logic gates, including common mix-ups about copying qubits.

Want to save topics or ask for new ones? Invited families can connect a learning device. Everything here stays free to read without signing in.

Revision 1 · release generation-b60fa5cc-02e7-4ab0-9081-c36156ee40fe · reviewed 23/09/2026