Understanding Quantum States Representation: A Beginner’s Guide

A normal computer stores information as a 0 or a 1. But how does a quantum computer describe the state of a qubit? This is the first question every beginner should answer clearly. This guide is part of the quantum computing learning series on QuantumUting.com. It explains quantum state representation in plain English. By the end, you will understand qubits, state vectors, superposition, and entanglement. You will also see simple worked examples.

What Is a Quantum State?

A quantum state describes the condition of a quantum system. For a qubit, the state tells us what the qubit “looks like” before we measure it.

A quantum state is not the same as a classical bit value. A classical bit always has one fixed value. A quantum state can hold more information than a simple 0 or 1.

Think of a quantum state as a full description. It tells us what outcomes are possible and how likely each outcome is.

Classical Bit vs Qubit

Classical bits and qubits behave very differently. This table shows the key differences.

Classical BitQubit
0 or 1Quantum state
Definite classical valueCan be in a superposition
Uses bit representationUses quantum state representation
Measurement reads the bitMeasurement produces an outcome

Some people say a qubit is “both 0 and 1 at the same time.” This is misleading. A qubit exists in a superposition of basis states, and that is different.

This distinction matters. It will help you avoid confusion later in this article.

Basis States

A single qubit uses two standard basis states. They are written as |0⟩ and |1⟩.

The vertical bar and angle bracket form is called a ket. It simply means “quantum state.” You will see this notation everywhere in quantum computing.

These basis states also have a vector form:

  • |0⟩ = [1, 0]ᵀ
  • |1⟩ = [0, 1]ᵀ

Every single-qubit state is built from these two basis states.

What Is Ket Notation?

Ket notation comes from a system called Dirac notation, or bra-ket notation. It looks unusual at first, but it is simple once you see a few examples.

A ket like |ψ⟩ just means “the quantum state named psi.” You could also write |0⟩ for the basis state zero, or |1⟩ for the basis state one.

Bra notation exists too, written as ⟨ψ|. It appears in more advanced calculations. For this article, you only need to understand kets.

Single-Qubit State Representation

Here is the most common way to write a single-qubit state:

|ψ⟩ = α|0⟩ + β|1⟩

Each part has a clear meaning:

  • |ψ⟩ is the full quantum state
  • |0⟩ and |1⟩ are the basis states
  • α is the amplitude for |0⟩
  • β is the amplitude for |1⟩

α and β can be real numbers or complex numbers. Do not worry about complex numbers too much. Just remember they are numbers that carry both size and direction.

Probability Amplitudes

This is one of the most important ideas in this article. Amplitude is not the same as probability.

For a single qubit measured in the computational basis, we use these rules:

  • P(0) = |α|²
  • P(1) = |β|²
  • |α|² + |β|² = 1

We square the amplitude to get a real, positive probability. This is why the rule uses squares instead of the raw amplitude values.

Let’s look at an example:

|ψ⟩ = √0.7|0⟩ + √0.3|1⟩

Here, the probability of measuring 0 is 0.7. The probability of measuring 1 is 0.3. Notice that 0.7 and 0.3 add up to 1, just as the normalization rule requires.

Equal Superposition

A very common quantum state is written as:

|+⟩ = (|0⟩ + |1⟩) / √2

If you measure this state, you get:

  • P(0) = 1/2
  • P(1) = 1/2

This does not mean the qubit stores two classical values at the same time. It means the state is a superposition, and both outcomes are equally likely when measured.

State Vector Representation

A qubit state can also be written as a vector. For the state |ψ⟩ = α|0⟩ + β|1⟩, the vector form is:

|ψ⟩ = [α, β]ᵀ

This vector simply lists the amplitudes in order. Here is an example:

|ψ⟩ = (1/√2)|0⟩ + (1/√2)|1⟩

The state vector is [1/√2, 1/√2]ᵀ.

You can now see a clear chain of ideas: ket notation leads to a state vector, and the state vector leads to measurement probabilities.

Measurement

Measurement is how we read information out of a quantum state. When you measure a qubit in the computational basis, you get either 0 or 1.

A single measurement does not tell you the full quantum state. It only gives you one outcome. To see the probability pattern, you need many measurements on identically prepared qubits.

Measurement also changes the qubit. After measurement, the qubit settles into the outcome you observed.

Measurement Basis

The result of a measurement depends on the basis you choose. The computational basis, using |0⟩ and |1⟩, is the most common choice.

Other bases exist too, such as the X basis, Y basis, and Z basis. Each basis gives a different way to interpret the same quantum state.

For beginners, focus on the computational basis first. The other bases become useful once you study quantum algorithms in more depth.

Bloch Sphere

The Bloch sphere is a simple picture of a single qubit state. It is a sphere where every point represents a possible pure state.

Here is what the key points mean:

  • The north pole represents |0⟩
  • The south pole represents |1⟩
  • Points on the equator represent equal superpositions
  • Other points represent different combinations of |0⟩ and |1⟩

