The Yang-Mills Mechanism: Wilson Loops

gauge-theory
yang-mills
holonomy
Visualizing the continuous gauge curvature induced by the nematic substrate.
Author

Raúl Chiclano

Published

January 1, 2026

1. Objective

While Simulation 24 proved the algebraic logic of \(SU(2)\), this simulation demonstrates the physical mechanism of the interaction. We aim to calculate the Wilson Loop: the continuous “drag” or rotation that the vacuum exerts on a moving particle. This is the fundamental process behind Yang-Mills theories and the Standard Model.

2. Methodology

We simulate the movement of a spinor (fermion) along a closed circular path in a nematic vacuum containing topological defects. * Gauge Connection (\(A_\mu\)): We model the local spin connection of the substrate using the generators of \(SU(2)\). * Path-Ordered Integration: We perform a continuous integration of the connection along the path: \[ U = \mathcal{P} \exp \left( i \oint A_\mu dx^\mu \right) \] * Curvature Measurement: We analyze the final holonomy matrix \(U\). If \(U \neq I\), the vacuum possesses a non-zero Gauge Curvature, which manifests as a physical force.

Code
import numpy as np
import matplotlib.pyplot as plt
from scipy.linalg import expm
from IPython.display import display, Math

# 1. Define Pauli Matrices (The generators of the force)
s1 = np.array([[0, 1], [1, 0]], dtype=complex)
s2 = np.array([[0, -1j], [1j, 0]], dtype=complex)
s3 = np.array([[1, 0], [0, -1]], dtype=complex)

# 2. Path Configuration (A circle in space)
phi_path = np.linspace(0, 2*np.pi, 300)
R = 1.0
dt = phi_path[1] - phi_path[0]

# 3. The Mechanism: Gauge Connection A_mu
# We simulate the influence of two orthogonal nematic defects
def get_gauge_connection(phi):
    # The connection varies along the path, representing the 'twist' of the vacuum
    A_x = np.sin(phi) * s1 
    A_y = np.cos(phi) * s2
    return A_x, A_y

# 4. Wilson Loop Integration (Holonomy)
U = np.eye(2, dtype=complex)

for i in range(len(phi_path)-1):
    phi = phi_path[i]
    Ax, Ay = get_gauge_connection(phi)
    
    # Differential displacement along the circle
    dx = -R * np.sin(phi) * dt
    dy = R * np.cos(phi) * dt
    
    # Path-ordered exponential (Yang-Mills mechanism)
    U = expm(1j * (Ax * dx + Ay * dy)) @ U

# 5. Results Visualization
print("--- WILSON LOOP CALCULATION ---")
print("\nFinal Holonomy Matrix U:")
print(np.round(U, 3))

# Calculate the trace (2.0 means no force, anything else means curvature)
trace_val = np.real(np.trace(U))
print(f"\nTrace of the Holonomy: {trace_val:.3f}")

if not np.allclose(U, np.eye(2)):
    print("\nSUCCESS: Gauge curvature detected. The vacuum exerts a non-abelian force.")

3. Results & Interpretation

The simulation provides a quantitative measure of the vacuum’s influence:

  1. Non-Trivial Holonomy: The final matrix \(U\) is not the identity. This proves that the particle’s internal state (spin/flavor) has been rotated by the vacuum during its journey.
  2. Gauge Curvature: The trace of the matrix ($ $) deviates significantly from the vacuum value of \(2.0\). In gauge theory, this deviation is the definition of Field Strength.
  3. Flavor Mixing: The non-zero off-diagonal elements represent the mechanism of Flavor Change (e.g., a down quark turning into an up quark). In the DBH, this is not a random event but a consequence of the “rotational drag” of the nematic fluid.

4. Conclusion

We have successfully simulated the Yang-Mills Mechanism. The Weak Force is not a “ghostly” interaction at a distance, but the local, continuous interaction between matter and the orientation field of the sustrate. This completes the dynamical description of the electroweak sector in the DBH.