← Back to Overview

Ghost Quasars: The Nobel-Level Test

In a finite universe, high-z quasars have topological duplicates

Prediction: Quasars at z > 3 have "ghost" images
Same spectrum • Different flux • 20-60° separation

How It Works

In the T³/Z₂ topology, space is finite and periodic. Light from a distant quasar can reach us via multiple paths — traveling "the short way" and "the long way" around the universe.

Fundamental Domain Scale
Lc = 20.6 Gpc
Light wrapping around this distance creates duplicate images

A quasar at z = 4 is ~7 Gpc away. Light can reach us directly, or go "around" the 20.6 Gpc universe. The two images appear at different sky positions with different ages (hence different brightness).

💫
Primary Image
Direct path to observer
Brighter, younger
👻
Ghost Image
Wrapped path around universe
Dimmer, older
🔬
Same Spectrum
Identical emission lines
Fingerprint match

Predicted Angular Separations

The separation between primary and ghost images depends on redshift and the specific topology. For T³/Z₂ with Lc = 20.6 Gpc:

RedshiftDistance (Gpc)Expected SeparationFlux Ratio
z = 3~6.5 Gpc18-25°~0.3
z = 4~7.5 Gpc25-35°~0.2
z = 5~8.3 Gpc35-45°~0.15
z = 6~9.0 Gpc45-55°~0.1
z = 7~9.5 Gpc50-60°~0.08
Sweet spot: z = 4-6 quasars with 30-50° separation are optimal targets. Bright enough to detect, far enough for clear separation.

Search Strategy

1
Start with known high-z quasars

SDSS, DESI, and JWST have cataloged thousands of z > 3 quasars with precise spectroscopy and positions.

2
Search in annulus around each

For each quasar, search for dimmer objects at 20-60° separation in the predicted direction (along Z₂ axis).

3
Match emission line spectra

Ghost images have IDENTICAL emission line patterns (same source), but different continuum (different light travel time).

4
Confirm with multiple pairs

One pair could be coincidence. Multiple pairs at consistent separations and along consistent axis = topology confirmed.

Why This is Nobel-Level

If Found:
  • • Direct proof universe is finite
  • • Measurement of cosmic topology
  • • Confirms L_c = 20.6 Gpc
  • • Validates entire Z² framework
  • • Nobel Prize in Physics (guaranteed)
If Not Found:
  • • Either L_c > 20.6 Gpc (larger universe)
  • • Or different topology than T³/Z₂
  • • Or ghosts too faint to detect
  • • Z² framework would need revision

This is not a vague philosophical question.

It's a concrete observational test with existing data.

The Search Algorithm

# Ghost Quasar Search Algorithm
# Available at github.com/carlzimmermanbriar/ghost-quasar-search

for quasar in high_z_catalog:
    if quasar.z < 3.0:
        continue  # Too close for ghosts

    # Predicted ghost location
    theta_min, theta_max = angular_bounds(quasar.z, L_c=20.6)

    # Search annulus along Z₂ axis
    candidates = search_annulus(
        center=quasar.position,
        inner=theta_min, outer=theta_max,
        axis=Z2_AXIS,  # (287°, 9°) Galactic
        flux_ratio_max=0.5
    )

    for candidate in candidates:
        # Spectroscopic matching
        if emission_lines_match(quasar, candidate):
            if continuum_differs(quasar, candidate):
                flag_as_ghost_pair(quasar, candidate)

Algorithm is ready to run on SDSS DR18 + DESI DR1 quasar catalogs

What We Need

Have
  • • SDSS quasar catalog
  • • DESI DR1 spectra
  • • Search algorithm
  • • Predicted separations
Need
  • • Compute time
  • • Follow-up spectroscopy
  • • Deep imaging for faint ghosts
🎯
Goal
  • • Find 1 confirmed pair
  • • Validate with 3+ pairs
  • • Measure L_c precisely