The Bloch sphere gives a helpful geometric view of a single qubit. It does not directly represent states of two or more qubits.

General Single-Qubit Form

Using the Bloch sphere, we can write a general single-qubit state as:

|ψ⟩ = cos(θ/2)|0⟩ + e^(iφ) sin(θ/2)|1⟩

The symbols mean:

  • θ is the polar angle, controlling the mix of |0⟩ and |1⟩
  • φ is the phase angle
  • e^(iφ) is a complex phase factor

Global phase does not change measurement probabilities. Relative phase, however, can affect how states interfere with each other later.

Global Phase vs Relative Phase

If you multiply an entire quantum state by the same overall phase, nothing changes physically. The measurement outcomes stay the same.

Relative phase is different. It is the phase difference between the |0⟩ part and the |1⟩ part of a state. This relative phase can affect interference patterns in later calculations.

Keep this distinction in mind. Confusing the two is a common beginner mistake.

Superposition

Superposition means a qubit state is a combination of basis states, not just one fixed value. The amplitudes describe how much of each basis state is present.

When you measure the qubit, the squared amplitudes give you the probability of each outcome. Before measurement, the qubit is not simply “0 and 1 at the same time.”

A more accurate way to say it is this: a qubit can be in a superposition of |0⟩ and |1⟩.

Multi-Qubit States

Two qubits together need four basis states, not two. These are:

  • |00⟩
  • |01⟩
  • |10⟩
  • |11⟩

A general two-qubit state looks like this:

|ψ⟩ = α|00⟩ + β|01⟩ + γ|10⟩ + δ|11⟩

The normalization rule extends naturally:

|α|² + |β|² + |γ|² + |δ|² = 1

More qubits mean more basis states and a larger state space.

Product States

Some multi-qubit states can be broken down into separate single-qubit states. This is called a product state.

For example:

|ψ⟩ = |0⟩ ⊗ |1⟩ = |01⟩

The symbol ⊗ is called a tensor product. It combines two smaller states into one larger state.

Product states are simple. Each qubit behaves independently of the other.

Entangled States

Entanglement is different from a simple product state. A well-known example is the Bell state:

|Φ⁺⟩ = (|00⟩ + |11⟩) / √2

This state cannot be split into two separate single-qubit states. The two qubits are linked together in a special way.

Superposition and entanglement are not the same thing. A single qubit can be in superposition without being entangled with anything else. Entanglement only appears when you have two or more qubits connected in this special way.

Quantum Gates and State Representation

Quantum gates change quantum states. Here are three common ones:

  • The X gate flips |0⟩ to |1⟩ and |1⟩ to |0⟩
  • The H gate (Hadamard gate) creates superposition
  • The Z gate flips the phase of |1⟩

Here is a simple example. Start with |0⟩. Apply the H gate:

H|0⟩ = (|0⟩ + |1⟩) / √2

The gate transforms the starting state into a new state representation.

Quantum Circuits

A quantum circuit is a sequence of steps applied to qubits. The basic flow looks like this:

Initialize → Apply Gates → Measure

First, you set up qubits in a known starting state. Next, you apply gates to change the state. Finally, you measure the qubits to get a result.

Each stage either changes the quantum state or reads information from it.

Quantum State Representation in Programming

Quantum software frameworks let you build and run these ideas in code. They represent quantum states using state vectors, apply gates through circuit instructions, and read results through measurement operations.

Simulators can show you the full state vector, which is useful for learning. Real quantum hardware only gives you measurement outcomes.

This article does not focus on any single framework. The core ideas of state representation stay the same across most quantum programming tools.

Why Quantum State Representation Matters

Understanding state representation helps with almost every part of quantum computing. It supports:

  • Understanding qubits and how they store information
  • Designing and reading quantum circuits
  • Understanding how gates transform states
  • Understanding measurement outcomes
  • Understanding interference between amplitudes
  • Understanding entanglement between qubits
  • Understanding quantum algorithms
  • Working confidently with quantum simulators

State representation is one of the foundations of quantum computing. Once you understand it well, later topics become much easier to follow.

Common Beginner Mistakes

Mistake 1: Thinking a qubit is simply “0 and 1 at the same time.”
A qubit is in a superposition of basis states, not both fixed values at once.

Mistake 2: Confusing amplitude with probability.
Probability comes from squaring the amplitude, not from the amplitude itself.

Mistake 3: Forgetting the normalization rule.
The squared amplitudes must always add up to 1.

Mistake 4: Thinking every superposition is entanglement.
A single qubit can be in superposition alone. Entanglement needs two or more linked qubits.

Mistake 5: Thinking measurement returns the entire state.
A single measurement only gives one outcome, not the full amplitude values.

Mistake 6: Confusing global phase with relative phase.
Global phase does not affect measurement. Relative phase can affect interference.

Mistake 7: Using the Bloch sphere for multi-qubit states.
The Bloch sphere only represents a single pure qubit state clearly.

