TUTORIAL: Quantum for All — Topic: Normalization (Beginner Level)
1. The Power of "Clean" Numbers
The [6, 8] Challenge
In my "Quantum for All" journey, I always tell my students: the universe sometimes gives us a "clean" path. Before we face the messy square roots, we must master the perfect squares.
The Problem
Imagine a simple qubit in this unnormalized state: V = [ 6, 8 ]
Step 1: Find the "Weights"
We square the entries to find their raw power.
Top Slot (6): 6 squared = 36
Bottom Slot (8): 8 squared = 64
Step 2: Sum the Weights
Add them together to see our total unnormalized value: 36 + 64 = 100
Step 3: Find the Normalization Factor (N)
Because 100 is a Perfect Square, we find a clean integer for our divisor: N = √100 = 10
Step 4: The Final "Legal" Vector
Divide our original numbers (6 and 8) by our factor (10).
6 / 10 = 0.6
8 / 10 = 0.8 Normalized State |ψ> = [ 0.6, 0.8 ]
2. Staying Exact with Roots
The [1, 2] Challenge
What happens when the math doesn't end in a perfect 100? In research, we don't guess, we stay Exact.
The Problem
V = [ 1, 2 ]
Step 1: Find the "Weights"
Top Slot (1): 1 squared = 1
Bottom Slot (2): 2 squared = 4
Step 2: Sum the Weights
1 + 4 = 5
Step 3: Find the Normalization Factor (N)
Since 5 is not a perfect square, we keep the symbol to maintain 100% precision: N = √5
Step 4: The Final "Legal" Vector
Normalized State |ψ> = [ 1/√5, 2/√5 ]
Researcher's Note: In Qiskit and hardware-aware research, we prefer 1/√5 over a decimal because rounding too early creates "probability leaks."
3. Handling the "Phase"
The [3, -4i, √11] Challenge
Now, we enter the Ground Reality. How do we handle minus signs, imaginary "i", and square roots all at once?
The Problem
V = [ 3, -4i, √11 ]
Step 1: The "Weight" Check (Absolute Square)
Secret: When calculating the weight, let the minus sign and the "i" sit idle.
Top: 3 squared = 9
Middle (-4i): Ignore -i, square the 4. 4 squared = 16.
Bottom (√11): Square cancels the root. √11 squared = 11.
Step 2: Sum the Weights
9 + 16 + 11 = 36
Step 3: Find the Normalization Factor (N)
N = √36 = 6
Step 4: The Final "Legal" Vector
We put the "compass" (the -i and the root) back in their places: Normalized State |ψ> = [ 3/6, -4i/6, √11/6 ] Which simplifies to: [ 1/2, -2i/3, √11/6 ]
https://gemini.google.com/share/481ed6ba02bc

Comments
Post a Comment