-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCognition-as-Constraint-Historical-Computation.tex
More file actions
2357 lines (1857 loc) · 109 KB
/
Cognition-as-Constraint-Historical-Computation.tex
File metadata and controls
2357 lines (1857 loc) · 109 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
\documentclass[11pt]{article}
% ============================================================
% Encoding and Fonts
% ============================================================
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
% ============================================================
% Page Geometry and Spacing
% ============================================================
\usepackage{geometry}
\geometry{margin=1in}
\usepackage{setspace}
\setstretch{1.15}
% ============================================================
% Mathematics and Symbols
% ============================================================
\usepackage{amsmath,amssymb,amsthm,mathtools}
% ============================================================
% Quotations and References
% ============================================================
\usepackage{csquotes}
\usepackage{hyperref}
\hypersetup{
colorlinks=true,
linkcolor=black,
citecolor=black,
urlcolor=black
}
% ============================================================
% Tables and Figures (minimal)
% ============================================================
\usepackage{booktabs}
% ============================================================
% Theorem Environments
% ============================================================
\theoremstyle{definition}
\newtheorem{definition}{Definition}
\theoremstyle{plain}
\newtheorem{assumption}{Assumption}
\newtheorem{lemma}{Lemma}
\newtheorem{proposition}{Proposition}
\newtheorem{theorem}{Theorem}
\theoremstyle{remark}
\newtheorem{remark}{Remark}
% ============================================================
% Custom Commands
% ============================================================
\newcommand{\Hist}{\mathsf{Hist}}
\newcommand{\Fut}{\mathsf{Fut}}
\newcommand{\Ev}{\mathsf{Ev}}
\newcommand{\Viab}{\mathrm{Viab}}
% ============================================================
% Title Page
% ============================================================
\title{
Cognition as Constraint-Historical Computation:\\
\large A Formalization of the Info--Computational Framework
}
\author{
Flyxion\\
\small Independent Researcher
}
\date{December 2025}
\begin{document}
\maketitle
\begin{abstract}
The Info--Computational (ICON) framework proposes that information, computation,
and cognition form a continuous natural process grounded in the physical world.
Information is understood as physically instantiated structure, computation as
the lawful transformation of that structure, and cognition as the adaptive
regulation of interaction characteristic of living systems. While ICON offers a
powerful unifying perspective, its core commitments are often presented at a
philosophical level, leaving their formal implications underdeveloped.
This paper provides a rigorous formalization of ICON by integrating
field-theoretic dynamics with an event-historical ontology of irreversible
constraint acquisition. Information is recast as constrained optionality over
admissible futures, computation as the irreversible application of events that
reshape possibility spaces, and morphology as sedimented constraint performing
computational work through physical form. Cognition is defined as the
history-dependent preservation of nonempty viable futures under energetic and
organizational limits.
Using category-theoretic presheaves, natural transformations, and hybrid
dynamical systems, the framework captures learning, development, and commitment
as regime-changing events that rewrite the space of admissible histories. A
worked reconstruction of bacterial chemotaxis demonstrates that minimal
biological cognition can be expressed as event-historical constraint management
without appeal to representation or optimization. The paper further contrasts
this approach with state-based variational models, highlighting the necessity
of explicit regime change for modeling life and cognition.
By integrating ICON with the Spherepop calculus, the paper shows how
informational and computational naturalism can be made formally operational.
The result is a unified account of cognition as constraint-historical
computation, applicable across biological, artificial, and social systems, and
grounded in the irreversible construction of worlds.
\end{abstract}
% ============================================================
\section{Introduction}
% ============================================================
The scientific study of cognition remains fragmented across multiple, often
incompatible explanatory frameworks. Classical computationalism models cognition
as symbolic manipulation; dynamical systems approaches emphasize continuous
state evolution; variational and Bayesian frameworks recast cognition as
inference or optimization; and enactive and embodied theories stress the role of
physical interaction and lived experience. While each of these perspectives has
yielded important insights, none has yet provided a fully satisfactory account
of how cognition arises as a natural process continuous with physics, biology,
and social organization.
A central difficulty lies in the treatment of information and computation.
Traditional cognitive models often assume abstract informational states and
algorithmic computation as primitive, importing mathematical formalisms whose
ontological status remains unclear when applied to living systems. As a result,
cognition is frequently modeled as a special-purpose process layered atop the
physical world, rather than as a phenomenon emerging from the same material and
organizational principles that govern matter and life.
The Info--Computational (ICON) framework, developed by Dodig--Crnkovic, offers a
systematic attempt to resolve this tension by naturalizing both information and
computation. ICON treats information as physically instantiated structure and
computation as the lawful dynamics of that structure, extending the notion of
computation beyond symbolic algorithms to encompass biological, chemical, and
social processes. Cognition, on this view, is not an abstract representational
faculty but a mode of organized interaction characteristic of living systems.
Despite its unifying ambition, ICON is often presented at a level of
philosophical generality that leaves open questions about formal structure,
mechanism, and testability. In particular, the framework requires a precise
account of how informational structure constrains future behavior, how
computational processes accumulate historically, and how learning and
development can irreversibly alter the space of possible actions. Without such
an account, ICON risks remaining an interpretive stance rather than a
computational or dynamical theory.
This paper addresses that gap by providing a formalization of ICON grounded in
event-historical dynamics and constraint-based computation. Rather than modeling
cognition as state evolution within a fixed space, we treat histories of
irreversible events as primary and define information in terms of admissible
futures conditioned on those histories. Computation is identified with the
physical processes that transform these future spaces, while morphology is
understood as accumulated constraint that performs computational work by
restricting possibility.
The formalism integrates continuous field-theoretic dynamics with discrete
regime-changing events, yielding a hybrid ontology capable of representing
development, learning, and commitment as genuine structural transformations.
Category-theoretic tools, including presheaves and natural transformations, are
used to make explicit the relational and invariant aspects of constraint, while
viability theory provides a criterion for cognition grounded in continued
existence rather than optimization or representational accuracy.
The paper further situates this approach relative to prominent contemporary
frameworks. In contrast to classical computationalism, it rejects symbolic
representation as a foundational explanatory primitive. In contrast to purely
dynamical models, it emphasizes irreversibility and historical constraint. In
contrast to variational and Bayesian approaches, including the Free Energy
Principle, it allows the constraint language itself to change through discrete
events, rather than confining adaptation to trajectories within a fixed model
class. At the same time, it aligns with enactive and embodied approaches by
treating cognition as inseparable from physical form and environmental coupling,
while providing a formal apparatus often absent from those traditions.
To demonstrate the concreteness of the framework, the paper integrates ICON with
the Spherepop calculus, an event-sourced formal system in which objects are
defined by their histories of irreversible commitments. Within this setting,
information appears as constrained optionality, computation as irreversible
event application, and cognition as the maintenance of viable futures. A worked
example based on bacterial chemotaxis illustrates how minimal cognition can be
captured without appeal to representation or inference.
Taken together, these developments aim to reposition cognition as a natural,
history-dependent process of constraint construction. By making the
commitments of Info--Computationalism formally explicit, the paper seeks to
provide a foundation for studying cognition, life, and intelligence within a
single, coherent theoretical framework.
% ============================================================
\section{The Info-Computational (ICON) Framework}
% ============================================================
The \emph{Info-Computational (ICON)} framework, developed by \textbf{0}, is a unifying relational perspective for understanding natural phenomena, including living organisms and cognition, through the joint lenses of information and computation. ICON aims to naturalize cognition by situating it within the same physical processes that govern matter, life, and organization, thereby rejecting any principled separation between cognitive science and the natural sciences.
At its core, ICON integrates two complementary theses: \emph{(pan)informationalism} and \emph{(pan)computationalism}. Informationalism characterizes the physical universe as an informational structure, while computationalism interprets the evolution of that structure as computation. These commitments are not metaphysical claims about abstract entities, but methodological constraints on explanation: to explain a phenomenon is to describe its informational organization and the computational processes by which that organization changes.
\subsection{Information as Physical Structure}
Within ICON, information is identified with physically instantiated structure. Information is not symbolic content, semantic representation, or abstract data; rather, it consists in the organization, relations, and constraints of material systems. Consequently, information is inherently relational and observer-dependent, where an observer is itself a physical system embedded within the same informational universe it observes.
Differences count as information only insofar as they are physically realized and causally efficacious for some interacting system. This stance rejects disembodied or purely syntactic notions of information, grounding informational description in material embodiment and interaction.
\subsection{Computation as Natural Dynamics}
Computation, in the ICON framework, is understood as the lawful transformation of informational structures over time. This notion of computation is deliberately broader than classical Turing computation. It encompasses chemical reactions, biological regulation, morphogenesis, neural dynamics, and social interaction as genuine computational processes.
Natural computation is typically distributed rather than centralized, asynchronous rather than clocked, and interaction-driven rather than algorithmically prescribed. Under ICON, computation is not imposed upon nature by an external interpreter; it is a process continuously performed by physical systems themselves.
\subsection{Morphological Computing as the Mediating Mechanism}
A central role within ICON is played by \emph{morphological computing}. Morphological computing refers to the way in which an agent’s physical form—its geometry, topology, material properties, and dynamical constraints—actively contributes to computational processes. The body is not treated as a passive carrier of control algorithms, but as an active participant in computation.
Through its morphology, an agent can filter inputs, stabilize dynamics, offload control, and simplify behavioral coordination. Tasks that would otherwise require complex centralized processing can be partially or fully resolved by the physical structure of the system itself. Morphological computing thus provides the concrete mechanism that links informational structure with computational dynamics, grounding computation firmly in embodiment.
\subsection{Cognition as a Life Process}
ICON adopts the strong naturalization principle that cognition is coextensive with life. Cognition is not defined primarily in terms of representation, language, or abstract reasoning, but in terms of a system’s capacity for self-maintenance, environmental coupling, and adaptive regulation.
From this perspective, cognition consists of networks of natural computational processes operating on informational structures. These processes occur across all levels of biological organization, from single cells to complex nervous systems, and extend naturally to collective and social systems. Cognition is therefore embodied, processual rather than state-based, and irreducibly historical.
\subsection{Relational Perspective and Embodiment}
A defining commitment of ICON is its relational epistemology. Information and computation are always defined relative to an interacting system; there is no privileged, observer-independent description of informational content. Informational relevance arises from histories of interaction and coupling between systems, each with its own morphology and constraints.
This relational stance avoids both naïve realism and subjective idealism by grounding perspective in physical embodiment. Embodiment is not an optional feature of cognition, but a necessary condition for informational access and computational activity.
\subsection{Unconventional and Distributed Computation}
ICON aligns naturally with unconventional and distributed models of computation. In such models, information processing emerges from interaction and message exchange among components of a system, rather than from centralized symbolic manipulation. Distributed agent-based and interaction-oriented computational paradigms provide a closer match to biological, ecological, and social systems, where cognition arises from coordination and coupling rather than from global control.
\subsection{Hierarchical Organization Across Scales}
Morphological and natural computation operate across multiple scales of organization. Molecular self-assembly, cellular regulation, neural organization, organismal behavior, and social coordination all instantiate the same informational-computational principles, albeit with different morphologies and constraints. ICON is thus hierarchical without being reductionist: higher-level cognitive phenomena are not eliminated in favor of lower-level physics, but understood as organizationally emergent regimes grounded in physical computation.
\subsection{Summary}
Within the ICON framework, information, computation, and cognition form a single explanatory continuum. Information is physical structure; computation is physical change; cognition is the embodied, history-dependent regulation of interaction. By integrating these commitments, ICON provides a coherent framework for studying intelligence and cognition as natural physical processes, continuous with life itself and applicable to both biological organisms and artificial autonomous agents.
% ============================================================
\section{Formalizing the ICON Framework: Field-Theoretic and Event-Historical Commitments}
% ============================================================
This section presents a formalization of the Info-Computational (ICON) framework
in terms of a hybrid ontology that combines continuous field-theoretic structure
with discrete, irreversible event histories. The aim is to make explicit the
ontological commitments implicit in ICON—physical information, natural
computation, morphological embodiment, and cognition as life-process—while
providing a mathematical language suitable for analysis, simulation, and
comparison with contemporary dynamical and control-theoretic models.
\subsection{Field-Theoretic Ontology of Information and Computation}
Let $M$ denote spacetime (or an environment manifold), and let $\Lambda$ index
organizational scales (e.g.\ molecular, cellular, neural, organismic, social).
We define a state bundle
\[
\pi : \mathcal{X} \to M \times \Lambda,
\]
whose sections $x \in \Gamma(\mathcal{X})$ represent the physically instantiated
informational structure of the world across scales.
We decompose the system state as
\[
x = (\Phi, V, \Sigma),
\]
where each component captures a distinct but coupled aspect of the system’s
physical and informational organization. The component $\Phi$ denotes
\emph{structural fields}, encompassing morphology, material properties, boundary
conditions, and the geometric constraints that delimit admissible configurations
and interactions. The component $V$ denotes \emph{interaction or flow fields},
encoding transport processes, signaling pathways, coupling relations, and modes
of actuation through which structure is dynamically engaged with its
environment. The component $\Sigma$ denotes \emph{entropy and irreversibility
fields}, representing dissipation, path dependence, and the thermodynamic costs
associated with maintaining organization over time. Together, these components
define a coupled state description in which form, interaction, and irreversible
history are treated as co-evolving and inseparable aspects of natural
computation.
This triadic decomposition captures ICON’s core claim that information is always
physically instantiated ($\Phi$), that computation is the lawful evolution of
that structure ($V$), and that history and irreversibility are fundamental
($\Sigma$).
\subsection{Relational Information as an Agent-Dependent Functional}
In ICON, information is not an intrinsic scalar of the world but a relational
quantity defined with respect to a cognizing agent. Let $A$ be an embodied agent
realized as a subsystem of $x$, with embodiment parameters $\theta_A$ and an
interaction domain $\Omega_A(t) \subset M$.
We define the information available to $A$ at time $t$ as a functional
\[
\mathcal{I}_A[x](t) =
\int_{\Omega_A(t)}
\rho_A\!\left(\Phi, V, \Sigma; \theta_A\right)\, d\mu,
\]
where $\rho_A$ measures differences that make a difference for $A$, given its
morphology and coupling. This formalizes the ICON commitment that information is
observer-relative without being subjective: different agents induce different
informational observables over the same physical state.
\subsection{Natural Computation as Field Evolution}
Natural computation is identified with the time evolution of the physical state:
\[
\frac{d}{dt}x(t) = \mathcal{F}\big(x(t), u(t), \eta(t)\big),
\]
where $u(t)$ represents boundary forcing or control inputs (including actions of
other agents) and $\eta(t)$ represents stochastic perturbations.
To capture morphological computation, we decompose the generator as
\[
\mathcal{F}
=
\mathcal{F}_{\mathrm{flow}}(V)
+
\mathcal{F}_{\mathrm{constraint}}(\Phi, V)
+
\mathcal{F}_{\mathrm{diss}}(\Sigma),
\]
where $\mathcal{F}_{\mathrm{constraint}}$ encodes passive computation performed
by morphology itself, such as geometric feasibility, compliance filtering, and
material memory.
\subsection{Morphological Computing as Constraint-Induced Efficiency}
Let $\mathcal{T}$ be a class of tasks and let $u(t)$ denote active control inputs.
Define a control-effort functional for an agent $A$:
\[
\mathcal{E}_A[u]
=
\int_0^T
\left(
\|u(t)\|^2
+
\alpha\,\mathcal{D}(\Sigma(t))
\right)\, dt,
\]
where $\mathcal{D}$ measures dissipative cost.
Morphological computing is expressed as the existence of structural configurations
$\Phi'$ such that, for all $\tau \in \mathcal{T}$,
\[
\inf_{u}\mathcal{E}_A[u \mid \Phi']
<
\inf_{u}\mathcal{E}_A[u \mid \Phi].
\]
Thus, morphology performs computation by reshaping the constraint geometry of
the system, reducing the energetic and informational burden of active control.
\subsection{Event-Historical Ontology and Irreversibility}
Field evolution alone is typically Markovian. ICON, however, treats cognition
and life as fundamentally historical. To capture this, we introduce an event
space $E$ and define a history as a finite or countable sequence
\[
h = (e_1,t_1)\cdots(e_n,t_n) \in \mathcal{H}.
\]
The system’s evolution is conditioned on its history:
\[
x(t) = \mathcal{U}(t; h)\,x(0).
\]
Each event $e \in E$ acts as an irreversible update on the system’s admissible
future set $\mathcal{A}(x)$:
\[
e : \mathcal{A}(x) \to \mathcal{A}(x'),
\qquad
\mathcal{A}(x') \subsetneq \mathcal{A}(x).
\]
Events do not merely change the state; they eliminate possibilities, encoding
commitments, learning, development, and institutional constraint.
\subsection{Two-Channel Dynamics: Texture and Regime}
We decompose the state as
\[
x = (\xi, \kappa),
\]
where $\xi$ are reversible or weakly constrained \emph{texture} variables and
$\kappa$ are \emph{regime} variables encoding morphology, wiring, norms, and
constraints.
The dynamics take the hybrid form
\[
\dot{\xi} = f(\xi, \kappa),
\qquad
\kappa^{+} = \kappa \oplus e
\quad \text{(at event times)}.
\]
This two-channel structure distinguishes continuous evolution within a regime
from discrete, irreversible regime changes induced by events.
\subsection{Cognition as History-Conditioned Viability}
Let $K \subset \mathcal{X}$ be a viability set corresponding to continued
existence or functional integrity. A system is cognitive in the ICON sense if
there exists a (possibly distributed) policy $\pi$ such that
\[
x(t) \in K \quad \forall t \in [0,T],
\]
where the policy is explicitly history-dependent:
\[
\pi_t = \pi(\mathrm{obs}_{\le t}, h_{\le t}).
\]
Cognition is thus identified with the capacity to maintain viability through
history-sensitive constraint management, rather than with representation or
symbol manipulation.
\subsection{Hybrid Generative Law}
Combining fields and events, the ICON framework can be expressed as a hybrid
system:
\[
\dot{x}(t) = \mathcal{F}(x(t),u(t)),
\]
with discrete updates
\[
\text{if } G_e(x,t) \text{ then } x(t^{+}) = \mathcal{R}_e(x(t^{-})),
\]
where $\mathcal{R}_e$ acts primarily on regime variables $\kappa$. Learning,
development, and social commitment appear naturally as event-triggered rewrites
of constraint structure.
\subsection{Summary}
In this formalization, ICON commits to a world composed of physically
instantiated informational fields whose evolution constitutes natural
computation, and whose cognitive capacities arise from the accumulation of
irreversible, morphology-altering events. Morphological computing appears as
constraint-induced efficiency, while cognition emerges as the historical
management of viable futures under energetic and informational limits.
% ============================================================
\section{Platonic Constraints as Functorial Structure}
% ============================================================
\subsection{Event-Historical Foundations}
We formalize cognition as an event-historical process by treating histories,
rather than instantaneous states, as the primary carriers of constraint. In this
setting, temporal asymmetry and irreversibility are not emergent properties of
dynamics but foundational features of the representational framework itself.
\begin{definition}[History Category]
Let $\mathsf{Ev}$ be a set of event types. The \emph{history category}
$\mathsf{Hist}$ is defined as a category whose objects are finite, admissible
event traces of the form $h = (e_1,\dots,e_n)$, where admissibility is determined
by the prevailing physical, biological, or organizational constraints. A
morphism $i : h \to h'$ exists if and only if $h'$ is obtained from $h$ by
extension with a (possibly empty) sequence of additional events. Composition of
morphisms is given by concatenation of such extensions, reflecting the temporal
ordering of events, and identity morphisms correspond to empty extensions that
leave a history unchanged.
\end{definition}
Intuitively, a morphism represents a permissible continuation of the world.
The categorical structure encodes temporal asymmetry and irreversibility.
\subsection{Admissible Futures as a Presheaf}
Let $\mathsf{Fut}$ be a category whose objects represent possible future
continuations, such as sets of trajectories, policies, or field evolutions, and
whose morphisms encode appropriate notions of restriction or comparison between
such futures.
\begin{definition}[Admissible Futures Presheaf]
An \emph{admissible futures presheaf} is a contravariant functor
\[
\mathcal{A} : \mathsf{Hist}^{op} \to \mathsf{Fut}
\]
with the property that, for each history $h \in \mathsf{Hist}$, the object
$\mathcal{A}(h)$ represents the collection of all future continuations that are
consistent with the commitments encoded in $h$. For any morphism
$i : h \to h'$ corresponding to an extension of histories, the associated map
\[
\mathcal{A}(i) : \mathcal{A}(h') \to \mathcal{A}(h)
\]
acts as a restriction operation that forgets the additional commitments
introduced by the extension from $h$ to $h'$, thereby recovering the larger
space of futures admissible prior to those commitments.
\end{definition}
\begin{assumption}[Monotonic Constraint]
For any $i:h\to h'$, the image of $\mathcal{A}(i)$ is a (typically proper)
subobject of $\mathcal{A}(h)$.
\end{assumption}
This formalizes the principle that longer histories impose strictly stronger
constraints on the future.
\subsection{Platonic Forms as Natural Transformations}
We now reinterpret Platonic forms not as generative templates, but as invariant
constraints on admissible futures.
\begin{definition}[Platonic Constraint]
A \emph{Platonic constraint} is a natural transformation
\[
\mathcal{P} : \mathcal{A} \Rightarrow \mathcal{A}
\]
such that for each history $h$, the component
\[
\mathcal{P}_h : \mathcal{A}(h) \to \mathcal{A}(h)
\]
selects a subset of futures satisfying invariant structural constraints.
\end{definition}
Naturality ensures that for any extension $i:h\to h'$, the square
\[
\begin{CD}
\mathcal{A}(h') @>\mathcal{P}_{h'}>> \mathcal{A}(h') \\
@V\mathcal{A}(i)VV @VV\mathcal{A}(i)V \\
\mathcal{A}(h) @>>\mathcal{P}_h> \mathcal{A}(h)
\end{CD}
\]
commutes.
\begin{assumption}[Idempotence]
Platonic constraints satisfy $\mathcal{P}\circ\mathcal{P}=\mathcal{P}$.
\end{assumption}
Idempotence captures the idea that forms are stable feasibility regions rather
than stepwise rules.
\begin{lemma}[Invariant Feasibility Sub-Presheaf]
An idempotent Platonic constraint $\mathcal{P}$ determines a sub-presheaf
$\mathrm{Fix}(\mathcal{P})\hookrightarrow\mathcal{A}$ defined by
\[
\mathrm{Fix}(\mathcal{P})(h)=\{\,f\in\mathcal{A}(h)\mid \mathcal{P}_h(f)=f\,\}.
\]
\end{lemma}
\subsection{Morphology as Regime Change}
Let $\kappa$ denote a morphological or organizational regime determining which
events are available and how they compose.
A regime change event $e$ induces a functor
\[
\mathcal{M}_e:\mathsf{Hist}_{\kappa}\to\mathsf{Hist}_{\kappa'}
\]
rewriting the space of admissible histories.
Admissible futures are transported along $\mathcal{M}_e$ via pullback and
pushforward, formalizing embodiment as constraint-language modification rather
than state perturbation.
\subsection{Cognition as Viability Preservation}
Let $K\subseteq\mathcal{X}$ be a viability condition.
Define the \emph{viable futures sub-presheaf}
\[
\mathcal{V}(h)=\{\,f\in\mathcal{A}(h)\mid f \text{ remains within } K\,\}.
\]
\begin{definition}[Cognition]
A system is cognitive iff there exists a history-dependent event selection
policy such that for the realized history chain
\[
h_0\to h_1\to \cdots,
\]
the viable futures presheaf satisfies $\mathcal{V}(h_t)\neq\varnothing$ for all
$t$.
\end{definition}
\begin{proposition}[Constraints, Not Blueprints]
Platonic forms correspond to idempotent natural transformations on the
admissible futures presheaf, defining invariant feasibility regions rather than
generative templates. Morphological computation exploits these invariant
constraints to preserve viability under event-historical evolution.
\end{proposition}
% ============================================================
\section{Worked Example: Chemotactic Cell as Event-Historical Cognition}
% ============================================================
We now instantiate the preceding formalism in the simplest nontrivial cognitive
system: a chemotactic unicellular organism. This example demonstrates that
minimal cognition can be characterized as history-dependent constraint
management without appeal to representation or optimization.
\subsection{Environment and History Structure}
Let the environment be a spatial manifold $M=\mathbb{R}^2$ equipped with a
nutrient concentration field
\[
\Phi_c : M \times \mathbb{R}^+ \to \mathbb{R}^+.
\]
Let $\mathsf{Ev}=\{\textsf{Run},\textsf{Tumble},\textsf{Adapt}\}$ be the event
types available to the organism. These events encode changes in motion and
internal organization.
Histories are finite traces of these events. The history category
$\mathsf{Hist}$ is defined as in the previous section, with admissibility
determined by biochemical feasibility (e.g.\ motor saturation, adaptation
timescales).
\subsection{Admissible Futures}
Let $\mathsf{Fut}=\mathsf{Set}$. For each history $h$, we define $\mathcal{A}(h)$
to be the set of admissible future trajectories
\[
\gamma : [t_h,\infty) \to M
\]
that are consistent with the organism’s current motility constraints, its
internal biochemical regime, and the ambient environmental field $\Phi_c$.
Admissibility is therefore determined jointly by bodily capabilities,
organizational state, and environmental coupling, rather than by any abstract
planning or representational criterion.
For any extension $i:h\to h'$, corresponding to the accumulation of additional
events beyond those already recorded in $h$, the associated restriction map
\[
\mathcal{A}(i):\mathcal{A}(h')\to\mathcal{A}(h)
\]
forgets the additional commitments imposed by the events in $h'\setminus h$.
This restriction recovers the larger space of futures that were admissible prior
to those commitments, thereby formalizing the monotonic reduction of
possibility induced by irreversible history extension.
\subsection{Texture and Regime Variables}
Within this framework, we distinguish between two classes of variables that
play different roles in the dynamics. Texture variables, denoted $\xi$,
represent continuously evolving biochemical states such as receptor occupancy,
signaling molecule concentrations, or other fast-changing internal quantities.
These variables evolve smoothly in time according to the organism’s intrinsic
dynamics and its immediate environmental coupling.
Regime variables, denoted $\kappa$, represent slowly changing or irreversible
organizational constraints, including motor bias thresholds, adaptation
parameters, or other structural features that determine which future events and
trajectories are admissible. Unlike texture variables, regime variables are
modified only through discrete events, and their updates correspond to genuine
reorganizations of the system’s constraint structure rather than to incremental
state evolution.
Texture variables evolve according to continuous dynamics
\[
\dot{\xi} = f\big(\xi,\Phi_c(q(t)),\nabla \Phi_c(q(t))\big),
\]
where $q(t)\in M$ is the organism's position.
Regime variables are updated only by events.
\subsection{Events as Constraint-Rewriting Operators}
Events act as operators that rewrite the system’s constraint structure rather
than merely perturbing its instantaneous state. Consider a \textsf{Tumble}
event, which is triggered when a guard condition
\[
G(\xi,\kappa)
\]
defined over the current texture variables $\xi$ and regime variables $\kappa$
is satisfied. The satisfaction of this guard marks a qualitative transition in
the admissible dynamics, indicating that continued evolution within the current
regime threatens viability or coherence.
Upon occurrence, the \textsf{Tumble} event induces a discontinuous change in the
system’s velocity direction, interrupting the smooth evolution of texture
variables and introducing stochastic reorientation. Simultaneously, the event
updates the regime variables according to
\[
\kappa^{+} = \kappa \oplus \delta\kappa,
\]
where $\delta\kappa$ encodes a modification of organizational constraints, such
as altered bias thresholds or sensitivity parameters. This update does not
represent parameter tuning within a fixed behavioral grammar, but a genuine
rewriting of the conditions under which future events become admissible.
In this way, the \textsf{Tumble} event exemplifies how discrete events function
as constraint-rewriting operators. They reshape the space of possible future
histories by modifying regime variables, thereby altering which trajectories and
event sequences are available to the system after the event has occurred.
Categorically, this event induces a functor
\[
\mathcal{M}_{\textsf{Tumble}} :
\mathsf{Hist}_{\kappa} \to \mathsf{Hist}_{\kappa^+},
\]
rewriting the space of admissible histories.
This update does not merely perturb the current state; it modifies which
future event sequences are admissible.
\subsection{Viability and Cognition}
Let $E(t)$ denote the organism's internal energy state, with dynamics
\[
\dot{E} = \alpha\,\Phi_c(q(t)) - \beta,
\]
where $\alpha,\beta>0$.
Define the viability condition
\[
K = \{x \mid E(x) > E_{\min}\}.
\]
For each history $h$, define the viable futures sub-presheaf
\[
\mathcal{V}(h) =
\{\,\gamma\in\mathcal{A}(h)\mid \gamma(t)\in K \ \forall t\ge t_h\,\}.
\]
\begin{definition}[Chemotactic Cognition]
The chemotactic cell is cognitive iff there exists a history-dependent event
selection policy such that along the realized history chain
\[
h_0 \to h_1 \to \cdots,
\]
the viable futures presheaf satisfies $\mathcal{V}(h_t)\neq\varnothing$ for all
$t$.
\end{definition}
\subsection{Interpretation}
In this formulation, gradient sensing is realized as a form of natural
computation instantiated in the continuous evolution of the texture variables.
Rather than constructing or manipulating explicit representations of the
environment, the system exploits the lawful coupling between biochemical
dynamics and external concentration fields to generate behaviorally relevant
structure directly within its physical state evolution.
Behavioral decisions are not modeled as selections among precomputed actions,
but as discrete events that rewrite the set of admissible futures. Each event
functions as an irreversible commitment that reshapes the option--space,
eliminating some continuations while enabling others. Decision-making is thus
identified with constraint modification rather than with choice over a fixed
action set.
Adaptation, on this account, corresponds to regime change rather than to state
estimation or parameter optimization within a fixed model. Events that update
regime variables alter the conditions under which future behaviors are possible,
thereby transforming the grammar of admissible histories instead of refining an
internal estimate of environmental state.
Cognition emerges as the preservation of nonempty viable futures under
irreversible history extension. A system counts as cognitive insofar as its
event-historical dynamics succeed in maintaining at least one admissible
continuation compatible with viability constraints, despite the monotonic
accumulation of commitments imposed by past events.
No internal representation of the nutrient field is required. The organism
computes by exploiting environmental and morphological constraints, updating
them only when viability is threatened.
This example establishes that minimal biological cognition can be formalized as
event-historical constraint management rather than optimization or inference.
% ============================================================
\section{Limits of Variational Inference: A Contrast with the Free Energy Principle}
% ============================================================
We now contrast the event-historical, constraint-based account of cognition
developed above with the Free Energy Principle (FEP). The aim is not to refute
FEP as a modeling framework, but to identify a structural limitation that
prevents it from representing regime change as functorial history rewriting.
\subsection{FEP as State-Based Variational Dynamics}
In the Free Energy Principle, a system is modeled by a state variable $x(t)$
evolving so as to minimize a variational free energy functional
\[
\mathcal{F}(q) = \mathbb{E}_q[\ln q(s) - \ln p(s,o)],
\]
where $q$ is an approximate posterior over hidden states $s$ and $o$ are
observations.
Learning and adaptation are implemented via gradient flows on $\mathcal{F}$,
typically by adjusting parameters $\theta$ of a generative model
$p(o,s\mid\theta)$.
Crucially, both perception and learning are expressed as trajectories within a
fixed model class.
\subsection{Fixed Generative Model Classes}
Let $\Theta$ denote the space of admissible model parameters.
Under FEP, adaptation takes the form:
\[
\dot{\theta} = -\nabla_{\theta}\mathcal{F}.
\]
Although $\theta$ may change over time, the structure of the generative model
itself---its factorization, variable types, and dependency graph---remains
fixed.
Thus, the admissible futures under FEP are determined by:
\[
\mathcal{A}_{\mathrm{FEP}}(t) = \{\text{trajectories consistent with } p(\cdot\mid\theta(t))\}.
\]
All future possibilities are evaluated relative to a single, unchanging
representational framework.
\subsection{Absence of Event-Historical Regime Change}
In the event-historical formalism developed above, regime variables $\kappa$
rewrite the history category itself by altering which event sequences are
admissible. This corresponds to functors
\[
\mathcal{M}_e : \mathsf{Hist}_{\kappa} \to \mathsf{Hist}_{\kappa'}
\]
that modify the space of possible futures.
By contrast, the Free Energy Principle does not admit operators that modify the category of histories itself. Within the FEP formalism, there is no internal mechanism by which a system can introduce genuinely new event types, eliminate previously available transitions, or alter the compositional structure according to which actions and observations are sequenced.
The space of admissible histories is fixed in advance by the generative model class, and all possible trajectories are evaluated relative to this unchanging structural framework. As a consequence, adaptation under FEP is confined to motion within a fixed inferential regime.
Parameter updates may alter which trajectories are favored, but they do not rewrite the grammar of admissible histories. The system can optimize its behavior only with respect to constraints that are already present, and cannot acquire new forms of constraint through irreversible historical commitment.
\subsection{State Optimization vs.\ Constraint Acquisition}
This distinction can be stated with precision. Under the Free Energy Principle, cognition is modeled as the optimization of trajectories within a fixed constraint structure. The system adapts by adjusting internal state variables and parameters so as to minimize a variational objective, but the underlying form of the generative model remains unchanged.
Learning, in this framework, refines parameter values and improves fit to observations, while preserving the topology of the model and the space of admissible histories it defines.
By contrast, within the event-historical ICON formalism, cognition is identified with the acquisition of constraints through irreversible events. Learning does not merely improve performance within a pre-given space of possibilities; it alters that space itself.
Each commitment event restricts, reorganizes, or rewrites the set of admissible futures, thereby changing what the system can become. Cognition is thus not state optimization within fixed limits, but the historical construction of those limits through irreversible constraint formation.
Formally, FEP optimizes trajectories within a single admissible-futures
presheaf, whereas ICON permits transitions between distinct presheaves via
regime-changing events.
\subsection{Consequences for Viability}
Let $\mathcal{V}(h)\subseteq\mathcal{A}(h)$ be the viable futures sub-presheaf
defined previously.
In the ICON framework, cognition preserves viability by selecting events that
prevent $\mathcal{V}(h)$ from collapsing under history extension.
In the Free Energy Principle, viability is encoded indirectly through prior preferences and cost functions that bias the system toward particular regions of state space. Survival is thus represented as the maintenance of trajectories that satisfy these predefined expectations. However, because the structure of the admissible future space is fixed by the generative model, the FEP framework cannot represent situations in which continued viability requires altering the constraint language itself rather than merely optimizing behavior within it.
This limitation becomes especially salient in regimes where survival depends on irreversible structural change. Developmental reorganization involves the creation of new organizational constraints that redefine what actions and responses are possible. Morphological plasticity requires the modification of the body or control architecture in ways that permanently reshape future dynamics.
Institutional and social commitments introduce normative constraints that alter the space of admissible collective actions. Irreversible learning events similarly impose lasting restrictions and affordances that cannot be captured as smooth parameter updates within a fixed model class. In all such cases, viability depends on the capacity to rewrite constraints rather than to optimize trajectories under static ones, placing these phenomena outside the expressive scope of state-based variational formulations.
\subsection{Summary}
The Free Energy Principle provides a powerful account of adaptive behavior as
variational inference within a fixed generative model. However, it lacks the
formal machinery to represent cognition as event-historical regime change.
By treating morphology and organization as functorial rewritings of admissible
history spaces, the ICON-based framework captures a class of cognitive
phenomena---including minimal life, learning, and commitment---that lie outside
the expressive scope of purely state-based variational dynamics.
% ============================================================
\section{Synthesis: Cognition as Constraint-Historical Computation}
% ============================================================
We now synthesize the preceding formal developments into a unified statement of
the Info-Computational (ICON) framework, clarifying its ontological commitments
and its distinctive explanatory power.
\subsection{From Information to Constraint}
Within ICON, information is not an abstract quantity or symbolic encoding, but
the physically instantiated relational structure of a system. When recast in
event-historical terms, informational structure is most naturally understood
not as a space of states, but as a space of admissible continuations.
The admissible futures presheaf $\mathcal{A}:\mathsf{Hist}^{op}\to\mathsf{Fut}$
thus plays a central role. It encodes, for each partial history, the space of
physically and organizationally feasible futures. Informational content is
realized through the restriction of this space by material, morphological, and
historical constraints.
In this sense, information is identified with constraint structure over
possibility space.
\subsection{Platonic Forms as Invariant Feasibility Regions}
Dodig-Crnkovic’s reinterpretation of Platonic forms finds a precise expression
in this framework. Forms are not generative templates or transcendental
blueprints, but invariant constraints that carve out stable regions within the
space of the possible.
Categorically, such forms correspond to idempotent natural transformations
\[
\mathcal{P}:\mathcal{A}\Rightarrow\mathcal{A},
\]
whose fixed sub-presheaves represent feasibility regions preserved across
histories. These constraints are independent of particular material
instantiations, yet only realized through physical processes.
This interpretation preserves the explanatory utility of Platonism while fully
naturalizing it within physical computation.
\subsection{Morphological Computing as Constraint Exploitation}
Morphological computing is now seen not as a metaphor, but as a concrete mode of
computation in which physical structure directly enforces constraints on future
behavior.
Rather than executing algorithms in the conventional sense, morphological systems compute by shaping the space of possible behavior through their physical structure. Computation is realized as the restriction of admissible trajectories, where the geometry and material properties of the system eliminate large classes of otherwise possible motions or responses.
At the same time, morphology stabilizes viable dynamics by passively guiding the system toward attractors that preserve functional integrity. Control is thus offloaded to material geometry and physics, so that coordination and regulation emerge from constraint rather than from explicit calculation.
In the categorical formulation, morphological change corresponds to functorial
rewriting of the history category, altering which event sequences and futures
are available. Computation thus occurs not only through state evolution, but
through modification of the constraint language itself.
\subsection{Cognition as Event-Historical Viability}
Cognition, under ICON, is neither representation nor inference, but the
historically situated management of constraints in service of continued
existence.
Formally, cognition is the preservation of a nonempty viable futures
sub-presheaf $\mathcal{V}\hookrightarrow\mathcal{A}$ under irreversible history
extension.
Events that rewrite regimes and morphologies are essential, because they enable a system to reshape its future possibility space when existing constraints threaten viability. When continuous adjustment within a given regime is no longer sufficient, irreversible events introduce new structural commitments that alter which futures remain admissible. In this way, cognition is not exhausted by fine-grained adaptation, but includes the capacity for qualitative reorganization of the conditions under which adaptation occurs.
This definition applies uniformly across scales. In unicellular chemotaxis, it appears as irreversible changes in behavioral bias and sensitivity that reshape future motion. In developmental plasticity, it takes the form of structural reorganization that fixes new pathways of growth and interaction. In neural learning, it manifests as lasting changes in connectivity that constrain future dynamics.
In social and institutional contexts, it emerges as commitments and norms that permanently restructure collective possibilities. Across all of these domains, cognition is identified with the historical acquisition and management of constraints that preserve viable futures.
What distinguishes cognitive systems is not complexity, but the capacity to
acquire and stabilize new constraints over time.
\subsection{Against Blueprint and Optimization Models}
This synthesis clarifies why blueprint-based and purely variational models are
insufficient for a full account of cognition.
Blueprint models fail because they presuppose fixed forms that nature must
instantiate. Variational models fail because they optimize trajectories within
a fixed constraint regime. In both cases, the possibility of irreversible
reorganization of the constraint structure itself is excluded.
ICON, by contrast, treats constraint acquisition as the primary cognitive act.
\subsection{Conclusion}
By unifying field-theoretic structure, event-historical dynamics, and
category-theoretic constraint modeling, the ICON framework provides a
naturalized account of cognition as constraint-historical computation.
Information is physical structure; computation is physical change; cognition is
the embodied, irreversible reshaping of what can happen next.
This perspective situates intelligence squarely within the dynamics of the
natural world, without reducing it to symbol manipulation, optimization, or
representation, and provides a common formal language for biological,
artificial, and social cognition.
% ============================================================
\section{Social and Institutional Cognition as Constraint-Historical Systems}
% ============================================================
The event-historical formalism developed above extends naturally beyond
biological organisms to social and institutional systems. In this extension,
institutions are treated as cognitive systems whose morphology is normative
rather than material, and whose cognitive activity consists in the acquisition,
maintenance, and revision of collective constraints.
\subsection{Institutional Histories}
Let $\mathsf{Ev}_{\mathrm{soc}}$ denote a set of social event types, including
commitments, promises, enactments, violations, sanctions, and revisions. A
social history is a finite trace of such events, ordered temporally and subject
to admissibility conditions determined by existing norms.