Created
May 21, 2025 18:16
-
-
Save ravachol70/235acf1de5577c24e17b32b07eb32743 to your computer and use it in GitHub Desktop.
Taxonomy of Governance Intelligence: Ampère, Bayes, Euler
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| digraph GovernanceIntelligence { | |
| rankdir=LR; | |
| graph [fontsize=10 labelloc="t" label="Governance Intelligence Framework" splines=polyline]; | |
| node [shape=box style=filled fillcolor=lightgrey fontname="Helvetica"]; | |
| edge [arrowhead=normal]; | |
| // Foundational Layer | |
| subgraph cluster_foundations { | |
| label="Foundational Thinkers"; | |
| style=dashed; | |
| Ampere [label="André-Marie Ampère"]; | |
| Euler [label="Leonhard Euler"]; | |
| Bayes [label="Thomas Bayes"]; | |
| } | |
| // Cybernetics | |
| subgraph cluster_cybernetics { | |
| label="Cybernetics"; | |
| style=filled; | |
| color=orange; | |
| Wiener [label="Norbert Wiener"]; | |
| Ashby [label="Ross Ashby"]; | |
| Beer [label="Stafford Beer"]; | |
| Deutsch_cyb [label="Karl Deutsch"]; | |
| } | |
| // Operations Research | |
| subgraph cluster_or { | |
| label="Operations Research"; | |
| style=filled; | |
| color=lightblue; | |
| Dantzig [label="George Dantzig"]; | |
| Simon_or [label="Herbert Simon"]; | |
| VonNeumann [label="John von Neumann"]; | |
| Arrow [label="Kenneth Arrow"]; | |
| Stengel [label="Robert Stengel"]; | |
| } | |
| // Formal Org Theory & Institutional Analysis | |
| subgraph cluster_institutional { | |
| label="Formal Org Theory &\nInstitutional Analysis"; | |
| style=filled; | |
| color=lightgreen; | |
| Simon_org [label="Herb Simon"]; | |
| Aoki [label="Masahiko Aoki"]; | |
| Prigogine [label="Ilya Prigogine"]; | |
| Deutsch_inst [label="Karl Deutsch"]; | |
| } | |
| // Arrows from Foundational Thinkers | |
| Ampere -> Wiener; | |
| Ampere -> Beer; | |
| Ampere -> Simon_org; | |
| Bayes -> Simon_or; | |
| Bayes -> Stengel; | |
| Bayes -> Arrow; | |
| Euler -> Dantzig; | |
| Euler -> VonNeumann; | |
| // Cross-links | |
| Simon_or -> Simon_org [style=dashed label="theory ↔ practice"]; | |
| Deutsch_cyb -> Deutsch_inst [style=dashed label="communication"]; | |
| Aoki -> Prigogine [style=dashed label="evolution"]; | |
| // Dotted undirected influences from Foundational Layer | |
| Ampere -> Ashby [dir=none style=dotted]; | |
| Ampere -> Deutsch_cyb [dir=none style=dotted]; | |
| Bayes -> Deutsch_inst [dir=none style=dotted]; | |
| Bayes -> Aoki [dir=none style=dotted]; | |
| Euler -> Stengel [dir=none style=dotted]; | |
| Euler -> Beer [dir=none style=dotted]; | |
| Euler -> Prigogine [dir=none style=dotted]; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment