Skip to main content

Core quaternion, spinor, SU(2), and Bloch mathematics for the RQM Python ecosystem

Project description

RQM Core

Core quaternion, spinor, SU(2), and Bloch mathematics for the RQM Python ecosystem.

PyPI version Python versions License: MIT Documentation Website


🌐 RQM Platform

This repository is part of the RQM Technologies ecosystem.

→ Website: https://rqmtechnologies.com
→ Documentation: https://docs.rqmtechnologies.com


Install

pip install rqm-core

rqm-core is the mathematical foundation layer. It has no RQM-level dependencies — only numpy at runtime.


Where This Fits

rqm-core  →  rqm-compiler  →  rqm-qiskit / rqm-braket

rqm-core provides the canonical mathematical layer of the RQM ecosystem, including quaternion, spinor, Bloch, and SU(2) foundations. Higher-level packages (rqm-compiler, rqm-qiskit, rqm-braket) build on top of it.


Next Steps


Why This Package Exists

Higher-level RQM libraries (simulators, compilers, hardware adapters) all require a common, reliable layer of linear algebra and quantum geometry. rqm-core is that layer.

It provides a single, versioned source of truth for the mathematical primitives shared across the whole ecosystem: no duplication, no conflicting conventions, and no framework lock-in.


Design Principles

Principle What it means in practice
Tiny Only implement primitives that are needed by ≥2 packages
Stable Slow to change; breaking changes require a major version bump
Dependency-light Only numpy at runtime
Canonical One correct convention, clearly documented, used everywhere
Well-tested Strong test coverage from the first commit

What Is Included

  • Quaternion primitives – Hamilton product, conjugate, inverse, axis-angle construction, SO(3) and SU(2) conversions
  • Spinor helpers – normalization, norm, fidelity, spinor↔quaternion/SU(2) mappings
  • SU(2) conversions – construction from quaternions and axis-angle, validation, round-trips
  • Bloch sphere mappings – state↔Bloch, Bloch↔state, quaternion rotation to Bloch vector
  • Matrix helpers – trace, determinant, conjugate transpose (dagger), norm, closeness checks
  • Validation utilities – axis, complex pair, matrix shape, real number, tolerance checks
  • Coupling / entanglement analysis – qualitative gate detection and measured 2-qubit entanglement metrics (concurrence, entropy, fidelity); see the Coupling Analysis section below

Mathematical Conventions

The full reference lives in CONVENTIONS.md. The five items every downstream package needs to know:

1 · SU(2) Convention

A unit quaternion q = w + xi + yj + zk maps to SU(2) as:

U(q) = [[ w − iz ,  −y − ix ],
         [ y − ix ,   w + iz ]]

Implemented in Quaternion.to_su2_matrix(); inverted by su2_to_quaternion().

2 · Spinor Convention

States are written |ψ⟩ = α|0⟩ + β|1⟩ with |0⟩ as the north-pole computational-basis ground state. Amplitudes are always passed as the ordered pair (alpha, beta). Functions that require unit norm normalize internally.

3 · Bloch Sphere Parameterization

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

theta[0, π] (polar/colatitude), phi[0, 2π) (azimuthal). |0⟩ → north pole (0, 0, +1); |1⟩ → south pole (0, 0, −1).

4 · Global Phase

q and −q represent the same rotation. spinor_to_quaternion encodes the rotation up to global phase — never rely on the sign of the scalar part.

5 · Default Tolerance and Axis Labels

All closeness checks default to atol = 1e-9 (absolute, no relative component). Axis labels are "x", "y", "z" (case-insensitive); all angles are in radians.


Coupling / Entanglement Analysis

rqm_core includes an additive, production-ready analysis layer for measuring and qualifying multi-qubit coupling and entanglement.

Architecture

The two layers are mathematically complementary and do not compete:

Layer Scope Technology
Single-qubit local structure Individual qubit rotations Quaternionic / SU(2) (quaternion optimizer)
Multi-qubit entanglement Cross-qubit coupling / correlation Statevector simulation, concurrence, entropy

The quaternionic single-qubit optimizer is the correct route for local SU(2) operations. The coupling analysis layer adds truthful multi-qubit analysis beside it.

Quickstart

from rqm_core import Circuit, GateOp, analyze_circuit_coupling

# Bell state: H q0, CNOT q0→q1
circuit = Circuit(
    num_qubits=2,
    operations=[
        GateOp(name="H",    qubits=[0]),
        GateOp(name="CNOT", qubits=[0, 1]),
    ],
)

