Skip to content

Commit e3d05e5

Browse files
research: integrate stack-local UCNS/EPAC/PCEA worktree research
Preserved from the pre-sync dirty working tree: UCNS standing-wave candidates, EPAC boundary audits, PCEA gonol successor/transition candidates, and research/ucns recursive-scale experiments. README conflicts with newer main resolved by keeping the newer EPAC/PCEA standing and adding the new content.
1 parent 0300229 commit e3d05e5

136 files changed

Lines changed: 37911 additions & 122 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

libs/ucns/README.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ Its active scope is limited to constructions that directly represent or test geo
88
- the directed lifted carrier and its 360° visible / 720° complete return;
99
- exact framed Möbius motion;
1010
- Möbius vesica and Seed-of-Life constructions and certificates;
11+
- the native two-turn Möbius root-loop standing-wave candidate, including its
12+
operator, domain, boundary conditions, admissible modes, and derived seam
13+
trace;
14+
- the canonical Möbius band coordinate standing-wave candidate, including its
15+
physical-edge boundary conditions and sampled continuous-boundary trace rank;
1116
- prime-indexed ribbon, link, interval, Milnor, Alexander, and related topological geometry;
1217
- numerical machinery used to certify those constructions.
1318

@@ -33,6 +38,22 @@ One visible turn preserves phase and reverses the local frame. Two visible turns
3338

3439
The active package also retains the Möbius vesica/seed family and the `prime_*` topological geometry family. Generated geometry certificates remain evidence; semantic receipts do not.
3540

41+
`src/ucns/mobius_standing_wave.py` is the smallest explicit continuum
42+
standing-wave model currently admitted by UCNS canon: a scalar second-order
43+
wave equation on the native two-turn Möbius root loop. Its boundary trace is
44+
the derived value/derivative trace at the quotient seam. That trace has rank at
45+
most two through every finite mode cutoff, so this model falsifies direct
46+
induction of PCEA-style boundary-measure capacity channels.
47+
48+
`src/ucns/mobius_band_standing_wave.py` extends that construction to the
49+
canonical Möbius band coordinate domain `[0,2] x [-w,w]` with the native
50+
quotient `(t+1,u)~(t,-u)`. Its coordinate-domain Laplacian, Neumann physical
51+
edge condition, admissible parity-matched modes, and sampled continuous-boundary
52+
trace are executable. Finite capacity channels survive only when they fit the
53+
derived boundary trace rank. Bulk-only counting is falsified when interior
54+
transverse modes exceed the independent boundary traces. The embedded
55+
Laplace-Beltrami operator and exact PCEA channel encoding remain `hmmm`.
56+
3657
## Usage
3758

3859
```python
@@ -59,4 +80,4 @@ python -m build
5980
python -m twine check dist/*
6081
```
6182

