From Classical Confusion to Quantum Clarity - My Journey Through Entanglement

Sometimes learning is a straight line. Today was not one of those days.

I thought I understood quantum entanglement. I had read about it, watched videos, even felt confident enough to start coding quantum circuits. But there’s a difference between knowing about something and actually getting it. Today I discovered that difference, and it was humbling in all the best ways.

The Setup: My Confident Confusion

I started with what seemed like a reasonable goal: create “maximally entangled” three-qubit states. My logic felt sound—if I put all my qubits into superposition and then connect them with CNOT gates, surely I’d get maximum entanglement, right?

1
2
3
4
5
6
7
8
from qiskit import QuantumCircuit
qc = QuantumCircuit(3)
qc.h(0) # Superposition on qubit 0
qc.h(1) # Superposition on qubit 1
qc.h(2) # Superposition on qubit 2
qc.cx(0, 1) # Connect them
qc.cx(1, 2) # More connections
qc.cx(2, 0) # Even more connections!

I was so sure this would create some beautiful web of quantum correlations. Instead, I created what amounts to quantum noise—all eight possible states equally likely, with no meaningful correlations between the qubits.

The Misconceptions That Trapped Me

Looking back, I was carrying around some deeply classical assumptions without realizing it:

Misconception #1: More superposition = more entanglement
I thought if every qubit was in superposition, I’d automatically get stronger quantum effects. But entanglement isn’t about having more possibilities—it’s about creating specific, precise correlations.

Misconception #2: Control + superposition = determinism
When a qubit in superposition controls other qubits, I expected the targets to become “determined.” What actually happens is more like parallel universes of control—the superposed qubit creates superposed outcomes in both branches simultaneously.

Misconception #3: More gates = better results
I was throwing CNOT gates around like they were magic pixie dust. But quantum computing isn’t about applying more operations—it’s about applying the right operations with architectural precision.

The Breakthrough Moment

The real insight came when I stepped back and thought about what I actually wanted: a state where measuring any qubit would tell me about all the others. Not random mixing, but perfect correlation.

That led me to the beautifully simple GHZ state:

1
2
3
4
qc = QuantumCircuit(3)
qc.h(0) # Only the master gets superposition
qc.cx(0, 1) # Servant 1 copies master
qc.cx(0, 2) # Servant 2 copies master

This creates the state (|000⟩ + |111⟩)/√2. Only two possible outcomes. Perfect correlations. If you measure any qubit and get |0⟩, you know all others are |0⟩. If you get |1⟩, all others are |1⟩.

What I Actually Learned

The deeper lesson here wasn’t just about quantum circuits—it was about the nature of learning itself.

Precision over excess: True quantum advantage comes from carefully orchestrated correlations, not maximum randomness. Like conducting a symphony, the power is in coordinated precision, not chaotic volume.

Question your assumptions: I had to let go of classical thinking patterns that felt intuitive but were fundamentally wrong in the quantum world.

Embrace the mess: The confusion, the failed circuits, the “aha!” moments that came after hours of frustration—that’s not a bug in learning, it’s a feature.

The Humbling Reality

What strikes me most is how confident I was in my initial approach. I had enough knowledge to be dangerous but not enough wisdom to be effective - Dunning-Kruger effect in action.

The classical world trains us to think in terms of direct control and predictable outcomes. Quantum mechanics demands a different kind of thinking; one where correlations matter more than states, where less can be more, and where the most powerful effects often come from the simplest, most precisely designed systems.

Moving Forward

I’m sharing this not because I’ve mastered quantum entanglement (I definitely haven’t), but because I think there’s value in documenting these learning moments. The journey from confusion to clarity is messy, nonlinear, and full of backtracking.

But that’s also what makes it real.

Every expert was once a beginner who thought they understood something they didn’t. The difference is that experts have failed more times, questioned more assumptions, and rebuilt their understanding from the ground up more often.

Today I rebuilt my understanding of entanglement. Tomorrow I’ll probably discover something else I thought I knew but didn’t really get.

And that’s exactly as it should be.


From Classical Confusion to Quantum Clarity - My Journey Through Entanglement
https://blog.forrestbthomas.com/2025/09/07/quantum-entanglement-learning/
Author
Forrest Thomas
Posted on
September 7, 2025
Licensed under