Skip to content

Commit 67168c6

Browse files
committed
docs: establish mathematical debugger and incubator protocols
1 parent a6e7045 commit 67168c6

8 files changed

Lines changed: 123 additions & 49 deletions

File tree

experiments/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
# you may not use this file except in compliance with the License.
66
#
77

8-
"""Experiments: Mathematical debugger and validation suite."""
8+
"""Experiments: Mathematical debuggers and radical idea incubator."""
Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,24 @@
55
# you may not use this file except in compliance with the License.
66
#
77

8-
"""Lorentz Transformation Debugger in Spacetime Algebra Cl(3,1).
8+
"""
9+
==============================================================================
10+
VERSOR EXPERIMENT: MATHEMATICAL DEBUGGER
11+
==============================================================================
12+
13+
This script is designed to validate topological and algebraic phenomena
14+
rather than to achieve State-of-the-Art (SOTA) on traditional benchmarks.
15+
Our primary focus here is to explore pure geometric intuition within the
16+
Clifford Algebra framework.
17+
18+
Please kindly note that as an experimental module, formal mathematical proofs
19+
and exhaustive literature reviews may still be in progress. We warmly invite
20+
you to run the code, test your own hypotheses, and open a GitHub Issue if you
21+
discover any fascinating geometric behaviors or encounter structural limitations.
22+
23+
==============================================================================
24+
25+
Lorentz Transformation Debugger in Spacetime Algebra Cl(3,1).
926
1027
Validates Versor's geometric algebra operations against known physical
1128
laws of special relativity. Spacetime events are grade-1 vectors,
@@ -25,14 +42,9 @@
2542
5. Invariant mass: m^2 = -s^2 preserved under transformation
2643
6. Rapidity extraction: recover phi from learned rotor (pure boost)
2744
7. Velocity addition: R(phi1)R(phi2) = R(phi1 + phi2)
28-
29-
Usage:
30-
uv run python -m experiments.lorentz_debugger --epochs 200
31-
uv run python -m experiments.lorentz_debugger --strict-ortho --boost-type combined
32-
uv run python -m experiments.lorentz_debugger --save-plots --output-dir my_plots
33-
uv run python -m experiments.lorentz_debugger --rapidity-max 2.0 --diag-interval 10
3445
"""
3546

47+
3648
from __future__ import annotations
3749

3850
import sys
@@ -52,7 +64,7 @@
5264

5365
from core.algebra import CliffordAlgebra
5466
from core.metric import (
55-
signature_norm_squared, hermitian_distance, hermitian_norm,
67+
signature_norm_squared, hermitian_distance,
5668
hermitian_grade_spectrum, signature_trace_form,
5769
)
5870
from layers import CliffordLinear
Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,24 @@
55
# you may not use this file except in compliance with the License.
66
#
77

8-
"""Minkowski's Theorem and Lattice Geometry via Geometric Algebra.
8+
"""
9+
==============================================================================
10+
VERSOR EXPERIMENT: MATHEMATICAL DEBUGGER
11+
==============================================================================
12+
13+
This script is designed to validate topological and algebraic phenomena
14+
rather than to achieve State-of-the-Art (SOTA) on traditional benchmarks.
15+
Our primary focus here is to explore pure geometric intuition within the
16+
Clifford Algebra framework.
17+
18+
Please kindly note that as an experimental module, formal mathematical proofs
19+
and exhaustive literature reviews may still be in progress. We warmly invite
20+
you to run the code, test your own hypotheses, and open a GitHub Issue if you
21+
discover any fascinating geometric behaviors or encounter structural limitations.
22+
23+
==============================================================================
24+
25+
Minkowski's Theorem and Lattice Geometry via Geometric Algebra.
926
1027
This experiment demonstrates Minkowski's First and Second Fundamental Theorems
1128
using the Clifford Algebra Cl(n,0).
Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,24 @@
55
# you may not use this file except in compliance with the License.
66
#
77

8-
"""Navier-Stokes as Gauge Theory in Cl(3,0).
8+
"""
9+
==============================================================================
10+
VERSOR EXPERIMENT: MATHEMATICAL DEBUGGER
11+
==============================================================================
12+
13+
This script is designed to validate topological and algebraic phenomena
14+
rather than to achieve State-of-the-Art (SOTA) on traditional benchmarks.
15+
Our primary focus here is to explore pure geometric intuition within the
16+
Clifford Algebra framework.
17+
18+
Please kindly note that as an experimental module, formal mathematical proofs
19+
and exhaustive literature reviews may still be in progress. We warmly invite
20+
you to run the code, test your own hypotheses, and open a GitHub Issue if you
21+
discover any fascinating geometric behaviors or encounter structural limitations.
22+
23+
==============================================================================
24+
25+
Navier-Stokes as Gauge Theory in Cl(3,0).
926
1027
Reinterprets fluid dynamics through the lens of gauge theory:
1128
- Velocity field u is a gauge connection (grade-1 vector)
Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,24 @@
55
# you may not use this file except in compliance with the License.
66
#
77

8-
"""Riemann Zeta Function Reconstruction via Geometric Algebra.
8+
"""
9+
==============================================================================
10+
VERSOR EXPERIMENT: MATHEMATICAL DEBUGGER
11+
==============================================================================
12+
13+
This script is designed to validate topological and algebraic phenomena
14+
rather than to achieve State-of-the-Art (SOTA) on traditional benchmarks.
15+
Our primary focus here is to explore pure geometric intuition within the
16+
Clifford Algebra framework.
17+
18+
Please kindly note that as an experimental module, formal mathematical proofs
19+
and exhaustive literature reviews may still be in progress. We warmly invite
20+
you to run the code, test your own hypotheses, and open a GitHub Issue if you
21+
discover any fascinating geometric behaviors or encounter structural limitations.
22+
23+
==============================================================================
24+
25+
Riemann Zeta Function Reconstruction via Geometric Algebra.
926
1027
Uses Cl(2,0,r) where the even subalgebra {1, e_12} is isomorphic to C.
1128
Complex numbers s = sigma + it are encoded as multivectors s = sigma*1 + t*e_12.
@@ -28,13 +45,6 @@
2845
- Monitors cross-grade coupling
2946
- Tests reconstruction on known analytic properties (functional equation,
3047
location of trivial zeros, behavior near the pole at s=1)
31-
32-
Usage:
33-
uv run python -m experiments.riemann_zeta
34-
uv run python -m experiments.riemann_zeta --strict-ortho --epochs 300
35-
uv run python -m experiments.riemann_zeta --strict-ortho --save-plots --output-dir zeta_plots
36-
uv run python -m experiments.riemann_zeta --r-dim 1 --strict-ortho --epochs 300
37-
uv run python -m experiments.riemann_zeta --sigma-min 0.5 --sigma-max 3.0
3848
"""
3949