62-
`hmmm`: the complete higher-dimensional UCNS construction and the exact geometric operation of every Public Gonol function position remain unresolved. Unresolved geometry stays unresolved; semantic machinery is not used to fill it.
83+
`hmmm`: the embedded continuum surface operator, exact continuum boundary-measure capacity theorem, derived PCEA channel encoding, complete higher-dimensional UCNS construction, and exact geometric operation of every Public Gonol function position remain unresolved. Unresolved geometry stays unresolved; semantic machinery is not used to fill it.
Lines changed: 118 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
1+
# UCNS Mobius Band Standing-Wave Continuum
2+
3+
Status: SURVIVED as an explicit UCNS continuum standing-wave construction on
4+
the canonical Mobius band coordinate domain; SURVIVED for finite capacity
5+
requests that fit the derived sampled boundary trace rank; FALSIFIED for
6+
bulk-only capacity counts that exceed that trace rank; UNRESOLVED for PCEA
7+
promotion.
8+
9+
## Domain Claim
10+
11+
Surface form: standing-wave continuous-boundary trace.
12+
13+
Term id: `ucns.mobius_band_standing_wave.boundary_trace`.
14+
15+
Claiming domain: UCNS geometry.
16+
17+
Claimed sense: finite value samples, with optional normal derivative slots, on
18+
the single continuous physical boundary induced by a scalar coordinate-domain
19+
standing-wave operator on the canonical Mobius band.
20+
21+
Scope: `src/ucns/mobius_band_standing_wave.py` and tests that consume that
22+
exact coordinate-domain band model.
23+
24+
Excluded uses: embedded Laplace-Beltrami theorem, physical field theory,
25+
spectral/zeta theorem, PCEA runtime capacity, FFT/discrete spectral tooling,
26+
and arbitrary boundary-measure promotion.
27+
28+
Status: provisional candidate.
29+
30+
## Construction
31+
32+
The canonical Mobius ribbon supplies the coordinate domain:
33+
34+
```text
35+
(t, u) in [0, 2] x [-w, w]
36+
(t + 1, u) ~ (t, -u)
37+
```
38+
39+
The spatial operator is:
40+
41+
```text
42+
L X = -(d2 X / dt2 + d2 X / du2)
43+
```
44+
45+
The standing-wave equation is:
46+
47+
```text
48+
d2 psi / d tau2 = c^2 * (d2 psi / d t2 + d2 psi / d u2)
49+
```
50+
51+
The boundary conditions are:
52+
53+
```text
54+
X(t+1,u) = X(t,-u)
55+
dX/dt(t+1,u) = dX/dt(t,-u)
56+
dX/du(t+1,u) = -dX/du(t,-u)
57+
dX/du(t,+w) = 0
58+
dX/du(t,-w) = 0
59+
```
60+
61+
The admissible basis is separable. The one-turn longitudinal character must
62+
match the transverse parity:
63+
64+
```text
65+
n even: longitudinal cos/sin(n*pi*t) or constant, transverse cos(k*pi*u/w)
66+
n odd: longitudinal cos/sin(n*pi*t), transverse sin((k+1/2)*pi*u/w)
67+
```
68+
69+
## Boundary Trace
70+
71+
The Mobius strip has one continuous physical boundary. The executable trace
72+
uses `u=+w` over the complete two-turn boundary traversal:
73+
74+
```text
75+
X(2*i/sample_count, w), 0 <= i < sample_count
76+
```
77+
78+
Optional normal-derivative trace slots are present, but the declared Neumann
79+
condition makes them zero for admissible modes. They therefore do not increase
80+
rank.
81+
82+
For longitudinal cutoff `N` and transverse cutoff `K`, the interior basis
83+
dimension is:
84+
85+
```text
86+
(K + 1) * (1 + 2*N)
87+
```
88+
89+
The sampled boundary value trace rank is bounded by the boundary harmonics and
90+
the sample count:
91+
92+
```text
93+
rank <= min(sample_count, 1 + 2*N)
94+
```
95+
96+
Increasing `K` adds transverse bulk modes but does not add independent boundary
97+
trace channels at the same longitudinal cutoff.
98+
99+
## Boundary-Capacity Result
100+
101+
The boundary-capacity principle survives in this finite tested form:
102+
103+
- finite channel requests that fit the derived sampled boundary trace rank are
104+
`SURVIVED`;
105+
- channel requests that fit the interior basis dimension but exceed the
106+
boundary trace rank are `FALSIFIED`;
107+
- arbitrary promotion from this sampled trace to PCEA runtime capacity remains
108+
`UNRESOLVED`.
109+
110+
No capacity channel is assigned by fiat. Discrete FFT/epicycle tooling is not
111+
used as a PDE derivation.
112+
113+
## hmmm
114+
115+
- embedded Laplace-Beltrami operator on the realized three-dimensional ribbon;
116+
- exact continuum boundary-measure capacity theorem rather than finite sampled
117+
rank;
118+
- derived encoding from continuum trace functions into PCEA runtime channels.
Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
# UCNS Mobius Standing-Wave Root Loop
2+
3+
Status: SURVIVED as the smallest explicit UCNS continuum standing-wave
4+
construction; FALSIFIED as a direct source of PCEA-style boundary-measure
5+
capacity channels.
6+
7+
## Domain Claim
8+
9+
Surface form: standing-wave boundary trace.
10+
11+
Term id: `ucns.mobius_standing_wave.boundary_trace`.
12+
13+
Claiming domain: UCNS geometry.
14+
15+
Claimed sense: endpoint value/derivative trace induced by the scalar
16+
second-order standing-wave operator on the native two-turn Mobius root loop.
17+
18+
Scope: `src/ucns/mobius_standing_wave.py` and tests that consume that exact
19+
root-loop model.
20+
21+
Excluded uses: physical field theory, spectral/zeta theorem, PCEA runtime
22+
capacity, FFT/discrete spectral tooling, and Möbius band or higher-dimensional
23+
domains.
24+
25+
Status: provisional candidate.
26+
27+
## Construction
28+
29+
The native UCNS Mobius root loop supplies the continuum coordinate:
30+
31+
```text
32+
t in [0, 2]
33+
```
34+
35+
The spatial operator is:
36+
37+
```text
38+
L X = -d2 X / dt2
39+
```
40+
41+
The standing-wave equation is:
42+
43+
```text
44+
d2 psi / d tau2 = c^2 d2 psi / d t2
45+
```
46+
47+
The complete-return boundary conditions are:
48+
49+
```text
50+
X(0) = X(2)
51+
X'(0) = X'(2)
52+
```
53+
54+
The admissible spatial basis is:
55+
56+
```text
57+
1
58+
cos(n*pi*t), n >= 1
59+
sin(n*pi*t), n >= 1
60+
```
61+
62+
Each positive mode changes sign under one visible turn when `n` is odd and
63+
returns after two visible turns.
64+
65+
## Boundary Trace
66+
67+
For each basis function, the trace is derived from endpoints:
68+
69+
```text
70+
(X(0), X(2), X'(0), X'(2))
71+
```
72+
73+
The trace image has rank `1` for only the constant mode and rank `2` once any
74+
positive sine/cosine mode is admitted. Increasing the interior mode cutoff adds
75+
more interior basis functions, but it does not add independent trace channels in
76+
this one-dimensional root-loop model.
77+
78+
## PCEA Capacity Induction
79+
80+
This model does not induce the capacity channels required by PCEA's
81+
boundary-capacity hypothesis. The derived trace rank is at most `2`, while
82+
PCEA-style boundary capacity asks for a boundary-measure-indexed family of
83+
independent coupling channels.
84+
85+
No channels are assigned by fiat. Discrete FFT/epicycle tooling is not used as a
86+
PDE derivation.
87+
88+
The next larger construction is `src/ucns/mobius_band_standing_wave.py`, which
89+
adds the canonical Mobius band coordinate domain and its continuous physical
90+
boundary. That construction does not retroactively change this root-loop
91+
falsifier.
92+
93+
## hmmm
94+
95+
- embedded Laplace-Beltrami operator on the realized ribbon;
96+
- exact continuum boundary-measure capacity theorem;
97+
- derived map from continuum trace functions into PCEA capacity channels.

