# What is a quantum computer, and is it really faster? Qubits explained

> A quantum computer uses qubits and interference to beat classical machines on a few problems, not all. How it works, what it is good at, and its state in 2026.

- URL: https://computese.com/quantum-computer-a-new-faster-type-of-computing/
- Author: Duong Quan Nguyen, CEO, Computese
- Published: 2024-06-29
- Updated: 2026-09-25
- Topics: Cloud

## In short
- A quantum computer stores information in qubits, described by amplitudes for 0 and 1, and computes by making those amplitudes interfere so wrong answers cancel. Measuring it returns ordinary bits: it is a different kind of computer, not a faster PC.
- It is faster only for problems with the right structure. Shor's algorithm factors numbers exponentially faster than known classical methods and simulating molecules is the strongest practical case, while Grover's search gains only a square root.
- Noise is the central problem. Error correction spreads one logical qubit over many physical ones, and Google's Willow chip showed in December 2024 that logical errors fall as the code grows: the first clear result below the surface code threshold.
- As of September 2026, error-corrected experiments use one hundred to a few hundred physical qubits, advantage claims cover specific scientific tasks, and IBM, Quantinuum and Google aim for large, useful machines by the end of the decade.
- Today's quantum computers do not break encryption. The practical step for IT teams is the move to post-quantum cryptography, whose first NIST standards were published in August 2024.

A quantum computer is a machine that processes information in qubits, which hold weighted combinations of 0 and 1, and computes by making those weights interfere so that wrong answers cancel and right ones add up. It is not faster across the board: only for specific problems, such as factoring large numbers and simulating molecules.

