In short

The quantum-computing track on padho-wiki has 211 chapters across 21 parts. It begins with why the field exists (Parts 1–3), builds the computational model of qubits and gates (Parts 4–7), derives the classic algorithms — Deutsch, Simon, Grover, Shor (Parts 8–12), then confronts the real world of noise, error correction, near-term algorithms, cryptography, hardware, and frontiers (Parts 13–21). The only mathematical prerequisites are complex numbers, 2×2 and 4×4 matrices, and basic probability. You do not need prior quantum mechanics, a physics degree, or any installed software. Read it all in order, or pick one of the three paths described below and skim the rest.

Written for a reader who wants the whole map before they enter the forest.

A 211-chapter track is long. If you are standing at chapter 3 and looking ahead, the honest question is: is this going to turn into an endless parade of definitions, or does it go somewhere? This article is the one-page answer. It shows you the shape of the journey before you start walking it, names the four big arcs the 21 parts group into, tells you what you need and what you do not, and offers three different routes depending on what you actually want from quantum computing.

Treat this page as a reference. Come back to it if you lose track of where you are — every article in the track links back here. If you are a linear reader, click "Feynman's Argument" at the bottom and start. If you are a reader who wants to dive straight into Shor, the "Algorithm hunters" path below tells you exactly which chapters you can skip.

The promise, before the map

After 211 chapters, you will be able to do four things. This is the concrete return on the time investment.

You will be able to read a research paper on Shor's algorithm — follow every line, know why every step is there, and notice when an author is glossing over a subtlety. Quantum algorithms research is not a closed club. Once you have the language and the machinery, the frontier papers are surprisingly readable.

You will be able to read an IBM or Google circuit diagram and tell what it does — including the specific hardware constraints (native gates, connectivity, noise model) that shape real-world quantum programs. You will know why a circuit that looks identical on paper behaves differently on two different devices.

You will be able to derive an error-correcting code from first principles — the repetition code, the Shor code, the Steane code, and the surface code. The arithmetic of stabilizers is not hard; it just needs the foundations this track lays.

You will be able to build a simulator — a small Python program that takes a quantum circuit as input, tracks the 2^n amplitudes, applies gates as matrix multiplications, and samples measurement outcomes according to Born's rule. Five hundred lines of code. That is the entire stack of a NISQ-era research tool, and by chapter 60 you will have the knowledge to write it.

Those four capabilities are the concrete goals. Everything in the map below is aimed at one or more of them.

The shape of the journey — four narrative arcs

The 21 parts of this track are not a flat list. They group into four arcs, each with its own character.

Arc 1: Foundations (Parts 1–3)

The first three parts set up the vocabulary and the worldview before any serious computation happens.

By the end of Arc 1 you have the language of the field, but no algorithms yet.

Arc 2: The computational model (Parts 4–7)

Next, you build the machine itself, gate by gate.

By the end of Arc 2, you understand the model of computation itself. You can read any small circuit and compute what every qubit does at every step.

Arc 3: Algorithms (Parts 8–12)

Now the classic algorithms arrive in chronological and conceptual order.

By the end of Arc 3, the classic quantum algorithms are a reflex. You can derive Grover's algorithm on paper without looking. You can explain Shor's to someone else.

Arc 4: Beyond the ideal (Parts 13–21)

The last nine parts leave the Platonic world of perfect gates and unlimited qubits, and confront the real one.

Arc 4 is the longest, and most readers will dip into it selectively rather than reading it linearly. Error correction (Part 14) is the part you should read linearly if you read nothing else from Arc 4 — it is the part that decides whether the rest of the field becomes a useful engineering reality.

