https://github.com/mountain/aeg-paper
a paper about Arithmetic Expression Geometry (AEG), a new way to think about computation, analysis, and geometry
https://github.com/mountain/aeg-paper
arithmetic-expression-geometry geometry
Last synced: 4 months ago
JSON representation
a paper about Arithmetic Expression Geometry (AEG), a new way to think about computation, analysis, and geometry
- Host: GitHub
- URL: https://github.com/mountain/aeg-paper
- Owner: mountain
- License: cc0-1.0
- Created: 2022-10-31T15:34:52.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-12-27T13:28:11.000Z (6 months ago)
- Last Synced: 2025-12-29T09:04:07.038Z (6 months ago)
- Topics: arithmetic-expression-geometry, geometry
- Language: TeX
- Homepage: https://onecorner.org/curiosity/aegeom/
- Size: 11.7 MB
- Stars: 11
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# aeg-paper
[](https://doi.org/10.5281/zenodo.16938960)
This paper introduces a novel geometric framework for studying arithmetic expressions,
establishing a rigorous connection between algebraic operations and hyperbolic geometry.
We formalize arithmetic expressions as syntactic structures and demonstrate how they can be embedded into continuous geometric spaces where addition and multiplication correspond to movements along orthogonal directions.
Central to our approach is a flow equation that governs how expression values propagate through this geometric space.
We construct the first kind arithmetic expression space $\mathfrak{E}_1$ on the upper half-plane with a hyperbolic metric,
where the assignment function satisfies the flow equation and serves as an eigenfunction of the Laplacian.
This construction reveals that arithmetic torsion—the non-commutativity of addition and multiplication—directly
corresponds to geometric area, analogous to how curvature measures deviation from flatness.
The paper establishes arithmetic expressions as geometric objects with intrinsic invariants,
opening new avenues for exploring the interplay between computation and geometry.
## Building the PDF
Ensure that `pdflatex` and `bibtex` are available. Then run:
```bash
./build.sh
```
### Building with Docker
If a TeX environment is not installed locally, use Docker:
```bash
docker build -t aeg-paper .
docker run --rm -v $(pwd):/work aeg-paper
```