4050
from __future__ import annotations
Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,24 @@
55
# you may not use this file except in compliance with the License.
66
#
77

8-
"""Yang-Mills SU(2) Gauge Theory in Cl(3,0).
8+
"""
9+
==============================================================================
10+
VERSOR EXPERIMENT: MATHEMATICAL DEBUGGER
11+
==============================================================================
12+
13+
This script is designed to validate topological and algebraic phenomena
14+
rather than to achieve State-of-the-Art (SOTA) on traditional benchmarks.
15+
Our primary focus here is to explore pure geometric intuition within the
16+
Clifford Algebra framework.
17+
18+
Please kindly note that as an experimental module, formal mathematical proofs
19+
and exhaustive literature reviews may still be in progress. We warmly invite
20+
you to run the code, test your own hypotheses, and open a GitHub Issue if you
21+
discover any fascinating geometric behaviors or encounter structural limitations.
22+
23+
==============================================================================
24+
25+
Yang-Mills SU(2) Gauge Theory in Cl(3,0).
926
1027
Validates Geometric Algebra as a natural framework for non-abelian gauge theory.
1128
SU(2) ≅ Spin(3) = unit even subalgebra of Cl(3,0).
Lines changed: 15 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -5,29 +5,24 @@
55
# you may not use this file except in compliance with the License.
66
#
77