The 21 parts grouped into four narrative arcsA horizontal map of the 21 parts of the quantum-computing track, grouped into four arcs shown as stacked ribbons. Arc 1 (Parts 1-3) in red/accent covers setting the stage. Arc 2 (Parts 4-7) is the computational model. Arc 3 (Parts 8-12) is algorithms. Arc 4 (Parts 13-21) is beyond the ideal. Each part is a labelled box showing its chapter count.Arc 1 — FoundationsArc 2 — Computational modelArc 3 — AlgorithmsArc 4 — Beyond the idealP1Setting3 chP2Dirac6 chP3QM-CS12 chP4Qubit10 chP5Multi-Q10 chP6Circuits8 chP7Protocols8 chP8Early8 chP9QFT8 chP10Shor10 chP11Grover10P12Complx10P13P14P15P16P17P18you are hereWhat each arc gives youArc 1the language of the field (kets, tensors, postulates)Arc 2the computational model (qubits, gates, circuits)Arc 3the classic algorithms (Deutsch → Shor → Grover)Arc 4the real world (noise, QEC, hardware, crypto)chapters 1–18, then 19–60, then 61–130, then 131–211.Depth profileArc 1Arc 2Arc 3Arc 4hardeasyArc 3 is the peakChapter budget21 ch36 ch46 ch108 ch (Arc 4)211 chapters total, one article per evening ≈ seven months of reading.
The 21 parts of the track, grouped into four narrative arcs. The depth profile (top right) shows that difficulty peaks in Arc 3 (algorithms) and plateaus across Arc 4 (the real-world stack). The chapter budget (bottom) shows where the time actually goes: more than half the chapters are in Arc 4.

Prerequisites — a short, honest list

You need three things from mathematics. That is all.

Complex numbers. You need to know what a complex number is (a + bi with i^2 = -1), what its modulus |z| = \sqrt{a^2 + b^2} is, what its complex conjugate \bar{z} = a - bi is, and Euler's formula e^{i\theta} = \cos\theta + i\sin\theta. If you have met complex numbers in a Class 11 or Class 12 chapter, you have enough. If not, read the introduction to complex numbers before continuing; the algebra in this track uses them constantly.

Vectors and matrices. You need 2-dimensional column vectors (single-qubit states live here), 4-dimensional column vectors (two-qubit states), and occasionally 8-dimensional ones. You need to multiply a 2\times 2 matrix by a column vector, multiply two 2 \times 2 matrices, compute transposes, and take the inner product of two vectors (a row times a column). You do not need to invert matrices by hand, compute determinants of anything larger than 2 \times 2, or diagonalise anything bigger than 4 \times 4.

Basic probability. You know what P(\text{heads}) = 0.5 means. You know that probabilities of mutually exclusive events add, and probabilities of independent events multiply. That is enough for the first half of the track. For the second half you will want conditional probability and Bayes' rule, which you can pick up on the fly.

That is the floor. Anything beyond that — group theory, Fourier analysis, algebraic geometry, quantum mechanics — is either not needed or will be built up from scratch inside the track.

A reader profile — Rohan's shortest path

Rohan is a final-year B.Tech student at IIT Bombay. He knows Python and has taken one linear algebra course. He has never seen Dirac notation and has never touched quantum mechanics. He has a quantum-computing internship starting in two months, and he wants to be able to read the team's code and the papers they reference.

The question. What is the minimum chapter list Rohan needs?

A five-chapter answer.

  1. Chapter 1 — What is Quantum Computing? (grounds the hype-calibration)
  2. Chapter 2 — Feynman's Argument (the 2^n scaling story)
  3. Chapter 4 — Why Dirac Notation (the symbolic language)
  4. Chapter 14 — The Bloch Sphere (the picture he will refer to hundreds of times)
  5. Chapter 23 — The Hadamard Gate (the single most important gate, the opener of almost every algorithm)

If he has a weekend: add chapters 5 (tensor products), 30 (Pauli gates), and 45 (CNOT gate). That is eight chapters and he can follow almost any introductory circuit diagram.

What he skips: everything in Parts 12, 18, 19, 20 unless his internship is specifically on those areas. The going-deeper sections of every chapter. The historical context.

The cost: a serious long afternoon for each chapter. Five chapters: one week. Eight chapters: two. That is the realistic entry cost of this field for a reader with Rohan's background, and it is well under a month.

What you do NOT need

Three things people think they need, but do not.

Prior quantum mechanics. This track builds quantum mechanics from scratch in Part 3. If you took a physics course and remember the postulates, great — Part 3 will be review. If you did not, you will learn it in 12 chapters, from the ground up, in the minimum-sufficient form for a computer scientist. No partial differential equations, no Hermite polynomials, no hydrogen atom. The postulates are short: states are unit vectors, evolution is unitary, measurement is projective, composite systems are tensor products. That is what Part 3 teaches.