Quantum State Representation Summary Table

ConceptSimple Meaning
QubitBasic unit of quantum information
|0⟩First basis state
|1⟩Second basis state
|ψ⟩A general quantum state
α, βProbability amplitudes
|α|²Probability of measuring 0
|β|²Probability of measuring 1
State VectorVector containing amplitudes
SuperpositionCombination of basis states
MeasurementProduces an observed outcome
Bloch SphereGeometric view of a pure single qubit
EntanglementNon-separable multi-qubit relationship

Simple Worked Example

Let’s work through one complete example using this state:

|ψ⟩ = √0.8|0⟩ + √0.2|1⟩

Step 1: Identify the amplitudes.
Here, α = √0.8 and β = √0.2.

Step 2: Square their absolute values.
|α|² = 0.8 and |β|² = 0.2.

Step 3: Find the measurement probabilities.
P(0) = 0.8 and P(1) = 0.2.

Step 4: Check normalization.
0.8 + 0.2 = 1, so the state is correctly normalized.

If you measure this qubit many times, the results will cluster around these probabilities. You should not expect exactly 80 out of every 100 measurements to be 0. The actual count can vary a little around the expected value.

Another Simple Example: Hadamard Gate

Start with the basis state |0⟩. Apply a Hadamard gate:

H|0⟩ = (|0⟩ + |1⟩) / √2

This creates an equal superposition. The measurement probabilities become:

  • P(0) = 1/2
  • P(1) = 1/2

This example connects three ideas clearly: gate, state, and measurement.

Classical Representation vs Quantum Representation

FeatureClassical BitQubit
Basic States0, 1|0⟩, |1⟩
State DescriptionBit valueState amplitudes
SuperpositionNoYes
MeasurementReads valueProduces outcome
Multiple UnitsBit stringsMulti-qubit states
EntanglementNo equivalentYes

Frequently Asked Questions

1. What is a quantum state?
A quantum state is a mathematical description of a quantum system. It tells us what outcomes are possible when we measure it.

2. How is a qubit represented?
A qubit is represented as |ψ⟩ = α|0⟩ + β|1⟩, where α and β are probability amplitudes.

3. What are |0⟩ and |1⟩?
They are the two standard basis states used to describe a single qubit.

4. What does |ψ⟩ = α|0⟩ + β|1⟩ mean?
It means the qubit state is a combination of the basis states |0⟩ and |1⟩, weighted by amplitudes α and β.

5. What are probability amplitudes?
They are numbers that, when squared, give the probability of a measurement outcome.

6. How are measurement probabilities calculated?
You square the absolute value of each amplitude: P(0) = |α|² and P(1) = |β|².

7. What is a state vector?
It is a vector form of a quantum state, containing the amplitudes as its entries.

8. What is the Bloch sphere?
It is a geometric picture that represents any pure single-qubit state as a point on a sphere.

9. What is the difference between superposition and entanglement?
Superposition applies to a single qubit’s combination of basis states. Entanglement is a special link between two or more qubits that cannot be separated.

10. Why is quantum state representation important?
It forms the foundation for understanding qubits, gates, circuits, measurement, and quantum algorithms.

Conclusion

A quantum state is a mathematical description of a quantum system. For one qubit, we write it as |ψ⟩ = α|0⟩ + β|1⟩. The amplitudes determine measurement probabilities, and state vectors give us a compact way to work with these numbers. The Bloch sphere adds a helpful visual view for a single pure qubit. Multi-qubit systems use larger state spaces and can show entanglement, a feature with no classical equivalent. Once you understand state representation well, later quantum computing topics become much easier to learn.

Related Posts

Hip Replacement Surgery Cost Abroad: Country-by-Country Price Guide

Hip arthritis causes deep, nagging pain. It makes everyday walking hard and draining. Over time, simple tasks like tying shoes feel impossible. In many countries, surgery costs…

Read More

Discover Trusted Tutors and Learning Centres Across India | GurukulGalaxy

Picture this. A student finishes school and needs extra help in Math. A parent starts asking around. One neighbor suggests a coaching class. Another says online lessons…

Read More

Exploring Quantum State Representation for New Learners

A classical bit is easy to picture. It’s either 0 or 1, nothing more. A qubit works in a different way. So how do we actually describe…

Read More

How Qubits Are Measured in Quantum Experiments

Introduction Quantum computers promise to solve problems that normal computers cannot. But how do we know if they work? We have to measure them. Measuring a qubit…

Read More

RobotOps Guide: Building Reliable Robot Fleet Operations

A robot completing a task successfully is only one part of a robotics project. The bigger challenge begins when that robot must work every day, operate alongside…

Read More

Site Reliability Engineering Explained: What Every Beginner Needs to Know

INTRODUCTION Imagine you want to buy a train ticket on your phone. You open the booking app, pick your seat, and click pay. Suddenly, the screen freezes….

Read More
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x