-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFdrsFormal.lean
More file actions
49 lines (36 loc) · 1.71 KB
/
Copy pathFdrsFormal.lean
File metadata and controls
49 lines (36 loc) · 1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/-
FdrsFormal - Function-Defined Radix Systems
Formalization of the fdrs.md specification, organized by mathematical dependencies.
## Structure
- **Core/**: Foundation (radix sequences, finite/infinite spaces, bijections)
- **Operations/**: Arithmetic operations (Tick, addition, subtraction, predecessor)
- **Topology/**: Ultrametric structure, continuity, locality
- **FunctionSpaces/**: Mixed-radix complexes (𝕋(V), projections P_L, details Δ_L)
- **NumberTheory/**: Analytic number theory (Dirichlet, characters, factorization)
- **Integration/**: Combined topology + ANT (dual filtrations, complexity bounds)
- **Modes/**: Modes of application (VariableRadix incl. the Phase-13 Gosper cluster,
ContextDependent, ExtendedBase, BaseZeroSea, Adelic, SyntheticPlace)
- **Analysis/**: Digit-conditional signal analysis (imported transitively via Modes)
- **Composition/**: Multi-timeline routing and composition
- **Applications/**: Corpus theory applied to deployed systems (Field25519Carry)
For live status (file/theorem counts, sorries, stubs) run
`python3 scripts/fdrs-summary`; counts are intentionally not hard-coded here.
-/
-- Foundation layer
import FdrsFormal.Core
-- Operations layer
import FdrsFormal.Operations
-- Topology layer
import FdrsFormal.Topology
-- Function Spaces layer (Tier 6-9)
import FdrsFormal.FunctionSpaces
-- Number Theory layer (Tier 10-13) - NEW 2026-01-21
import FdrsFormal.NumberTheory
-- Integration layer (Phase 4) - NEW 2026-01-30
import FdrsFormal.Integration
-- Modes layer (Phases 5-6) - NEW 2026-01-30
import FdrsFormal.Modes
-- Composition layer (Phase 5) - NEW 2026-01-30
import FdrsFormal.Composition
-- Applications layer (fdrs.md §14.14) - NEW 2026-07-12
import FdrsFormal.Applications