Qiskit, Cirq, PennyLane, or any installed software. Part 6 introduces Qiskit and walks through installation (inside a Docker container or a Colab notebook, for readers without Python on their phone). Before Part 6, you need a pencil, paper, and the web page. Every circuit diagram, every matrix calculation, every algorithm — worked out by hand. This is deliberate. The intuition only lands if you run the math yourself at least once.

A physics degree. The field is genuinely half physics, half computer science, and this track is written for the CS half. There is no Lagrangian mechanics, no field theory, no Schrödinger equation in its partial-differential form. The full physics version of quantum mechanics is much richer than the subset this track uses, and readers who want it should pair this track with a standard textbook like Griffiths or Sakurai. But for quantum computing specifically, the CS subset is enough.

How to use this track — three paths

The 211 chapters can be walked in more than one order.

Path 1 — The linear reader

Start at chapter 1, finish at chapter 211. One article per evening, seven months. This is the recommended path if you are not in a hurry and want the deep version. Each chapter is designed to be a single sitting; you should never have to read two articles to understand the third.

This path takes you through every arc in order. You will arrive at Shor's algorithm (Part 10) having derived the QFT (Part 9) from scratch. You will arrive at error correction (Part 14) having seen why entanglement matters (Part 5). The linear path maximises retention because the story builds.

Path 2 — The algorithm hunter

You want to understand Shor and Grover as quickly as possible. The shortest honest path:

That is about 80 chapters for the algorithm core. You can skip Parts 7, 8, 12 on a first pass and return if you need them.

Path 3 — The hardware engineer

You want to know how real quantum computers are built. After the foundations (Parts 1–4), jump directly to:

This is about 80 chapters with a hardware focus. You will skip most of the algorithmic content and pick up the specific algorithms (Shor, Grover) later only if they become relevant to your engineering work.

Path 4 — The cryptographer

You care about the migration to post-quantum cryptography. After Parts 1–4:

Around 50 chapters and you will know what cryptographic systems quantum computers threaten, what they do not, what post-quantum cryptography replaces them with, and what the India-specific timeline looks like for UIDAI and NPCI.

Three reader paths through the 21 partsA branching diagram. Start node Part 1-4 (foundations). Three paths branch from there: Linear (covers all 21 parts sequentially), Algorithm hunter (goes to parts 5, 6, 9, 10, 11), and Hardware engineer (goes to parts 13, 14, 18, 19). Each path is coloured differently and labelled.Start: Parts 1–4chapters 1–34Linear readerall 21 parts in order · ~7 months · maximum retentionAlgorithm hunterParts 5, 6, 9, 10, 11 · focus on Shor and Grover · ~80 chHardware engineerParts 13, 14, 18, 19 · noise, QEC, platforms · ~80 chmilestones at parts 6, 10, 14, 18, 21Pick a path based on what you want — each is a valid route.
The three reader paths, branching from the common foundation of Parts 1–4. Any of them is a legitimate way through; the linear path is recommended if you have seven months, the shorter paths are better if you are aiming at a specific goal.

The time budget — honestly

One article per evening is the design target. Each chapter is written to be completable in roughly 60–90 minutes, including the worked examples. Multiply by 211 and you get about seven months of reading at a weeknight pace, or three to four months if you are reading both weeknights and weekends.

Most readers will not read all 211 chapters. The point is that every chapter stands alone — you can dip in, read one, and leave. The article that teaches the Hadamard gate (chapter 23) does not assume you have read chapter 17. It links backward where it needs to, and it gives you what you need inline where the link is not practical.

A smaller, more realistic target for a student with one or two other subjects competing for time: 3–5 articles per week, for a full academic year. That gets you through the foundations and the algorithms with time to spare, and is probably the path most readers actually take.

If you are using the track to prepare for JEE Advanced — not directly, since QC is not on the syllabus, but as cover for the Class 12 physics and math you want stronger — the early parts (Arcs 1 and 2) are the ones to read. Complex numbers, vectors, probability all get a rigorous workout.

