πŸŽ‰ 75% of content is free forever β€” Unlock Premium from $10/mo β†’
CW
Search courses…
πŸ’Ό Servicesℹ️ Aboutβœ‰οΈ ContactView Pricing Plansfrom $10

Quantum Metrology

Quantum ComputingQuantum Metrology🟒 Free Lesson

Advertisement

Classical vs Quantum Metrology

Classical metrology: precision scales as (shot noise limit), where is the number of probes.

Quantum metrology: precision can scale as (Heisenberg limit) using entangled probes.

The improvement from to is a quadratic speedup that enables significantly more precise measurements.

Heisenberg Limit

The Heisenberg limit sets the ultimate precision bound for parameter estimation:

where is the number of measurements and is the number of probes.

The shot noise limit (classical) is:

The Heisenberg limit is achieved using entangled states like GHZ states or NOON states.

Quantum Fisher Information

The quantum Fisher information determines the precision of parameter estimation:

For a pure state :

where . The Fisher information is maximized for NOON states: .

Squeezed States

Squeezed states reduce noise in one quadrature at the expense of the other:

where is the displacement operator and is the squeeze operator with parameter .

The variance in the squeezed quadrature is , below the vacuum limit. This is used in LIGO for gravitational wave detection.

Applications

Quantum metrology applications:

  • Gravitational wave detection: LIGO uses squeezed light
  • Atomic clocks: entangled ions improve clock stability
  • Magnetometry: nitrogen-vacancy centers for nanoscale imaging
  • GPS and navigation: quantum sensors for inertial navigation

Python: Quantum Metrology

import numpy as np

def shot_noise_limit(N, nu=1):
    return 1 / np.sqrt(nu * N)

def heisenberg_limit(N, nu=1):
    return 1 / (nu * N)

def quantum_fisher_info_noon(N):
    return N**2

for N in [10, 100, 1000, 10000]:
    sn = shot_noise_limit(N)
    hl = heisenberg_limit(N)
    print(f"N={N}: shot_noise={sn:.6f}, heisenberg={hl:.6f}, ratio={sn/hl:.1f}x")

Quantum Fisher Information

The quantum Fisher information determines precision:

For different probe states:

StateFQPrecision
CoherentN1/sqrtnu N (shot noise)
GHZN^21/(nu N) (Heisenberg)
SqueezedN e^2r1/sqrtnu N e^2r
NOONN^21/(nu N) (Heisenberg)

Metrological Protocols

  1. Ramsey interferometry: atomic clocks, magnetometry
  2. Mach-Zehnder interferometry: gravitational wave detection
  3. Atomic interferometry: inertial sensing, gravimetry
  4. Squeezed light interferometry: LIGO sensitivity improvement

Each protocol exploits quantum effects to surpass classical precision limits.

Summary

This topic covers the fundamental concepts and applications in quantum computing. Understanding these concepts is essential for advancing in the field and applying quantum techniques to real-world problems. The mathematical framework provides the foundation for analyzing quantum algorithms and hardware implementations.

Key takeaways include the importance of quantum coherence, the role of entanglement as a resource, and the tradeoffs between different quantum computing architectures. As the field progresses from NISQ to fault-tolerant devices, these foundational concepts will continue to underpin new developments and applications.

Further study should include hands-on implementation using quantum programming frameworks, analysis of recent research papers, and exploration of the connections between quantum computing and other fields such as machine learning, optimization, and simulation.

Heisenberg Limit Achievability

The Heisenberg limit is achievable using entangled states:

NOON states: give

GHZ states: give

Squeezed states: with give

In practice, achieving the Heisenberg limit requires:

  1. Perfect entangled state preparation
  2. No decoherence during the measurement
  3. Optimal measurement strategy

Need Expert Quantum Computing Help?

Get personalized tutoring, project support, or professional consulting.

Advertisement