result = analyze_circuit_coupling(circuit)
print(result.mode)          # "measured"
print(result.is_entangled)  # True
print(result.pair_metrics[0].value)  # 1.0  (concurrence)

Measured Analysis Scope (first implementation)

Criterion Scope
Qubits Exactly 2
Initial state |00⟩
Single-qubit gates I, X, Y, Z, H, S, T, Rx(θ), Ry(θ), Rz(θ), U(θ,φ,λ) / U3
Two-qubit gates CNOT / CX, CZ, SWAP
Metrics Concurrence, von Neumann entropy

Circuits outside this scope receive an honest qualitative fallback (gate detection only) with explicit limitations in the result — no fabricated measured values.

Result Contract

@dataclass
class CouplingAnalysisResult:
    mode: str                          # "measured" | "qualitative"
    provenance: str                    # "rqm-core" | "parser"
    qubit_count: int
    analyzed_pairs: list[tuple[int, int]]
    has_entangling_gates: bool
    entangling_gate_count: int
    entangling_gates_seen: list[str]
    last_entangling_gate: str | None
    is_entangled: bool | None          # None in qualitative mode
    pair_metrics: list[PairMetric]     # empty in qualitative mode
    fidelity_preserved: float | None
    notes: list[str]
    limitations: list[str]

Compiler Verification

from rqm_core import analyze_optimization_preservation

result = analyze_optimization_preservation(original_circuit, optimized_circuit)
print(result.fidelity_preserved)              # e.g. 1.0
print(result.preserved_entanglement_structure) # True / False / None

  • Qiskit / PennyLane / Cirq adapters
  • Backend execution or hardware drivers
  • Circuit transpilation or compilation
  • Plotting or visualisation
  • Cloud workflow integration
  • Notebook tooling
  • Algorithm frameworks or optimisation workflows

Those belong in higher-level packages.


Installation

pip install rqm-core

Development install (includes pytest and pytest-cov):

pip install "rqm-core[dev]"

Ecosystem Role

rqm-core is the spine of the RQM Python ecosystem. It provides the single canonical implementation of all shared mathematical primitives so that downstream packages never need to re-implement or copy them.

How downstream packages declare the dependency (example pyproject.toml excerpt):

[project]
dependencies = [
    "rqm-core>=0.1.0",
]

How downstream packages import:

# rqm-qiskit, rqm-circuits, rqm-compiler, etc.
from rqm_core import Quaternion, axis_angle_to_su2, state_to_bloch

Contract for downstream maintainers:

  • All conventions are defined in CONVENTIONS.md and must not be re-defined or overridden locally.
  • Breaking changes to rqm-core require a major version bump (1.0.0, …).
  • Any primitive needed by two or more packages belongs here, not in the individual packages.

Quickstart

from rqm_core import Quaternion, state_to_bloch, axis_angle_to_su2
import math

# 90° rotation around Y
q = Quaternion.from_axis_angle("y", math.pi / 2)
print(q)
# Quaternion(0.7071..., 0.0, 0.7071..., 0.0)

# SU(2) matrix directly from axis-angle
print(axis_angle_to_su2("y", math.pi / 2))

# |+⟩ state on the Bloch sphere → equator at (1, 0, 0)
c = 1 / math.sqrt(2)
x, y, z = state_to_bloch(c, c)
print(x, y, z)  # 1.0  0.0  0.0

Package Structure