Common confusions about the track

Going deeper

If you have absorbed the four-arc structure, the three reader paths, and the prerequisites list — you have enough to pick a direction and start. What follows is meta-context: what this track does not cover, how it compares to the other major quantum-computing resources, and the pedagogical choices behind its design. Read this before you start if you want the full orientation; skip it if you are impatient and just want to begin.

What this track does not cover

The field of quantum is bigger than the field of quantum computing, and this track is narrow. It does not cover:

How this track compares to other resources

There are four other major quantum-computing resources that a serious reader will eventually encounter.

Nielsen and ChuangQuantum Computation and Quantum Information, Cambridge, 2010. The bible of the field. Rigorous, comprehensive, 700 pages. If this track is a walking tour, N&C is the definitive atlas. Read it after Part 6 as a companion. Not suitable as a first introduction unless you already have a strong math background.

John Preskill's Caltech lecture notes — freely online, graduate-level. Deep, elegant, demanding. Best for readers who have finished this track and want the research-level version. Preskill's chapter on quantum error correction is particularly good and complements Part 14.

The Qiskit textbook (online) — accessible, code-centric, IBM-produced. Excellent hands-on companion; weaker on the mathematical foundations than either this track or N&C. Read Part 6 of this track in parallel with the Qiskit textbook's introduction.

IBM Quantum Learning portal — interactive, modular, focused on Qiskit. Good for picking up a specific skill quickly. Not a substitute for a structured track.

This track is positioned between the Qiskit textbook (too code-centric, not enough math) and Nielsen-and-Chuang (too comprehensive for a first pass). The closest comparable in approach is Preskill, but written for a younger and less-prepared audience.

The pedagogical philosophy

Three design decisions are worth naming.

History first, postulates second, gates third. This track does not start with the postulates of quantum mechanics. It starts with a walk-through of why the postulates are what they are — Feynman's argument, the hype-calibration, and a concrete example (factoring 15) before any formal framework. The intent is that by the time Part 3 arrives with the postulates, the reader already has a picture in their head that the postulates are simply codifying. Tall and Vinner's research on concept image versus concept definition motivates this choice: students who build a concept image first absorb the formal definition more successfully.

Shor before Grover, despite Grover being easier. The standard textbook ordering is "Grover first because it is simpler, Shor second because it is harder." This track inverts that. The reason: Shor is structurally more illustrative. It shows why quantum matters — the exponential speedup from exploiting periodicity — in a way that Grover's quadratic speedup does not. A reader who has seen Shor first understands what "quantum advantage" actually means, and Grover becomes a much more comprehensible story afterwards. The cost is that Shor is harder; the mitigation is the eight chapters of Part 9 on the QFT that prepare you for it.

Chapters are one article each, not one section each. Some tracks break their material into many short pieces (the Qiskit textbook) or a few long ones (N&C). This track sits in between: each chapter is one complete idea, done to the level the gold-standard article sets. A chapter is not a paragraph of definition; it is a full exposition with a hook, two worked examples, common confusions, and a going-deeper layer. This is slower per chapter but produces readers who understand rather than recognise.

Contributing and feedback

If you find an error, a confusing passage, or a misconception this track perpetuates — the wiki is open to correction. Each article has an edit link (coming soon — at the moment, the feedback channel is email to the project lead). The most valuable feedback is: "I got stuck at this specific sentence because I did not know what X meant." That kind of report is what lets the track keep getting sharper.

Where this leads next

References

  1. Nielsen and Chuang, Quantum Computation and Quantum InformationCambridge University Press. The canonical QC textbook this track is built to complement.
  2. John Preskill, Lecture Notes on Quantum Computationtheory.caltech.edu/~preskill/ph229. Free, deep, and the first reference once N&C feels too light.
  3. Qiskit Textbook, Introduction to Quantum Computing — the circuit-and-simulator companion to any theory track.
  4. IBM Quantum Learning, Courses and paths — hands-on hardware access and guided modules.
  5. Wikipedia, Quantum computing — the one-page orientation to the field.
  6. Government of India, National Quantum Mission — the Indian policy and funding landscape for quantum work.