libs/ucns/src/ucns/__init__.py

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@
44
# module_kind: facade
55
# summary: geometry-only UCNS public surface
66
# owner: Erin Spencer
7-
# public_surface: carrier geometry, framed Mobius root loop, exact Public Gonol carrier, Mobius vesica and seed geometry
7+
# public_surface: carrier geometry, framed Mobius root loop, exact Public Gonol carrier, Mobius vesica and seed geometry, native root-loop and band standing-wave candidates
88
# internal_surface: none
99
# auth_boundary: none
1010
# storage_boundary: none
1111
# network_boundary: none
1212
# user_data_boundary: none
1313
# admin_only: false
14-
# tests: tests.test_public_gonol, tests.test_geometry_public_surface, tests.test_carrier
14+
# tests: tests.test_public_gonol, tests.test_geometry_public_surface, tests.test_carrier, tests.test_mobius_standing_wave, tests.test_mobius_band_standing_wave
1515
# rollout: active geometry-only package facade
1616
# rollback: restore prior facade from Git history
17-
# requires: directed_carrier_floor, ucns_native_mobius_geometry, ucns_public_gonol_geometry, ucns_mobius_vesica_candidate, ucns_mobius_seed_of_life_candidate
17+
# requires: directed_carrier_floor, ucns_native_mobius_geometry, ucns_public_gonol_geometry, ucns_mobius_vesica_candidate, ucns_mobius_seed_of_life_candidate, ucns_mobius_standing_wave_root_loop, ucns_mobius_band_standing_wave
1818
# since: 2026-08-20
1919
# unresolved: canonical completion of the full UCNS geometric construction
2020
# === END MODULE_BUILD ===
@@ -30,7 +30,8 @@
3030
"""UCNS geometry.
3131
3232
The active package surface is deliberately geometric: carriers, exact motion,
33-
Möbius constructions, geometric certificates, and topological/prime geometry.
33+
Möbius constructions, root-loop and band standing-wave candidates, geometric
34+
certificates, and topological/prime geometry.
3435
Lexical semantics, corpora, morphology, definition recursion, evaluator
3536
frameworks, PTCNA state, and cross-stack adapters are not UCNS package content.
3637
"""
@@ -69,6 +70,10 @@
6970
from .mobius_vesica import * # noqa: F401,F403 - geometric public module
7071
from .mobius_seed import __all__ as _mobius_seed_all
7172
from .mobius_seed import * # noqa: F401,F403 - geometric public module
73+
from .mobius_standing_wave import __all__ as _mobius_standing_wave_all
74+
from .mobius_standing_wave import * # noqa: F401,F403 - geometric public module
75+
from .mobius_band_standing_wave import __all__ as _mobius_band_standing_wave_all
76+
from .mobius_band_standing_wave import * # noqa: F401,F403 - geometric public module
7277

7378
__all__ = list(dict.fromkeys([
7479
"DirectMobiusError",
@@ -95,4 +100,4 @@
95100
"radius_from_breadth",
96101
"same_lifted_position",
97102
"same_visible_position",
98-
] + list(_mobius_vesica_all) + list(_mobius_seed_all)))
103+
] + list(_mobius_vesica_all) + list(_mobius_seed_all) + list(_mobius_standing_wave_all) + list(_mobius_band_standing_wave_all)))

0 commit comments

Comments
 (0)