rqm-core/
  CONVENTIONS.md            – canonical mathematical conventions reference
  pyproject.toml            – package metadata and build config
  src/rqm_core/
    __init__.py      – canonical public API (import everything from here)
    py.typed         – PEP 561 marker (enables type checking in downstream packages)
    quaternion.py    – Quaternion class (Hamilton algebra, SO(3)/SU(2) conversions)
    spinor.py        – spinor normalization, fidelity, spinor↔quaternion/SU(2)
    su2.py           – SU(2) construction, validation, quaternion round-trips
    bloch.py         – Bloch sphere mappings and validation
    linalg.py        – matrix helpers (dagger, trace, determinant, closeness)
    validation.py    – shared validation helpers (axis, matrix shape, tolerances)
    types.py         – shared type aliases (ComplexVector2, BlochVector, SU2Matrix, …)
    utils.py         – small math utilities (angle_wrap, safe_norm, is_finite_*)
    analysis/
      coupling/
        types.py                          – Circuit IR + result contract dataclasses
        detect_entangling_structure.py    – qualitative gate-based detection
        simulate_two_qubit_state.py       – ideal 2-qubit pure-state simulator
        metrics.py                        – concurrence, entropy, fidelity helpers
        analyze_circuit_coupling.py       – main public entry point
        analyze_optimization_preservation.py – before/after compiler verification

  tests/
    test_quaternion.py
    test_spinor.py
    test_su2.py
    test_bloch.py
    test_linalg.py
    test_utils.py
    test_validation.py
    test_public_api.py
    analysis/
      coupling/
        test_detect_entangling_structure.py
        test_simulate_two_qubit_state.py
        test_metrics.py
        test_analyze_circuit_coupling.py
        test_analyze_optimization_preservation.py

  examples/
    quaternion_basics.py    – quaternion construction, composition, conversion
    spinor_basics.py        – spinor normalization, Bloch mapping, fidelity
    su2_bloch_demo.py       – axis-angle → SU(2) → Bloch pipeline
    bloch_mapping_demo.py   – canonical Bloch vectors and round-trip checks
    su2_rotation_demo.py    – SU(2) construction and quaternion round-trip

Testing

# Install the package in editable mode with test dependencies
pip install -e ".[dev]"

# Run the full test suite
pytest

# Run with coverage report
pytest --cov=rqm_core --cov-report=term-missing

# Run a single test file
pytest tests/test_quaternion.py -v

# Run only the public-API contract tests
pytest tests/test_public_api.py -v

Architectural Notes

  • su2.is_unitary is a thin domain-scoped shim over linalg.is_unitary. Both exist intentionally: linalg.is_unitary is the general-purpose helper; su2.is_unitary is the public entry point for SU(2)-context callers and is what rqm_core.is_unitary resolves to in the top-level API.

  • q and −q represent the same rotation. Round-trip conversions q → SU(2) → q are tested against both q and −q. Downstream code must never compare quaternion scalar parts for sign equality.

  • The src/ layout means rqm_core is only importable after installation (pip install -e .). Running tests directly without installing first will produce ModuleNotFoundError.

  • py.typed is included in the installed wheel (via [tool.setuptools.package-data]), enabling mypy and pyright in any package that depends on rqm-core.


Roadmap

rqm-core is intended to remain small and stable while higher-level packages evolve around it.

Planned additions for future minor versions:

  • Quaternion SLERP (spherical linear interpolation)
  • SO(3) rotation-matrix ↔ quaternion round-trip helpers
  • Mixed-state density matrix utilities
  • SU(2) Lie-algebra generators and exponential map
  • Type stub files (.pyi) for IDE completions
  • Coupling analysis for >2 qubits (partial trace for n-qubit systems, mutual information)
  • Support for additional gate sets in the 2-qubit simulator

No Qiskit or framework dependencies will ever be added to this package.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rqm_core-0.1.5.tar.gz (60.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

rqm_core-0.1.5-py3-none-any.whl (41.7 kB view details)

Uploaded Python 3

File details

Details for the file rqm_core-0.1.5.tar.gz.

File metadata

  • Download URL: rqm_core-0.1.5.tar.gz
  • Upload date:
  • Size: 60.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rqm_core-0.1.5.tar.gz
Algorithm Hash digest
SHA256 af73bfbc254d6eb54239fba1118fa45ed0fdb7269bb69d965985b1635d8364d0
MD5 3cb6e76021102185a2c8c9b91625067b
BLAKE2b-256 d208b41f42457e5ecf50a632795f3796d39a17a071cfff87351f867431be1551

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqm_core-0.1.5.tar.gz:

Publisher: publish.yml on RQM-Technologies-dev/rqm-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rqm_core-0.1.5-py3-none-any.whl.

File metadata

  • Download URL: rqm_core-0.1.5-py3-none-any.whl
  • Upload date:
  • Size: 41.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rqm_core-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 3387649bd5cb6fcee7f644544962310bea426cafa77d222091c7944be9cf298f
MD5 a279cff319a12a27657c2bdbab1eacc6
BLAKE2b-256 dd19c417a253b68fbc28ac4d7963e7c4fc80cdeb61c7a18841ef1c84fc15acd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rqm_core-0.1.5-py3-none-any.whl:

Publisher: publish.yml on RQM-Technologies-dev/rqm-core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page