This guide explains bits and qubits, superposition, entanglement and interference in plain terms, why "faster" applies to only some problems, why noise is the real engineering problem, the four main kinds of hardware, and where the field stands in September 2026. For the view from an IT department, read [how quantum computing could transform IT](https://computese.com/how-quantum-computing-could-transform-it/); for how quantum programs are built from gates, see [quantum circuit design explained](https://computese.com/advancements-in-quantum-circuit-design/).

## What is a quantum computer?

A quantum computer is a processor whose basic parts, the qubits, follow the rules of quantum mechanics instead of the on-or-off logic of transistors. The idea goes back to the 1980s, when Richard Feynman and Yuri Manin suggested that hardware built on quantum effects [might simulate quantum systems more efficiently](https://learn.microsoft.com/en-us/azure/quantum/overview-understanding-quantum-computing) than conventional computers. In 1994 Peter Shor showed that such a machine could also factor large numbers far faster than any known classical method, and the field took off.

Two things about it are widely misunderstood. First, a quantum computer does not replace your servers. In cloud services such as Amazon Braket, a quantum processing unit (QPU) [works as a co-processor for ordinary CPUs](https://docs.aws.amazon.com/braket/latest/developerguide/what-is-braket.html), speeding up specific calculations inside a classical program. Second, its power does not come from trying every answer at once. It comes from a narrower trick, interference, which only helps with problems that have the right mathematical structure. The rest of this guide builds up to why.

## Bits versus qubits

A classical bit is 0 or 1. A [qubit](https://learn.microsoft.com/en-us/azure/quantum/concepts-the-qubit) is described by two numbers called amplitudes, one for 0 and one for 1. When you measure it, you get 0 or 1, with probabilities set by the squared size of each amplitude, and the qubit is left in the state you observed. Measurement is the only way to get information out, and it always hands back ordinary bits.

What changes is the bookkeeping in between. Describing n qubits takes 2ⁿ amplitudes, one for every possible pattern of bits. Microsoft's documentation gives a concrete example: a system of particles that can sit in 40 possible locations has 2⁴⁰ configurations, and writing down its quantum state on a classical computer takes 2⁴⁰ numbers, over 130 GB of memory. Each extra location doubles that. A quantum computer needs 40 qubits to hold the same state. This is why quantum computers are a natural fit for simulating quantum systems, and why simulating even a modest quantum computer on classical hardware soon becomes impossible.

The catch is that you cannot read those amplitudes. Measure 40 qubits and you get 40 bits. Everything useful has to happen before measurement, by steering the amplitudes so that the answer you want is the likely outcome.

## Superposition, entanglement and interference, in plain words

These three effects are the raw material of every quantum algorithm.

**Superposition.** A qubit with non-zero amplitudes for both 0 and 1 is in a superposition. It is not secretly one or the other, waiting to be discovered: until it is measured, both amplitudes take part in the calculation. One standard gate, the Hadamard gate, turns a qubit that starts at 0 into an equal superposition of 0 and 1.

**Entanglement.** Entangled qubits share one joint state that cannot be described qubit by qubit. The textbook example takes two gates: a [Hadamard gate followed by a CNOT](https://learn.microsoft.com/en-us/azure/quantum/concepts-circuits) turns two qubits that start at 00 into a state that, when measured, gives 00 half the time and 11 the other half, and never 01 or 10. Neither qubit has a value of its own, yet their results always agree. Algorithms use entanglement to build the correlations between qubits that a calculation needs.

**Interference.** This is the part popular explanations skip, and IBM calls it [the engine of quantum computing](https://www.ibm.com/think/topics/quantum-computing). Amplitudes behave like waves: they can be positive or negative (in general, complex numbers), so when an algorithm combines them, amplitudes that line up add together and amplitudes of opposite sign cancel. A quantum algorithm is a sequence of gates arranged so that, by the time you measure, the amplitudes for wrong answers have cancelled and the amplitude for the right answer has grown. Lov Grover described his 1996 search algorithm in exactly these terms: [by adjusting the phases of operations](https://arxiv.org/abs/quant-ph/9605043), successful computations reinforce each other.

An analogy that holds up is noise-cancelling headphones. They play a sound wave that is the mirror image of the incoming noise, and the two cancel. A quantum algorithm does the same with amplitudes, deliberately, for the wrong answers, while the waves for the right answer add up. The analogy stops at two points: amplitudes are not physical sound, and you never observe them directly, only the measurement results they make likely.

![Two waves travel from a small emitter toward a row of five slots. At four slots they arrive out of step and flatten into a line; at the middle slot they arrive in step and add into one tall orange wave.](https://computese.com/images/blog/quantum-computer-a-new-faster-type-of-computing/interference.c007a44ea6-1536.webp)

*Interference does the work: the algorithm is designed so that wrong answers cancel and the right one adds up.*

This explains the most common myth. "A quantum computer tries every answer in parallel" is half true: one gate per qubit puts a register into a superposition of every input. But measuring that register returns one input at random, which is no better than guessing. The speedup exists only when interference can concentrate the amplitude on the answer, and that is possible only for problems with structure an algorithm can exploit.

## How a quantum computer runs a program

A run on real hardware takes five steps; the figure at the top of this page splits the gate step into the three effects above.

1. **Prepare.** Every qubit is reset to 0.
2. **Apply gates.** Single-qubit gates create superpositions, two-qubit gates such as CNOT create entanglement, and the whole sequence, called a circuit, is designed so that interference favours the answer.
3. **Measure.** Each qubit returns 0 or 1.
4. **Repeat.** Because the outcome is probabilistic, the same circuit is [run many times](https://docs.aws.amazon.com/braket/latest/developerguide/braket-terms.html). Each run is a shot, and the number of shots is chosen for the accuracy you need.
5. **Post-process.** A classical computer turns the counts into a result. In hybrid algorithms, it also adjusts the circuit's parameters and sends it back for another round.

Steps 1 to 3 have to finish before the qubits lose their quantum state. That deadline is where the engineering difficulty begins, and it comes up again below.

## Is a quantum computer faster than a normal computer?

For most work, no. A [2023 analysis by Torsten Hoefler, Thomas Häner and Matthias Troyer](https://arxiv.org/abs/2307.00523), published in _Communications of the ACM_, makes the point plainly: each operation on a quantum computer is slower than the corresponding classical one, so classical computers are always faster on small problems. A quantum computer wins only past a crossover point, where an algorithm's reduction in the number of steps outweighs the slower steps. The useful question is not "is it faster" but "for which problems is the reduction big enough". These are the known answers.

### Factoring and discrete logarithms: Shor's algorithm

Shor's algorithm factors integers and computes discrete logarithms in [a number of steps that grows polynomially](https://arxiv.org/abs/quant-ph/9508027) with the number of digits, exponentially faster than the best known classical algorithm. Those two problems underpin RSA and elliptic-curve cryptography, which is why the result matters far beyond physics. It also needs a large, error-corrected machine, which does not exist yet; what that means for encryption, and how organizations are replacing RSA and elliptic-curve keys, is covered in our guide to [quantum computing in cybersecurity](https://computese.com/quantum-computing-in-cybersecurity-breakthrough/).

### Search: Grover's algorithm and its quadratic limit

Grover's algorithm finds a marked item among N unsorted items in about √N steps, where any classical method needs to check about N/2 items for an even chance of success. For a million entries, that is on the order of a thousand steps instead of half a million. It sounds large, but it is a quadratic speedup, and it cannot be improved much: [Bennett, Bernstein, Brassard and Vazirani proved](https://arxiv.org/abs/quant-ph/9701001) that no quantum algorithm searches an unstructured space in fewer than about √N steps, so Grover's algorithm is essentially optimal. Hoefler and colleagues estimate that, with slower quantum operations, a quadratic speedup on even a single floating-point operation per step would take several months to reach the crossover point. Their conclusion: quadratic speedups are not enough for practical advantage.

### Simulating molecules and materials

The strongest practical case is the one Feynman started with. Chemistry and materials are governed by quantum mechanics, and their classical description grows exponentially, as the 130 GB example shows. A [2017 study in _PNAS_](https://arxiv.org/abs/1605.03590) worked through the reaction mechanism of nitrogenase, the enzyme behind biological nitrogen fixation, and estimated that a fault-tolerant quantum computer could complete the calculation in reasonable time, error-correction overhead included. Hoefler and colleagues name chemistry and materials science as the most promising application of all.

### Benchmarks that are fast but not useful

Speed records usually come from benchmarks. In December 2024 Google reported that its Willow chip ran a random circuit sampling task [in under five minutes that would take one of the fastest supercomputers 10²⁵ years](https://blog.google/innovation-and-ai/technology/research/google-willow-quantum-chip/), while noting that the benchmark has no known real-world application. It proves the hardware does something classical machines cannot, not that it is faster at your workload.

### Why big data is a poor fit

Getting data in and out is slow. The same analysis estimates that even an optimistic future quantum computer would read classical data about 10,000 times more slowly than a classical chip available today. Any problem limited by data access, such as searching a large database, will be solved faster classically. In the authors' phrase, quantum computers suit "big compute" problems on small data.

### What quantum computers are good at, and what they are not

| Task                                             | Quantum fit                              | Why                                                                                  |
| ------------------------------------------------ | ---------------------------------------- | ------------------------------------------------------------------------------------ |
| Factoring and discrete logarithms (RSA, ECC)     | Strong, once machines are fault-tolerant | Shor's algorithm is exponentially faster than the best known classical method        |
| Simulating molecules and materials               | Strongest practical candidate            | Exponential speedup on small inputs; classical cost explodes with system size        |
| Unstructured search                              | Weak                                     | Grover's √N speedup is the proven ceiling, and too small to pay off in practice      |
| Database queries, analytics, anything data-heavy | Poor                                     | Loading classical data into qubits is far slower than on a classical chip            |
| Training large AI models                         | Poor with current algorithms             | Proposed speedups are mostly quadratic, and training is data-heavy                   |
| Monte Carlo, weather and fluid simulation        | Not with current algorithms              | Proposed speedups are quadratic; the 2023 analysis lists them among likely dead ends |
| Web servers, email, office software, games       | None                                     | The work is mostly input and output, and each quantum operation is slower            |

## Why noise is the hard part

Qubits are fragile. Contact with the environment, such as heat, vibration or stray electromagnetic fields, pushes a qubit out of its quantum state, a process called [decoherence](https://www.ibm.com/think/topics/quantum-computing). That is why superconducting processors are cooled to about a hundredth of a degree above absolute zero. Gates are imperfect too: [current quantum computers have error rates between 1% and 0.1%](https://learn.microsoft.com/en-us/azure/quantum/concepts-error-correction) per operation, so roughly one gate in every 100 to 1,000 goes wrong. Among the best published figures, Quantinuum reports [99.921% two-qubit gate fidelity](https://www.quantinuum.com/press-releases/quantinuum-announces-commercial-launch-of-new-helios-quantum-computer-that-offers-unprecedented-accuracy-to-enable-generative-quantum-ai-genqai) for its Helios system, launched in November 2025: fewer than one error per thousand two-qubit gates.

Useful algorithms need far better. A [2023 _Nature_ paper from a Harvard-led team](https://www.nature.com/articles/s41586-023-06927-3) puts the requirement for large-scale algorithms at gate error rates below about 10⁻¹⁰, one in ten billion, far below what any physical device is likely to reach on its own. John Preskill named the current stage in 2018: [noisy intermediate-scale quantum](https://quantum-journal.org/papers/q-2018-08-06-79/), or NISQ, machines in which noise limits the size of the circuits that run reliably. As of September 2026, Amazon's documentation still describes the industry as [in the NISQ era](https://docs.aws.amazon.com/braket/latest/developerguide/what-is-braket.html), with devices too noisy to run Shor's or Grover's algorithm as designed.

## How error correction turns many qubits into one logical qubit

Classical computers protect data by copying it. Quantum information [cannot be copied](https://learn.microsoft.com/en-us/azure/quantum/concepts-the-qubit) (the no-cloning theorem), and measuring a qubit destroys its superposition, so quantum error correction works differently. It spreads one qubit's worth of information across many physical qubits, whose joint state forms a logical qubit. Extra qubits repeatedly check parities between neighbours, which reveals whether and where an error happened without reading the data itself. Errors come in two kinds: bit flips, which swap 0 and 1 like a classical error, and phase flips, which change the sign of an amplitude and have no classical equivalent. A code has to catch both. The surface code, a two-dimensional grid of qubits, is one of the most promising designs.

The catch is the threshold. Every added qubit is another place for errors to happen, so a bigger code only helps if each physical qubit is good enough. Below that threshold, each step up in code size cuts the logical error rate exponentially; above it, a bigger code does not help.

In December 2024, Google Quantum AI published the first clear demonstration below threshold, in [_Nature_](https://www.nature.com/articles/s41586-024-08449-y). On its 105-qubit Willow processor, the team grew a surface code from distance 3 to 5 to 7 (grids of 3×3, 5×5 and 7×7 data qubits), and each step cut the logical error rate by a factor of 2.14. The distance-7 logical qubit used 101 physical qubits, had an error rate of 0.143% per round of error correction, and kept its information 2.4 times longer than the best physical qubit in it.

![A seven-by-seven grid of qubits on a chip, two hit by small error sparks, reports through arrows to a decoder box, which sends corrections back and keeps one large orange logical qubit intact.](https://computese.com/images/blog/quantum-computer-a-new-faster-type-of-computing/logical-qubit.40151f7be8-1536.webp)

*A logical qubit is a team effort: many imperfect qubits and a fast decoder keep one reliable qubit alive.*

Keep the limits in view. This was a quantum memory, one logical qubit being stored, not a computation across many. It took 101 physical qubits to make that one logical qubit, and the team found rare correlated errors, about once an hour, whose origin was not yet understood. Other groups have encoded more logical qubits with lighter codes: a Harvard-led team working with QuEra ran up to 48 logical qubits on 280 neutral atoms in 2023, using codes that detect rather than fully correct errors, and Quantinuum reports 48 error-corrected logical qubits on Helios. How circuits are laid out on the surface code is covered in our guide to [quantum circuit design](https://computese.com/advancements-in-quantum-circuit-design/).

## The research behind "a new, faster type of quantum computer"

The phrase "a new, faster type of quantum computer" comes from science-news coverage of two papers by Michael Fellner, Anette Messinger, Kilian Ender and Wolfgang Lechner, of the University of Innsbruck and Parity Quantum Computing GmbH: [_Universal Parity Quantum Computing_](https://journals.aps.org/prl/abstract/10.1103/PhysRevLett.129.180503) in _Physical Review Letters_ and a companion paper on [its applications](https://journals.aps.org/pra/abstract/10.1103/PhysRevA.106.042442) in _Physical Review A_, both published on October 27, 2022. They are a good example of what "faster" means in quantum research.

The problem they tackle is connectivity. On a chip, a qubit usually interacts only with its neighbours, so a gate between two distant qubits needs a chain of SWAP operations to bring their states together, and every extra gate is another chance for an error. In the parity scheme, each physical qubit records the parity of a pair of logical qubits, that is, whether the two agree. A controlled-phase gate between any two logical qubits then becomes a few single-qubit rotations, including one on the qubit that records their parity. The layout needs only nearest-neighbour interactions and no SWAP chains, and its built-in parity checks detect bit-flip errors. The companion paper shows that this reduces circuit depth, the number of sequential steps, for the quantum Fourier transform (the core of Shor's algorithm) and for quantum addition, while keeping the number of multi-qubit gates comparable.

![A triangle of small parity qubits sits above a row of five data qubits, joined to it by dashed lines. One orange parity qubit in the middle turns in place, with only short links between neighbours.](https://computese.com/images/blog/quantum-computer-a-new-faster-type-of-computing/parity.aa0423b2a3-1536.webp)

*Parity encoding trades extra qubits for fewer steps: a gate between distant qubits becomes local turns, with no long wires or swaps.*

"Faster", then, means fewer steps for particular circuits, not a quicker computer in general, and it has a price. In the full layout, n logical qubits need n(n+1)/2 physical qubits, so 10 logical qubits take 55, although the paper also describes lighter variants. The papers are theoretical proposals, designed for existing hardware (superconducting, neutral-atom and trapped-ion), not reports of a new machine. That is typical: most "faster quantum computer" headlines describe a better way to run a class of circuits on hardware that is still limited by noise.

## The main types of quantum computer hardware

Companies build qubits from very different physical systems. None has won, and each trades speed, scale and accuracy differently.

| Type            | What the qubit is                                                                       | Strength                                                                   | Main hurdle                                                                                                                                                                                                                     | Example                                                                                                                          |
| --------------- | --------------------------------------------------------------------------------------- | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- |
| Superconducting | A tiny superconducting circuit on a chip, cooled close to absolute zero                 | Fast: a gate-and-measure cycle takes about a microsecond                   | Building architectures with tens of thousands of qubits                                                                                                                                                                         | Google Willow, 105 qubits (December 2024); IBM Nighthawk, 120 qubits (November 2025)                                             |
| Trapped ion     | One charged atom, held by electromagnetic fields above a trap chip and driven by lasers | Very high gate fidelity; any qubit can interact with any other             | Scaling up: Quantinuum's roadmap depends on [2D trap chips made with CMOS processes](https://www.quantinuum.com/blog/technical-perspective-by-the-end-of-the-decade-we-will-deliver-universal-fault-tolerant-quantum-computing) | Quantinuum Helios, 98 qubits (November 2025)                                                                                     |
| Neutral atom    | One uncharged atom, held in a focused laser beam (an optical tweezer)                   | Arrays of about ten thousand atoms, which can be moved to connect any pair | Slow cycles, measured in milliseconds, so deep circuits are hard                                                                                                                                                                | QuEra, with a Harvard-led team: 48 logical qubits (December 2023)                                                                |
| Photonic        | Particles of light in silicon-photonics chips and optical fibre                         | Most components work at room temperature, and modules network over fibre   | Losing photons along the way                                                                                                                                                                                                    | Xanadu [Aurora](https://www.nature.com/articles/s41586-024-08406-9), 35 photonic chips networked into one machine (January 2025) |

The trade-offs are real enough that Google Quantum AI [added neutral atoms to its superconducting program](https://blog.google/innovation-and-ai/technology/research/neutral-atom-quantum-computers/) in March 2026. In its words, superconducting processors are easier to scale in circuit depth, and neutral atoms in qubit count. Which approach reaches large, error-corrected machines first is still open.

## Where quantum computing stands in September 2026

Separate results from roadmaps. A peer-reviewed paper or a shipped system shows what exists; a roadmap is a company's own target.

**What has been shown.** Published results include error correction below threshold (Google, 2024), processors running dozens of logical qubits on neutral atoms (2023) and trapped ions (2025), and IBM's 120-qubit [Nighthawk processor](https://newsroom.ibm.com/2025-11-12-ibm-delivers-new-quantum-processors,-software,-and-algorithm-breakthroughs-on-path-to-advantage-and-fault-tolerance), announced in November 2025. On advantage, in July 2026 IBM and research partners at the University of Chicago, Qedma and Algorithmiq [reported demonstrations of quantum advantage](https://www.ibm.com/quantum/blog/quantum-advantage) with built-in ways to validate the results, and logged them on an open Quantum Advantage Tracker where each claim is tested against the best classical methods. These are specific scientific problems, such as sampling and physics simulations, not business workloads.

**What the vendors plan.** The table lists published targets, not results:

| Company           | Hardware                              | Published roadmap target                                                                                                                                                                                                                                                                                       |
| ----------------- | ------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| IBM               | Superconducting                       | Verified quantum advantage by the end of 2026; [Starling](https://newsroom.ibm.com/2025-06-10-IBM-Sets-the-Course-to-Build-Worlds-First-Large-Scale,-Fault-Tolerant-Quantum-Computer-at-New-IBM-Quantum-Data-Center), a fault-tolerant machine with 200 logical qubits running 100 million operations, by 2029 |
| Google Quantum AI | Superconducting, adding neutral atoms | Commercially relevant superconducting quantum computers by the end of this decade (stated March 2026)                                                                                                                                                                                                          |
| Quantinuum        | Trapped ion                           | Apollo, a universal, fully fault-tolerant machine with hundreds of logical qubits, by the end of the decade (stated September 2024)                                                                                                                                                                            |

> [!NOTE]
> Read roadmaps in logical qubits and operations, not physical qubit counts. IBM expects Nighthawk to run circuits of up to 7,500 gates by the end of 2026; its 2029 Starling target is 100 million operations. Resource estimates for the most promising algorithms call for [millions of gates on hundreds of logical qubits](https://www.nature.com/articles/s41586-024-08406-9).

> [!IMPORTANT]
> Quantum computers do not break encryption today. A May 2025 estimate by Craig Gidney of Google Quantum AI puts factoring a 2048-bit RSA key at [less than a million noisy qubits running for less than a week](https://arxiv.org/abs/2505.15917), assuming a 0.1% gate error rate; the error-corrected experiments above use roughly one hundred to a few hundred physical qubits. The risk is in the future, but migration is slow, which is why NIST published its [first three post-quantum encryption standards](https://www.nist.gov/news-events/news/2024/08/nist-releases-first-3-finalized-post-quantum-encryption-standards) in August 2024 and encourages administrators to start integrating them immediately.

## What this means if you run IT

For most organizations, quantum computing changes one thing now: cryptography. Planning the move to post-quantum algorithms, and a realistic timeline for everything else, is the subject of [how quantum computing could transform IT](https://computese.com/how-quantum-computing-could-transform-it/).

You do not need to buy hardware to learn. Quantum processors are reached as cloud services: [Amazon Braket](https://docs.aws.amazon.com/braket/latest/developerguide/what-is-braket.html), for example, offers gate-based hardware from AQT, IonQ, IQM and Rigetti and an analog device from QuEra, along with simulators, with no upfront commitment. Treat that as a research budget for a small team, not an infrastructure decision.

In that model a quantum processor is a co-processor that classical applications call through a cloud service, next to the rest of your infrastructure. If your own applications still sit on ageing servers, that is the nearer project: our [cloud transformation service](https://computese.com/services/cloud-transformation/) moves applications to containers and cloud platforms one rehearsed wave at a time, with a rollback at every stage.

## Key terms
- **Qubit**: The basic unit of quantum information. Its state is described by two amplitudes, one for 0 and one for 1; measuring it returns 0 or 1 with probabilities set by those amplitudes.
- **Superposition**: A qubit state with non-zero amplitudes for both 0 and 1. It is not a hidden 0 or 1 waiting to be found: both amplitudes take part in the computation until the qubit is measured.
- **Entanglement**: A joint state of two or more qubits that cannot be described one qubit at a time, so their measurement results are correlated.
- **Interference**: Amplitudes adding up or cancelling out, the way waves do. Quantum algorithms are built so that paths to wrong answers cancel and paths to the right answer reinforce.
- **Decoherence**: The loss of a qubit's quantum state through contact with its environment, such as heat, vibration or stray fields. It turns a computation into noise.
- **Logical qubit**: One reliable qubit encoded across many physical qubits by an error-correcting code, such as the surface code, which detects and corrects errors as the computation runs.
- **Error correction threshold**: The physical error rate below which making an error-correcting code bigger lowers the logical error rate instead of raising it.
- **Shor's algorithm**: Peter Shor's 1994 quantum algorithm for factoring integers and computing discrete logarithms in polynomial time. On a large fault-tolerant machine it would break RSA and elliptic-curve cryptography.
- **Quantum advantage**: A quantum computer solving a problem better, faster or cheaper than all known classical methods. Serious claims now come with a way to check the result.
- **NISQ**: Noisy intermediate-scale quantum: John Preskill's 2018 name for machines whose noise limits how large a circuit can run reliably, the stage the industry is still in.

## Common questions

### Is a quantum computer faster than a normal computer?

Only for certain problems. Each quantum operation is slower than a classical one, so an ordinary computer wins on small and everyday tasks. A quantum computer pulls ahead only when an algorithm with a large speedup, such as Shor's factoring or the simulation of molecules, cuts the number of steps enough to outweigh that slowness.

### Can quantum computers break encryption today?

No. A May 2025 estimate from Google Quantum AI puts factoring a 2048-bit RSA key at fewer than a million noisy qubits running for less than a week, while today's error-corrected experiments use roughly one hundred to a few hundred physical qubits. Migration takes years, which is why NIST published its first post-quantum standards in August 2024 and asks administrators to start now.

### Will quantum computers replace classical computers?

No. They work as co-processors that a classical program calls for specific calculations, and they are poor at moving large amounts of data in and out. Your servers, laptops and phones stay classical.

### How many qubits does a useful quantum computer need?

Count logical qubits, not physical ones. Useful chemistry and cryptography algorithms are estimated to need millions of gates on hundreds of logical qubits, and each logical qubit takes many physical qubits: Google's best logical qubit in 2024 used 101. IBM's 2029 target, Starling, is 200 logical qubits running 100 million operations.

### Can I use a quantum computer today?

Yes, through the cloud. Amazon Braket, for example, gives access to quantum hardware from several makers with no upfront commitment, plus simulators to test circuits first. Expect to learn and experiment, not to speed up a production workload.

### Will quantum computers make AI faster?

Not for training large models in the foreseeable future. A 2023 analysis in Communications of the ACM found that many proposed quantum approaches to machine-learning training offer only quadratic speedups, too small to overcome slower quantum operations, and that loading large datasets into a quantum computer is a bottleneck in itself.

## Sources
1. [What is quantum computing?](https://learn.microsoft.com/en-us/azure/quantum/overview-understanding-quantum-computing), Microsoft Learn
2. [What is Amazon Braket?](https://docs.aws.amazon.com/braket/latest/developerguide/what-is-braket.html), Amazon Web Services
3. [The qubit in quantum computing](https://learn.microsoft.com/en-us/azure/quantum/concepts-the-qubit), Microsoft Learn
4. [Quantum circuit diagram conventions](https://learn.microsoft.com/en-us/azure/quantum/concepts-circuits), Microsoft Learn
5. [What is quantum computing?](https://www.ibm.com/think/topics/quantum-computing), IBM
6. [A fast quantum mechanical algorithm for database search](https://arxiv.org/abs/quant-ph/9605043), STOC 1996 (arXiv)
7. [Amazon Braket terms and concepts](https://docs.aws.amazon.com/braket/latest/developerguide/braket-terms.html), Amazon Web Services
8. [Disentangling Hype from Practicality: On Realistically Achieving Quantum Advantage](https://arxiv.org/abs/2307.00523), Communications of the ACM, 2023 (arXiv)
9. [Polynomial-Time Algorithms for Prime Factorization and Discrete Logarithms on a Quantum Computer](https://arxiv.org/abs/quant-ph/9508027), SIAM Journal on Computing (arXiv)
10. [Strengths and Weaknesses of Quantum Computing](https://arxiv.org/abs/quant-ph/9701001), SIAM Journal on Computing (arXiv)
11. [Elucidating Reaction Mechanisms on Quantum Computers](https://arxiv.org/abs/1605.03590), PNAS, 2017 (arXiv)
12. [Meet Willow, our state-of-the-art quantum chip](https://blog.google/innovation-and-ai/technology/research/google-willow-quantum-chip/), Google
13. [Quantum error correction codes](https://learn.microsoft.com/en-us/azure/quantum/concepts-error-correction), Microsoft Learn
14. [Quantinuum announces commercial launch of new Helios quantum computer](https://www.quantinuum.com/press-releases/quantinuum-announces-commercial-launch-of-new-helios-quantum-computer-that-offers-unprecedented-accuracy-to-enable-generative-quantum-ai-genqai), Quantinuum
15. [Logical quantum processor based on reconfigurable atom arrays](https://www.nature.com/articles/s41586-023-06927-3), Nature
16. [Quantum Computing in the NISQ era and beyond](https://quantum-journal.org/papers/q-2018-08-06-79/), Quantum
17. [Quantum error correction below the surface code threshold](https://www.nature.com/articles/s41586-024-08449-y), Nature
18. [Universal Parity Quantum Computing](https://journals.aps.org/prl/abstract/10.1103/PhysRevLett.129.180503), Physical Review Letters
19. [Applications of universal parity quantum computation](https://journals.aps.org/pra/abstract/10.1103/PhysRevA.106.042442), Physical Review A
20. [Google Quantum AI to include neutral atom computing](https://blog.google/innovation-and-ai/technology/research/neutral-atom-quantum-computers/), Google
21. [Technical perspective: By the end of the decade, we will deliver universal, fully fault-tolerant quantum computing](https://www.quantinuum.com/blog/technical-perspective-by-the-end-of-the-decade-we-will-deliver-universal-fault-tolerant-quantum-computing), Quantinuum
22. [Scaling and networking a modular photonic quantum computer](https://www.nature.com/articles/s41586-024-08406-9), Nature
23. [IBM delivers new quantum processors, software, and algorithm breakthroughs on path to advantage and fault tolerance](https://newsroom.ibm.com/2025-11-12-ibm-delivers-new-quantum-processors,-software,-and-algorithm-breakthroughs-on-path-to-advantage-and-fault-tolerance), IBM Newsroom
24. [Researchers demonstrate quantum advantage through trusted quantum computation](https://www.ibm.com/quantum/blog/quantum-advantage), IBM Quantum Blog
25. [IBM sets the course to build world's first large-scale, fault-tolerant quantum computer at new IBM Quantum Data Center](https://newsroom.ibm.com/2025-06-10-IBM-Sets-the-Course-to-Build-Worlds-First-Large-Scale,-Fault-Tolerant-Quantum-Computer-at-New-IBM-Quantum-Data-Center), IBM Newsroom
26. [How to factor 2048 bit RSA integers with less than a million noisy qubits](https://arxiv.org/abs/2505.15917), Google Quantum AI (arXiv)
27. [NIST releases first 3 finalized post-quantum encryption standards](https://www.nist.gov/news-events/news/2024/08/nist-releases-first-3-finalized-post-quantum-encryption-standards), NIST