8-
"""
9-
DISCLAIMER: AHEAD OF THE LITERATURE
108

11-
The theoretical foundations of this Geometric Deterministic Optimizer (GDO)
12-
-- including Lorentz Warp and Topological Signature Annealing
13-
-- are not derived from any existing academic papers.
14-
They are the pure materialization of my personal geometric intuition and hypotheses.
9+
"""
10+
==============================================================================
11+
VERSOR EXPERIMENT: IDEA INCUBATOR (SPIN-OFF CONCEPT)
12+
==============================================================================
1513
16-
No Whining: This is a highly experimental, non-Euclidean architecture.
17-
If it shatters your standard models or fails on your specific edge cases,
18-
do not complain. You are just stepping outside the safety of standard SGD.
14+
This script serves as an early-stage proof-of-concept for radical, non-Euclidean
15+
architectures. The concepts demonstrated here are strongly driven by geometric
16+
intuition and may currently reside ahead of established academic literature.
1917
20-
Complexity: The concepts of dimensional lift-up and manifold unbending are abstract.
21-
Comprehensive documentation and mathematical proofs are planned for the future.
18+
Please understand that rigorous mathematical proofs or comprehensive citations
19+
might be incomplete at this stage. If this geometric hypothesis proves structurally
20+
sound, it is planned to be spun off into a dedicated, independent repository
21+
for detailed research.
2222
23-
The Truth is in the Code: If you cannot understand the topological mechanics right now,
24-
wait for the docs. Otherwise, the source code is the ultimate proof. Read it.
25-
may be fun.
26-
"""
23+
==============================================================================
2724
28-
from __future__ import annotations
29-
30-
"""Geometric Deterministic Optimizer (GDO): Topology-Aware Optimization.
25+
Geometric Deterministic Optimizer (GDO): Topology-Aware Optimization.
3126
3227
HYPOTHESIS
3328
==========
@@ -91,6 +86,8 @@
9186
- Stop probing, ignore curvature; just follow the path
9287
"""
9388

89+
from __future__ import annotations
90+
9491
import sys
9592
import os
9693
import argparse
Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,21 @@
55
# you may not use this file except in compliance with the License.
66
#
77

8-
r"""STA Trajectory Reconstruction: 3D Handwriting from Noisy IMU Data.
8+
"""
9+
==============================================================================
10+
VERSOR EXPERIMENT: IDEA INCUBATOR (SPIN-OFF CONCEPT)
11+
==============================================================================
12+
13+
This script serves as an early-stage proof-of-concept for radical, non-Euclidean
14+
architectures. The concepts demonstrated here are strongly driven by geometric
15+
intuition and may currently reside ahead of established academic literature.
16+
17+
Please understand that rigorous mathematical proofs or comprehensive citations
18+
might be incomplete at this stage. If this geometric hypothesis proves structurally
19+
sound, it is planned to be spun off into a dedicated, independent repository
20+
for detailed research.
21+
22+
==============================================================================
923
1024
This project requires data.
1125
Arbitrary synthetic data may be used.
@@ -23,16 +37,6 @@
2337
- Multi-sensor fusion (magnetometer, UWB)
2438
2539
If you use ideas from this experiment, please cite the Versor framework:
26-
27-
@software{Kim_Versor_Universal_Geometric_2026,
28-
author = {Kim, Eunkyum},
29-
doi = {10.5281/zenodo.18939519},
30-
month = mar,
31-
title = {{Versor: Universal Geometric Algebra Neural Network}},
32-
url = {https://github.com/Concode0/versor},
33-
version = {1.0.0},
34-
year = {2026}
35-
}
3640
"""
3741

3842
from __future__ import annotations

0 commit comments

Comments
 (0)