<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>Yudhister Kumar — Notes</title>
        <link>https://www.yudhister.me</link>
        <description><![CDATA[Notes by Yudhister Kumar]]></description>
        <atom:link href="https://www.yudhister.me/rss.xml" rel="self"
                   type="application/rss+xml" />
        <lastBuildDate>Thu, 05 Feb 2026 00:00:00 UT</lastBuildDate>
        <item>
    <title>meta-learning redux</title>
    <link>https://www.yudhister.me/meta-learning-2/</link>
    <description><![CDATA[<p>1ea1a35f687fd461da1181bad3965dfb82c82128362cb8d0ff077f9e94b88d04</p>]]></description>
    <pubDate>Thu, 05 Feb 2026 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/meta-learning-2/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>cardinal and ordinal utilities</title>
    <link>https://www.yudhister.me/cardinal-ordinal/</link>
    <description><![CDATA[<p>A common mistake is to take one’s formalism as metaphysics. This is especially true in domains tangentially related to the study of human behavior: “just because you can be described by a coherence theorem does not mean you are a coherence theorem.”</p>
<p>I note that the difference between cardinal and ordinal utilities is not as deep as it may seem. Cardinalists use a utility function <span class="math inline">\(u: X \to \mathbb{R}\)</span> to describe preferences, while ordinalists restrain themselves to only defining an ordering over <span class="math inline">\(X.\)</span></p>
<p>Under natural conditions, orderings over <span class="math inline">\(X\)</span> can be described as utility functions over <span class="math inline">\(X.\)</span> If the ordering is complete, transitive, continuous<a href="#fn1" class="footnote-ref" id="fnref1" role="doc-noteref"><sup>1</sup></a>, and admits an order-dense subset<a href="#fn2" class="footnote-ref" id="fnref2" role="doc-noteref"><sup>2</sup></a>, there exists a continuous function <span class="math inline">\(u\)</span> such that <span class="math inline">\(u(x) \leq u(y)\)</span> if and only if <span class="math inline">\(x \leq y.\)</span></p>
<p>As an example: if <span class="math inline">\(X\)</span> is any convex subset of <span class="math inline">\(\mathbb{R}^n\)</span> and <span class="math inline">\(\leq\)</span> is continuous, then this holds and there exists a corresponding continuous utility function.</p>
<section id="footnotes" class="footnotes footnotes-end-of-document" role="doc-endnotes">
<hr />
<ol>
<li id="fn1"><p>Give <span class="math inline">\(X\)</span> topological structure. If the upper and lower contour sets of an ordering <span class="math inline">\(\leq\)</span> are closed in <span class="math inline">\(X\)</span> for every <span class="math inline">\(x \in X,\)</span> then <span class="math inline">\(\leq\)</span> is continuous.<a href="#fnref1" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn2"><p>There exists <span class="math inline">\(Z \subseteq X\)</span> such that for every pair <span class="math inline">\(x,y \in X\)</span> such that <span class="math inline">\(x \leq y,\)</span> there exists <span class="math inline">\(z \in Z\)</span> such that <span class="math inline">\(x \leq z \leq y.\)</span><a href="#fnref2" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
</ol>
</section>]]></description>
    <pubDate>Wed, 04 Feb 2026 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/cardinal-ordinal/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>thoughts on VeLO</title>
    <link>https://www.yudhister.me/velo/</link>
    <description><![CDATA[<p>[<a href="https://arxiv.org/abs/2211.09760">paper</a>] [<a href="https://github.com/google/learned_optimization/tree/main/learned_optimization/research/general_lopt">code</a>]</p>
<p>[1] hypernetwork architecture. there’s a tensor-level LSTM that takes in bulk loss statistics and outputs a weighting vector <span class="math inline">\(c_{hyper}\)</span> used to interpolate between a bank of pre-trained per-parameter MLPs that then gets passed the per-parameter loss statistics to compute parameters <span class="math inline">\(d,m\)</span> such that <span class="math inline">\(\Delta p = 10^{-3} \cdot d \cdot \exp(10^{-3} \cdot c_{lr}) ||p||_2\)</span> (where <span class="math inline">\(c_{lr}\)</span> is also produced by the tensor-level LSTM). not immediately obvious to me where these pre-trained MLPs come from</p>
<p>[2] meta-training distribution is surprisingly diverse. image classification / image generation / language modeling, across MLP / CNN / vision transformer / autoencoder / VAE / transformer architectures, with different initializations. + task augmentation! (weight reparameterization / gradient renormalization / etc.). 4k TPU-months of compute. these tasks all dealt with relatively small models: VeLO generalization to 100M param LLM was not good (compared to a tuned Adafactor baseline), but “within distribution” VeLO seems to outperform tuned Adam / Shampoo / other classical optimizers.</p>
<p>[3] ES as a gradient update method. meta-objective was to minimize end-of-training loss (vs. average loss per-step), and the classical method was used to estimate gradients: perturb the parameters with sampled Gaussian noise and use the estimator <span class="math display">\[\frac{1}{2m\sigma} \sum_{i=1}^m (L(\theta + \sigma \epsilon_i) - L(\theta - \sigma \epsilon_i))\epsilon_i,\]</span>
where <span class="math inline">\(\epsilon_i\)</span> is drawn from a normal distribution. I wonder how much there’s to be gained in iterating on this approach? the ES literature hasn’t quite stagnated</p>
<p>[4] Adam is really quite good? VeLO outperforms by (eyeballing) ~2-5x with intense resource input, and even then isn’t pareto compared to tuned Adam OOD. (VeLO is also much more expensive, &amp; cannot generalize to RL or GNNs (as far as they tested))</p>
<p>[5] convinced me that truly there’s a lot of performance one could eke out of meta-training a learned optimizer, provided one doesn’t care about resource constraints. many cool directions to extend this to</p>]]></description>
    <pubDate>Tue, 03 Feb 2026 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/velo/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>morley rank as dimension</title>
    <link>https://www.yudhister.me/morley-rank-as-dimension/</link>
    <description><![CDATA[<p>[notes]</p>
<p>Let <span class="math inline">\(\mathcal{L}\)</span> be a first order language and let <span class="math inline">\(T\)</span> be a complete <span class="math inline">\(\mathcal{L}\)</span> theory. Given</p>
<ul>
<li><span class="math inline">\(M \models T\)</span> a model of <span class="math inline">\(T\)</span>,</li>
<li><span class="math inline">\(x\)</span> a variable context,</li>
<li><span class="math inline">\(\phi \in \mathcal{L}_x(M)\)</span> a formula with parameters from <span class="math inline">\(M\)</span> and free variables ranging in <span class="math inline">\(x,\)</span> and</li>
<li><span class="math inline">\(\alpha\)</span> an ordinal</li>
</ul>
<p>we define the <em>Morley rank</em> <span class="math inline">\(\text{RM}(\phi)\)</span> of a formula <span class="math inline">\(\phi\)</span> by transfinite recursion on the condition <span class="math inline">\(\text{RM}(\phi) \geq \alpha.\)</span> The recursion satisfies:</p>
<ul>
<li><span class="math inline">\(\text{RM}(\phi) \geq 0\)</span> if and only if <span class="math inline">\(M \models (\exists x)\phi\)</span></li>
<li><span class="math inline">\(\text{RM}(\phi) \geq \alpha + 1\)</span> if and only if there is some <span class="math inline">\(N \succeq M\)</span> (an elementary extension) and a sequence of formulas <span class="math inline">\((\psi_i)_{i \in \omega} \subseteq \mathcal{L}_x(N)^\omega\)</span> such that for each <span class="math inline">\(i,\)</span> <span class="math inline">\(N \models \psi_i \to \phi\)</span> and <span class="math inline">\(\text{RM}(\psi_i) \geq \alpha\)</span> both hold and for <span class="math inline">\(i \neq j\)</span> we have that <span class="math inline">\(N \models \psi_i \to \neg \psi_j.\)</span><br />
</li>
<li><span class="math inline">\(\text{RM}(\phi) \geq \lambda\)</span> for a limit ordinal <span class="math inline">\(\lambda\)</span> if and only if <span class="math inline">\(\text{RM}(\phi) \geq \alpha\)</span> for all <span class="math inline">\(\alpha &lt; \lambda.\)</span></li>
</ul>
<p>We define <span class="math inline">\(\text{RM}(\phi) := \alpha\)</span> if <span class="math inline">\(\text{RM}(\phi) \geq \alpha\)</span> but <span class="math inline">\(\text{RM}(\phi) \not\geq \alpha + 1.\)</span> Every formula in a <em>totally transcendental theory</em> has ordinal-valued Morley rank. Inconsistent formulas are given Morley rank of <span class="math inline">\(-1.\)</span></p>
<p>When taking <span class="math inline">\(T = \text{ACF}_p\)</span> (the theory of algebraically closed fields for characteristic <span class="math inline">\(p\)</span>), the Morley rank and Krull dimension agree (on constructible sets). Examples:</p>
<ul>
<li>Take finite <span class="math inline">\(X \subset K^n.\)</span> This has dimension 0, and can be specified by some formula <span class="math inline">\(\phi.\)</span> One can verify that <span class="math inline">\(\text{RM}(\psi) = 0\)</span> when the solution set of <span class="math inline">\(\psi\)</span> in <span class="math inline">\(M\)</span> is finite, so <span class="math inline">\(\text{RM}(\phi) = 0.\)</span></li>
<li>The affine line <span class="math inline">\(\mathbb{A}^1(K) = K\)</span> has dimension 1, and <span class="math inline">\(\text{RM}(K) \geq 1.\)</span> However, it cannot be greater than 2 because every definable subset of <span class="math inline">\(K\)</span> is either finite or cofinite, and cofinite sets cannot be disjoint. (Similar arguments hold for <span class="math inline">\(\mathbb{A}^k.\)</span>)</li>
<li>. . .</li>
</ul>]]></description>
    <pubDate>Mon, 02 Feb 2026 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/morley-rank-as-dimension/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>on ferrante</title>
    <link>https://www.yudhister.me/ferrante-1/</link>
    <description><![CDATA[<p>A few points I’m not sure Ferrante tried to make but I understood regardless:</p>
<p>[1] “Volitional strength” does not increase with age so much as “volitional complexity” does.</p>
<p>[2] Reminds me of my mom’s stories about <i>las colonias</i>. From the basics (community units are families led by patriarchs) to particulars (the Lina / Melina friendship, fancy car as status symbol, loan-shark as resident, the names).</p>
<p>[3] The “respect for the interiority of self” that Lina possesses — is this an authorial artifact? Faithful developmental description? Does it look like “respect” from the inside as well as the outside?</p>
<p>[4] Characters’ relational generators flummox me.</p>
<p>[5] First fifty pages were the most intense reading experience of my life?</p>]]></description>
    <pubDate>Sun, 01 Feb 2026 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/ferrante-1/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>links 01/31</title>
    <link>https://www.yudhister.me/links-01-31/</link>
    <description><![CDATA[<ol type="1">
<li><a href="https://cimcai.substack.com/p/foundational-white-paper">New whitepaper on machine consciousness.</a></li>
<li><a href="https://simonwillison.net/tags/exfiltration-attacks/">Log of known exfiltration attacks on chatbots.</a></li>
<li><a href="https://arxiv.org/pdf/2601.19062">Disempowerment patterns in Claude user interactions.</a></li>
<li><a href="https://postagi.org/talks/millidge-competition-values#transcript">Talk arguing for evolutionary convergent pressures towards cooperative values in AI.</a>.<br />
</li>
<li><a href="https://aligned.substack.com/p/alignment-is-not-solved-but-increasingly-looks-solvable">Leike on alignment solvability.</a></li>
</ol>]]></description>
    <pubDate>Sat, 31 Jan 2026 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/links-01-31/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>links 01/30</title>
    <link>https://www.yudhister.me/01-30/</link>
    <description><![CDATA[<ol type="1">
<li><a href="https://post-agi.org/talks/korinek-economics-ai">Korinek on the economics of transformative AI.</a></li>
<li><a href="https://www.nature.com/articles/s41586-025-09425-w">Cross-species cloning in ants.</a></li>
<li><a href="http://arxiv.org/abs/2307.00144">Conservation laws for gradient flows.</a></li>
<li><a href="http://arxiv.org/abs/1805.08522">Deep learning generalizes because the parameter function map is biased towards simple functions.</a></li>
<li><a href="http://arxiv.org/abs/2208.07006">Critch on cooperative and uncooperative institution designs.</a></li>
<li><a href="https://cdn.aaai.org/ocs/ws/ws0218/12634-57409-1-PB.pdf">Old MIRI paper on formalizing convergent instrumental goals.</a></li>
<li><a href="https://www.lesswrong.com/posts/Dw8mskAvBX37MxvXo/deep-learning-as-program-synthesis-1">Deep learning as program synthesis.</a>.</li>
</ol>]]></description>
    <pubDate>Fri, 30 Jan 2026 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/01-30/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>links 01/29</title>
    <link>https://www.yudhister.me/01-29/</link>
    <description><![CDATA[<ol type="1">
<li><a href="https://nickbostrom.com/papers/mountethics.pdf">Base Camp for Mt. Ethics</a>.</li>
<li><a href="https://arxiv.org/abs/math/9405205">Elementary bijection between the set of finite binary trees and the set of seven-tuples of finite binary trees.</a></li>
<li><a href="https://en.wikipedia.org/wiki/Anti-Masonic_Party">The first third party of the USA was a single-issue party opposing the Freemasons.</a></li>
<li><a href="https://openreview.net/pdf?id=R2834dhBlo">Neural Interactive Proofs.</a></li>
<li><a href="https://x.com/psychiel/status/2017307466636398705">RNA structure implies a unique abiogenic origin?</a></li>
<li><a href="https://arxiv.org/pdf/2102.09798">Training neural networks is <span class="math inline">\(\exists \mathbb{R}\)</span>-complete.</a></li>
<li><a href="https://arxiv.org/abs/2308.12355">Using diffusion models to learn inverse renormalization group flows.</a></li>
<li><a href="https://webapp1.dlib.indiana.edu/newton/">An archive of Newton’s alchemical manuscripts.</a>.</li>
<li><a href="https://www.nature.com/articles/s41586-024-07763-9"><em>Drosophilia</em> connectomics model predicts feeding and grooming behaviors.</a></li>
</ol>]]></description>
    <pubDate>Thu, 29 Jan 2026 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/01-29/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>some (quasi-closed) narrative fiction I&#39;ve appreciated</title>
    <link>https://www.yudhister.me/stories-1/</link>
    <description><![CDATA[<p>[unfinished from illness]</p>
<p><em>The Epic of Gilgamesh</em>; LB6 &amp; LB7 of F/GO; “The End of a Dynasty, or The Natural History of Ferrets”; <em>Darling</em>; “The Paper Menagerie”; FMAB; the Chainsaw Man movie; “All Summer in a Day”; <em>The Odyssey</em>; <a href="https://archiveofourown.org/works/8211566/chapters/18817508">this</a> Naruto slashfic; <a href="https://www.fanfiction.net/s/13047893/1/Beyond-the-Curtain">these</a> <a href="https://www.fanfiction.net/s/12125300/1/Black-Luminary">two</a> HP fics; <em>Crime and Punishment</em>; <em>The Great Gatsby</em>; <em>Dune Messiah</em>; <em>Huckleberry Finn</em>; <em>Nicholas Nickleby</em>; <em>Othello</em>; <em>To Kill a Mockingbird</em>; “Tower of Babylon”; <em>Thus Spoke Zarathustra</em>; <em>The Mysterious Island</em>; “Life of Lycurgus”; <em>Paradise Lost</em>; <em>The Books of Jacob</em>; <em>There is No Antimemetics Division</em>;</p>
<p>I’d expect Job, Ecclesiastes, and the Aeneid to make the list once I’ve read them. Neither <em>Anna Karenina</em> nor <em>War and Peace</em> do (maybe I was just too young?). Have forgotten ~all the Victorian literature I read as a child (complete Dickens, <em>Jane Eyre</em>, . . . ?). Hard for me to think of movies (<em>The Godfather</em> was OK. <em>Forrest Gump</em> would make it). Joyce sometimes wrote closed narratives but he was never a “closed author.”</p>]]></description>
    <pubDate>Wed, 28 Jan 2026 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/stories-1/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>meta learning</title>
    <link>https://www.yudhister.me/meta-learning/</link>
    <description><![CDATA[<p>a06d370d96e0a234b1682b0ff2c32f721f74e02f31e4312ce01a45bf8044958b</p>]]></description>
    <pubDate>Tue, 27 Jan 2026 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/meta-learning/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>odes to oranges</title>
    <link>https://www.yudhister.me/odes-to-oranges/</link>
    <description><![CDATA[<p><strong>Pablo Neruda, “Oda a la naranja”</strong></p>
<p>A semejanza tuya,<br />
a tu imagen,<br />
naranja,<br />
se hizo el mundo:<br />
redondo el sol, rodeado<br />
por cáscaras de fuego:<br />
la noche consteló con azahares<br />
su rumbo y su navío.<br />
Así fue y así fuimos,<br />
Oh tierra,<br />
descubriéndote,<br />
planeta anaranjado.<br />
Somos los rayos de una sola rueda<br />
divididos<br />
como lingotes de oro<br />
y alcanzando con trenes y con ríos<br />
la insólita unidad de la naranja.<br />
Patria<br />
mía,<br />
amarilla<br />
cabellera,<br />
espada del otoño,<br />
cuando<br />
a tu luz<br />
retorno,<br />
a la desierta<br />
zona<br />
del salitre lunario,<br />
a las aristas<br />
desgarradoras<br />
del metal andino,<br />
cuando<br />
penetro<br />
tu contorno, tus aguas,<br />
alabo<br />
tus mujeres,<br />
miro cómo los bosques<br />
balancean<br />
aves y hojas sagradas,<br />
el trigo se derrama en los graneros<br />
y las naves navegan<br />
por oscuros estuarios,<br />
comprendo que eres,<br />
planeta,<br />
una naranja,<br />
una fruta del fuego.</p>
<p><strong>《橘颂》/ “Ode to the Orange [Tree]”</strong></p>
<p>后皇嘉树，橘徕服兮。<br />
受命不迁，生南国兮。<br />
深固难徙，更壹志兮。<br />
绿叶素荣，纷其可喜兮。<br />
曾枝剡棘，圆果抟兮。<br />
青黄杂糅，文章烂兮。<br />
精色内白，类可任兮。<br />
纷縕宜修，姱而不丑兮。</p>
<p>嗟尔幼志，有以异兮。<br />
独立不迁，岂不可喜兮？<br />
深固难徙，廓其无求兮。<br />
苏世独立，横而不流兮。<br />
闭心自慎，不终失过兮。<br />
秉德无私，参天地兮。<br />
愿岁并谢，与长友兮。<br />
淑离不淫，梗其有理兮。<br />
年岁虽少，可师长兮。<br />
行比伯夷，置以为像兮。</p>]]></description>
    <pubDate>Mon, 26 Jan 2026 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/odes-to-oranges/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>[corpusculence]</title>
    <link>https://www.yudhister.me/corpusculence/</link>
    <description><![CDATA[<p>[notably more schizophrenic]</p>
<ul>
<li>plurality of decision-theoretic confusions are IMO downstream of poor understanding of canonical Sacs. (agent, overseer) frames degrade with capability and scale. (agent, agent) dynamics rely on shared Cartesian assumptions</li>
<li>Sacs are lossy boundaries. Sacs can grow and be prodded, but notably Sacs can climb and descend ontological hierarchies</li>
<li>instantaneously, Sacs are enforced by a superstructure. (bkg assumption is that cooperation is well-defined wrt a superstructure: <em>handwaves</em> morality / customs / law seem to be broadly similar (perhaps functionally equivalent) and these seem to be properties of norms. central question is what enforces closure; Sacs are the results. plausible this can be described solely structurally)</li>
<li>“superstructure” always exists in agent-agent transactions. “overseer.” (overseer of mediated PD equilibria &amp; Lobian cooperation are the same, both EDT-ify bad naive CDT)</li>
<li>Sacs can live inside themselves &amp; sacs that they own (memetic instantiation). <strong>critically important</strong> is that the sacs reproduce world-models faithfully (or at least in compatible ways)</li>
<li>embedded agency is a useful taxonomy</li>
<li>Sac-ification</li>
</ul>]]></description>
    <pubDate>Sun, 25 Jan 2026 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/corpusculence/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>pcd / ao</title>
    <link>https://www.yudhister.me/pcd-ao/</link>
    <description><![CDATA[<p><a href="https://arxiv.org/pdf/2512.15712">Predictive concept decoders</a> and <a href="https://arxiv.org/pdf/2512.15674">activation oracles</a> are both (IMO) examples of what Jacob Steinhardt calls “<a href="https://www.lesswrong.com/posts/qkhwh4AdG7kXgELCD/scalable-end-to-end-interpretability">scalable end-to-end interpretability</a>” approaches. In more detail:</p>
<blockquote>
<p><em>Identify an end-to-end task such that, in order to do well at the task, an agent would have to have learned something important about a neural network’s internal structure. Examples would be predicting the results of interventions, or identifying neurons to ablate that turn a specified behavior on or off.</em></p>
<p><em>Use this task as a training objective to train an AI assistant on a large amount of data. This assistant is likely superhuman at the specialized task of understanding a given AI model.</em></p>
<p><em>Make the information that the assistant learned extractable to humans, either by introducing communication bottlenecks in the architecture or making explainability part of the training objective.</em></p>
</blockquote>
<p>I’m excited because it seems (1) AO/PCD performance scales with self-supervised data scale, (2) AOs/PCDs generalize relatively OOD, and (3) these methods are more architecture agnostic than circuit-based analyses.</p>
<p>The two are relatively different:</p>
<ul>
<li><p>activation oracles take a base LLM and finetune it to take LLM activations as input and answer natural language queries about them. Training data is a mix of SPQA, binary classification datasets, and a self-supervised objective where the AO has to predict tokens before and after activation injection</p></li>
<li><p>predictive concept decoders are trained as end-to-end encoder-decoder models with a topK bottleneck acting as a “concept bottleneck.” they’re pretrained on FineWeb + activations and finetuned (with frozen encoder) on a QA dataset SynthSys.</p></li>
</ul>
<p>In particular, AOs require labeled activation data while PCDs rely solely on self-supervised signal from text. The “concept bottleneck” of a PCD is meant to e.g. improve auditability of the mechanisms producing AI behavior (humans can look at the bottleneck and infer what’s going on).</p>
<p>Steinhardt proposes extensions to PCDs:</p>
<ul>
<li>making the concept bottleneck consist of more structured objects (propositional formulas), which take advantage of inherent compositionality in neural network cognition;</li>
<li>replacing the encoder with a transformer (or similar) to have richer representations</li>
</ul>]]></description>
    <pubDate>Sat, 24 Jan 2026 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/pcd-ao/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>why Occam?</title>
    <link>https://www.yudhister.me/why-occam/</link>
    <description><![CDATA[<p>[1] <em>“Ideal Bayesian reasoners” rely on the simplicity prior.</em> This is false as stated: Solomonoff induction convergence is not dependent on the exact choice of the <span class="math inline">\(2^{-|K|}\)</span> simplicity prior; convergence over any computable distribution holds if the prior is any universal semimeasure.<a href="#fn1" class="footnote-ref" id="fnref1" role="doc-noteref"><sup>1</sup></a></p>
<p>[2] <em>The generalization bias described in the Bayesian free-energy functional is a bias towards low-description length programs.</em> I don’t know enough about this to provide a full, concise, precise accounting of the argument, but I buy it? See <a href="https://yudhister.me/mdl-slt">my earlier post on MDL and SLT</a>. (Hopefully work on the inductive bias of SGD will shed light on a similar result in the training of neural networks).</p>
<p>[3] <em>“Simple hypotheses” are adaptive because world phenomena are naturally generated by “simple” processes.</em> Empirically, phenomena have parsimonious explanations. We do not live in the most simple world,<a href="#fn2" class="footnote-ref" id="fnref2" role="doc-noteref"><sup>2</sup></a> but physical theories are decomposable.</p>
<p>[4] <em>“Simple hypotheses” are adaptive because learning systems learn simple explanations more effectively.</em> Singular learning theory predicts this for Bayesian reasoners; <a href="https://arxiv.org/abs/1805.08522">deep learning generalizes because the parameter function map is biased towards simple functions</a>; cf. inductive bias considerations; “special snowflake” hypotheses where certain kinds of learning are only possible in environments with nice properties, one of which is likely simplicity.</p>
<p>[5] <em>Simple explanations are more memetically fit.</em> Directionally correct. Minimizing the free parameters in your model means there’s less information to necessarily communicate. But the pressures shaping acceptance of one theory over another do not rely on simplicity as a primary proxy, and in any case accuracy should be prioritized.</p>
<p>[6] <em>Simplicity is elegant.</em> Deutsch argues for objectivity in aesthetics, such that “aesthetic truths are linked to factual ones by explanations.” Schmidhuber defines beauty through simplicity. Surely there’s a convergence here; however, attributing causality requires care.</p>
<p>Clearly an Occam-like hypothesis is adaptive. I find empirical justifications for simplicity biases the most compelling, yet their compelling formulations elude me. Excited about fleshing out a correct [1] and a precise [2], [3] is a philosophical goldmine, [4] is (to me) obviously correct, [5] requires specification, [6] deserves a steelman.</p>
<section id="footnotes" class="footnotes footnotes-end-of-document" role="doc-endnotes">
<hr />
<ol>
<li id="fn1"><p>There are subleties with regards to convergence as a distribution versus “pointwise” and their appropriate characterizations in the Solomonoff induction setting.<a href="#fnref1" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn2"><p>We also probably do not live in the most simple world conditioning on our existence, but the arguments here are more nuanced.<a href="#fnref2" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
</ol>
</section>]]></description>
    <pubDate>Fri, 23 Jan 2026 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/why-occam/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>a bird&#39;s-eye perspective on program equilibria</title>
    <link>https://www.yudhister.me/program-equilibria-1/</link>
    <description><![CDATA[<p>The concept of “program equilibrium” was first introduced by Tenneholtz in 2004, where he notices that the program
<span class="math display">\[
\begin{align*}
&amp;\text{IF } P_1 = P_2, \text{ THEN COOPERATE} \\\\
&amp; \text{ELSE DEFECT}
\end{align*}
\]</span></p>
<p>cooperates with itself in the Prisoner’s Dilemma, and moreover given a state of two players adopting this program in the Prisoner’s Dilemma there is no incentive for either to deviate.</p>
<p>Unfortunately, this result as stated only holds on the basis of <em>syntactic analysis:</em> essentially, given two .txt files each representing a player’s program, check line by line that they’re equivalent and if so cooperate. (More sophisticated versions of syntactic analysis exist but all suffer from needing to coordinate on a shared language, transmission mechanism, etc.). In an ideal world, you’d replace <span class="math inline">\(\text{IF } P_1 = P_2\)</span> with a <em>semantic</em> guarantee: verifying effective equivalence via the behavior of programs rather than their apparent structure.</p>
<p>I’m aware of two ways of doing this:</p>
<ol type="1">
<li><p><em>Simulation.</em> Perhaps the most straightforward way to verify the behavior of a program is to run it. The most naive implementation of the simulation-based approach, running <span class="math inline">\(P_2\)</span> with <span class="math inline">\(P_1\)</span> as input, fails if applied symmetrically from a non-halting infinite regress. However, getting around this is possible with relatively low cost (see the <span class="math inline">\(\epsilon\)</span>-GroundedFairBot proposed by Oesterheld and variations thereof).</p></li>
<li><p><em>Proof search.</em> “If I can prove that you cooperate with me, then I cooperate. Otherwise I defect.” Typically you parametrize programs as logical sentences taking the outputs of the other programs in the game as parameters, and use some Lobian-like theorem to prove cooperation. (Interesting is Critch’s proof this holds even with access to only bounded provers).</p></li>
</ol>
<p>These are not the only methods for robustly achieving <span class="math inline">\((C,C)\)</span> in a Prisoner’s Dilemma: a more classical approach is to introduce some sort of information revelation and make <span class="math inline">\((C,C)\)</span> a robust equilibrium in this “correlated” setting. However, taking this “open-source” approach to negotiation has the conceptual benefit (at least to me) of highlighting <em>what sorts of programs form robust coalitions given broad instantiation.</em> Interesting to ponder from the perspective of “what sorts of policy structures should I update myself towards.”</p>
<p>Recommended: Oesterheld’s <a href="https://www.andrew.cmu.edu/user/coesterh/AnnotatedProgEqBibliography.html">annotated bibliography</a>.</p>]]></description>
    <pubDate>Thu, 22 Jan 2026 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/program-equilibria-1/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Review | Proposed Roads to Freedom</title>
    <link>https://www.yudhister.me/proposed-roads-to-freedom/</link>
    <description><![CDATA[<p><strong>[nb: these are notes on Russell’s book from a little over a year and a half ago that are ~entirely unedited. I do not necessarily stand by what’s stated]</strong></p>
<p>This is an analysis and criticism of two influential strands of 20th century political economic thought: Socialism, in the Marxist sense, and Anarchism, as advocated for by Bakunin.</p>
<p>[Actually, this is less of review/criticism and more of “summary with weird notes and a lot of relevant quotes that might be useful, but probably not that useful to anyone who isn’t me]</p>
<p>Socialism, as defined by Russell, is the “advocacy of communal ownership of land and capital.” Such communal ownership can be mediated by a democratic State, but never an undemocratic one. Such communal ownership can also result from the natural self-organization of individuals without State intervention of coercion—Socialists who believe this overlap with Anarchists. But by and large Socialists lack libertarian tendencies, and are mostly content with such apparatuses to be handed off to a parliamentary state.</p>
Russell then creates a taxonomy of the essential components of Marxist doctrine:
<blockquote>
<ol type="1">
<li><p>The Materialistic Interpretation of History.— Marx holds that in the main all the phenomena of human society have their origin in material conditions, and these he takes to be embodied in economic systems. Political constitutions, laws, religions, philosophies—all these he regards as, in their broad outlines, expressions of the economic regime in the society that gives rise to them. It would be unfair to represent him as maintaining that the conscious economic motive is the only one of importance; it is rather that economics molds character and opinion, and is thus the prime source of much that appears in consciousness to have no connection with them. He applies his doctrine in particular to two revolutions, one in the past, the other in the future. The revolution in the past is that of the bourgeoisie against feudalism, which finds its expression, according to him, particularly in the French Revolutino. The one in the future is the revolution of the wage-earners, or proleteriat, against the bourgeoisie, which is to establish the Socialist Commonwealth. The whole movement of history is viewed by him as necessary, as the effect of material causes operating upon human beings. He does not so much advocate the Socialist revolution as predict it. He holds, it is true, that it will be beneficent, but he is much more concerned to prove that it must inevitably come. The same sense of necessity is visible in his exposition of the evils of the capitalist system. He does not blame capitalists for the cruelties of which he shows them to have been guilty; he merely points out that they are under an inherent necessity to behave cruelly so long as the private ownership of land and capital continues. But their tyranny will not last forever, for it generates the forces that must in the end overthrow it.</p></li>
<li><p>The Law of the Concentration of Capital.— Marx pointed out that capitalist undertakings tend to grow larger and larger. He foresaw the substitution of trusts for free competition, and predicted that the number of capitalist enterprises must diminish as the magnitude of single enterprises increased. He supposed that this process must involve a diminution, not only in the number of businesses, but also in the number of capitalists. Indeed he usually spoke as though each business were owned by a single man. Accordingly, he expected that men would be continually driven from the ranks of the capitalists into those of the proletariat, and that the capitalists, in the course of time, would grow numerically weaker and weaker. He applied this principle not only to industry but also toa griculture. He expected to find the landowners growing fewer and fewer while their estates grew larger and larger. This process was to make more and more glaring the evils and injustices of the capitalist system, and to stimulate more and more the forces of opposition.</p></li>
<li><p>The Class War.— Marx conceives the wage-earner and the capitalist in a sharp antithesis. He imagines that every man is, or must soon become, wholly the one or wholly the other. The wage-earner, who possesses nothing, is exploited by the capitalists, who possess everything. As the capitalist system works itself out and its nature becomes more clear, the opposition of bourgeoisie and proletariat becomes more and more marked. The two classes, since they have antagonistic interests, are forced into a class war which generates within the capitalistic regime internal forces of disruption. The working men learn gradually to combine against their exploiters, first locally, then nationally, and at last internationally. When they have learned to combine internationally they must be victorious. They will then decree that all land and capital shall be owned in common; exploitation will cease; the tyranny of the owners of wealth will no longer be possible; there will no longer be any division of society into classes, and all men will be free.</p></li>
</ol>
</blockquote>
<p>I will take a slight digression here to comment on the nature of the proposed Marxist class war. As we have become well aware, this has not happened yet. There are many reasons for this, but one assumption that Marxists take (and I think Marx himself took) was that class, as a signifier, would supersede race and sex as an identity, and therefore provide stronger bonds than either of the other two.</p>
<p>Perhaps more specifically, I claim Marxists believe something on the order of “individuals of the same class have more in common than individuals of the same race or nationality.” Firestone disagrees and substitutes sex for class in her <a href="/dialectic-on-sex">Dialectic on Sex</a>, and individuals such as Curtis Yarvin would cleave the global population on the basis of race. But I do suspect that a large proportion of economic leftism bottoms out in this fundamentally economic understanding of an indvidual’s experience and material reality.</p>
<p>Maybe calling this leftist is slightly incorrect? This seems to be a Western take as well. We see that in America (in my experience) differentiating groups on the basis of wealth is much more accepted than differentiating groups on the basis of race. And racial divides in America are some of the most explicit worldwide. But it is also emblematic of, say, the Progress Studies folk to anchor very, very heavily on ‘GDP go up’ as a metric for overall wellbeing. This seems broadly similar.</p>
<p>At any rate, they’re incorrect. On a national level, it (broadly) makes more sense to classify individuals on the basis of class. But on an international level, race becomes much more important, as race becomes a stronger predictor of culture, morality, values, etc. that are intangible factors not necessarily tracked by wealthy or income metrics. The Anglo-sphere (and Europe to a lesser extent) is unique in that it has managed to assimilate large proportions of immigrants of different ethnicities without resorting to explicit identification and classification of them. This is not the case in e.g. Singapore, Malaysia, India, China etc. And I think this is one of the Marxist fatal flaws.</p>
<p>(maybe this confuses similarity with willigness to cooperate. likely that chinese factory workers and indian factory workers are essentially substitutable but they would never be friends)</p>
<p>This impinges his broader point with the question of: are Marx’s laws of historical development correct? We can belabor this point for eternity, but they are obviously seriously flawed (with the 20th century as his judge). However, this is <em>in fact</em> a separate question from the question of the <em>desirability of Socialism</em> (which includes a subconsideration of feasibility, but is notably different).</p>
<p>Stepping back, Marx’s three points are of varying degrees of incorrect, but when contextualized to the mid-19th century… they seem astonishingly prescient? Or, the Law of the Concentration of Capital is just obviously correct, and most other intellectuals of Marx’s time would deride the idea that class could supersede nationality as a unifying factor (too many racists). But it can, and it is just today that we see the overcorrection.</p>
<p>And it is true that given Marx’s (or even Russell’s) vantage point, moving more in the direction of Socialism would be better for the vast majority of individuals. The baseline welfare of the individual had simiply not increased enough, and deprivation conditions were widespread. 1950s America would be considered a third-world country to us today, and in fact many pro-market individuals <em>today</em> would prefer a Socialist state to living conditions seventy years prior. It’s probably good to keep that in mind.</p>
<p>Anarchism “is the theory which is opposed to every kind of forcible government.” The only government which Anarchists can accept is “free government, not merely in the sense that it is a majority, but in the sense that it is assented to by all.” Anarchists object to the encroachment of the rights of an individual by other individuals in different parts of the community—it is for this reason that they view law enforcement as evil, and that democratic governments are no better than authoritarian ones if they have the capacity to act in a majoritiarian manner.</p>
Russell quotes the Chinese philosopher Chuang Tzu to make his point:
<blockquote>
<p>Horses have hoofs to carry them over frost and snow; hair, to protect them from wind and cold. They eat grass and drink water, and fling up their heels over the champaign. Such is the real nature of horses. Palatial dwellings are of no use to them.</p>
<p>One day Po Lo appeared, saying: “I understand the management of horses.”</p>
<p>So he branded them, and clipped them, and pared their hoofs, and put halters on them, tying them up by the head and shackling them by the feet, and disposing them in stables, with the result that two or three in every ten died. Then he kept them hungry and thirsty, trotting them and galloping them, and grooming, and trimming, with the misery of the tasselled bridle before and the fear of the knotted whip behind, until more than half of them were dead.</p>
<p>The potter says: “I can do what I will with Clay. If I want it round, I use compasses; if rectangular, a square.”</p>
<p>The carpenter says: “I can do what I will with wood. If I want it curved, I use an arc; if straight, a line.”</p>
<p>But on what grounds can we think that the natures of clay and wood desire this application of compasses and square, of arc and line? Nevertheless, every age extols Po Lo for his skill in managing horses, and potters and carpenters for their skill with clay and wood. Those who govern the empire make the same mistake.</p>
<p>Now I regard government of the empire from quite a different point of view.</p>
<p>The people have certain natural instincts:—to weave and clothe themselves, to till and feed themselves. These are common to all humanity, and all are agreed thereon. Such instincts are called “Heaven-sent.”</p>
<p>And so in the days when natural instincts prevailed, men moved quietly and gazed steadily. At that time there were no roads over mountains, nor boats, nor bridges over water. All things were produced, each for its own proper sphere. Birds and beasts multiplied, trees and shrubs grew up. The former might be led by the hand; you could climb up and peep into the raven’s nest. For then man dwelt with birds and beasts, and all creation was one. There were no distinctions of good and bad men. Being all equally without knowledge, their virtue could not go astray. Being all equally without evil desires, they were in a state of natural integrity, the perfection of human existence.</p>
But when Sages appeared, tripping up people over charity and fettering them with duty to their neighbor, doubt found its way into the world. And then, with their gushing over music and fussing over ceremony, the empire became divided against itself.
</blockquote>
<p>It is important to note that <em>anarchism does not necessarily imply communal ownership of land and capital.</em> It just so happens that in the early 20th century, the vast majority of anarchists also happened to be communists, so Russell focuses on these anarcho-communists. But today, a significant portion of anarchists are libertarians (or even monarchist-adjacent), and do not share the past belief that “private capital is a source of tyranny by certain individuals over others.”</p>
<p>If Marx is the standard-bearer of socialist thought, than Michel Bakunin, Russian aristocrat, would be the standard-bearer of aristocratic thought. He was an emigre for large portions of his life, due to his native tendencies of stirring up pseudo-revolutionary behavior and subsequently incurring the ire of state authorities.</p>
<p>Anarcho-communism does not differ tremendously from socialism in the nature of its economic reforms, it differs from socialism on the basis of its political reforms, arguing for a self-organizing society. This as a movement did not gain much traction, but an intellectual descendant of it did—Syndicalism.</p>
<blockquote>
<p>Syndicalism stands essentially for the point of view of the producer as opposed to that of the consumer; it is concerned with reforming actual work, and the organization of industry, not MERELY with securing greater rewards for work. From this point of view its vigor and its distinctive character are derived. It aims at substituting industrial for political action, and at using Trade Union organization for purposes for which orthodox Socialism would look to Parliament.</p>
<p>…</p>
<p>The essential doctrine of Syndicalism is the class- war, to be conducted by industrial rather than politi- cal methods. The chief industrial methods advocated are the strike, the boycott, the label and sabotage.</p>
<p>…</p>
<p>The doctrines of Syndicalism may be illustrated by an article introducing it to English readers in the first number of “The Syndicalist Railwayman,” September, 1911, from which the following is quoted:—</p>
“All Syndicalism, Collectivism, Anarchism aims at abolishing the present economic status and existing private ownership of most things; but while Collectivism would substitute ownership by everybody, and Anarchism ownership by nobody, Syndicalism aims at ownership by Organized Labor. It is thus a purely Trade Union reading of the economic doctrine and the class war preached by Socialism. It vehemently repudiates Parliamentary action on which Collectivism relies; and it is, in this respect, much more closely allied to Anarchism, from which, indeed, it differs in practice only in being more limited in range of action.” (Times, Aug. 25, 1911).
</blockquote>
<p>One of the astute Syndicalist proposals, in my opinion, was to propose “industrial unionism”, where unions were formed on the basis of the nature of one’s work, rather than the organization they were employed by. Notably, this movement originated in America (American labor reform seemed to be more? militant than British labor reform during this time, which I suppose shouldn’t be that surprising given that three decades later we elected FDR).</p>
<p>Here we draw our lines, between Socialism and Anarchism (in practice Syndicalism). Russell believes that the best ideal state of the world is Anarchic, but that Socialists have better practical prescriptions, and he adheres to an ideology known as “guild socialism”, which will be discussed later. I think that these takes are understandable in the context of a world where absurd amounts of surplus have not been generated, but today? Markets creating wealth seem to be a good component of capitalistic society that Socialist ones would have to emulate.</p>
Which, I note, Russell does account for, when considering the question of how to create a better natural order of society:
<blockquote>
Two connected doctrines must be considered in examining this question: First, Malthus’ doctrine of population; and second, the vaguer, but very prevalent, view that any surplus above the bare necessaries of life can only be produced if most men work long hours at monotonous or painful tasks, leaving little leisure for a civilized existence or rational enjoyment. I do not believe that either of these obstacles to optimism will survive a close scrutiny. The possibility of technical improvement in the methods of production is, I believe, so great that, at any rate for centuries to come, there will be no inevitable barrier to progress in the general well-being by the simultaneous increase of commodities and diminution of hours of labor.
</blockquote>
<p>It is maybe for this reason that he is less of a radical than his contemporaries?</p>
He notices one of the great cleavages between Socialists nad Anarchists:
<blockquote>
There is a fundamental difference between Socialism and Anarchism as regards the question of distribution. Socialism, at any rate in most of its forms, would retain payment for work done or for willingness to work, and, except in the case of persons incapacitated by age or infirmity, would make willingness to work a condition of subsistence, or at any rate of subsistence above a certain very low minimum. Anarchism, on the other hand, aims at granting to everyone, without any conditions whatever, just as much of all ordinary commodities as he or she may care to consume, while the rarer com- modities, of which the supply cannot easily be indefinitely increased, would be rationed and divided equally among the population. Thus Anarchism would not impose any OBLIGATIONS of work, though Anarchists believe that the necessary work could be made sufficiently agreeable for the vast majority of the population to undertake it voluntarily. Socialists, on the other hand, would exact work. Some of them would make the incomes of all workers equal, while others would retain higher pay for the work which is considered more valuable. All these different systems are compatible with the common ownership of land and capital, though they differ greatly as regards the kind of society which they would produce.
</blockquote>
<p>And resolution:</p>
<blockquote>
<p>Anarchism has the advantage as regards liberty, Socialism as regards the inducements to work. Can we not find a method of combining these two advantages? It seems to me that we can.</p>
<p>We saw that, provided most people work in moderation, and their work is rendered as productive as science and organization can make it, there is no good reason why the necessaries of life should not be supplied freely to all. Our only serious doubt was as to whether, in an Anarchist regime, the motives for work would be sufficiently powerful to prevent a dan- gerously large amount of idleness. But it would be easy to decree that, though necessaries should be free to all, whatever went beyond necessaries should only be given to those who were willing to work—not, as is usual at present, only to those in work at any moment, but also to all those who, when they happened not to be working, were idle through no fault of their own. We find at present that a man who has a small income from investments, just sufficient to keep him from actual want, almost always prefers to find some paid work in order to be able to afford luxuries. So it would be, presumably, in such a community as we are imagining. At the same time, the man who felt a vocation for some unrecognized work of art or science or thought would be free to follow his desire, provided he were willing to “scorn delights and live laborious days.” And the comparatively small number of men with an invincible horror of work—the sort of men who now become tramps— might lead a harmless existence, without any grave danger of their becoming sufficiently numerous to be a serious burden upon the more industrious. In this ways the claims of freedom could be combined with the need of some economic stimulus to work. Such a system, it seems to me, would have a far greater chance of success than either pure Anarchism or pure orthodox Socialism.</p>
Stated in more familiar terms, the plan we are advocating amounts essentially to this: that a certain small income, sufficient for necessaries, should be secured to all, whether they work or not, and that a larger income, as much larger as might be warranted by the total amount of commodities produced, should be given to those who are willing to engage in some work which the community recognizes as useful. On this basis we may build further. I do not think it is always necessary to pay more highly work which is more skilled or regarded as socially more useful, since such work is more interesting and more respected than ordinary work, and will therefore often be preferred by those who are able to do it. But we might, for instance, give an intermediate income to those who are only willing to work half the usual number of hours, and an income above that of most workers to those who choose a specially disagreeable trade. Such a system is perfectly compatible with Socialism, though perhaps hardly with Anarchism. Of its advantages we shall have more to say at a later stage. For the present I am content to urge that it combines freedom with justice, and avoids those dangers to the community which we have found to lurk both in the proposals of the Anarchists and in those of orthodox Socialists.
</blockquote>
<p>Question, how do Anarchists deal with crime?</p>
<blockquote>
<p>The conclusion, which appears to be forced upon us, is that the Anarchist ideal of a community in which no acts are forbidden by law is not, at any rate for the present, compatible with the stability of such a world as the Anarchists desire. In order to obtain and preserve a world resembling as closely as possible that at which they aim, it will still be necessary that some acts should be forbidden by law. We may put the chief of these under three heads:</p>
<ol type="1">
<li><p>Theft.</p></li>
<li><p>Crimes of violence.</p></li>
<li><p>The creation of organizations intended to subvert the Anarchist regime by force.</p></li>
</ol>
<p>We will briefly recapitulate what has been said already as to the necessity of these prohibitions.</p>
<ol type="1">
<li><p>Theft.—It is true that in an Anarchist world there will be no destitution, and therefore no thefts motivated by starvation. But such thefts are at present by no means the most considerable or the most harmful. The system of rationing, which is to be applied to luxuries, will leave many men with fewer luxuries than they might desire. It will give opportunities for peculation by those who are in control of the public stores, and it will leave the possibility of appropriating such valuable objects of art as would naturally be preserved in public museums. It may be contended that such forms of theft would be prevented by public opinion. But public opinion is not greatly operative upon an individual unless it is the opinion of his own group. A group of men combined for purposes of theft might readily defy the public opinion of the majority unless that public opinion made itself effective by the use of force against them. Probably, in fact, such force would be applied through popular indignation, but in that case we should revive the evils of the criminal law with the added evils of uncertainty, haste and passion, which are inseparable from the practice of lynching. If, as we have suggested, it were found necessary to provide an economic stimulus to work by allowing fewer luxuries to idlers, this would afford a new motive for theft on their part and a new necessity for some form of criminal law.</p></li>
<li><p>Crimes of Violence.—Cruelty to children, crimes of jealousy, rape, and so forth, are almost certain to occur in any society to some extent. The prevention of such acts is essential to the existence of freedom for the weak. If nothing were done to hinder them, it is to be feared that the customs of a society would gradually become rougher, and that acts which are now rare would cease to be so. If Anarchists are right in maintaining that the existence of such an economic system as they desire would prevent the commission of crimes of this kind, the laws forbidding them would no longer come into operation, and would do no harm to liberty. If, on the other hand, the impulse to such actions persisted, it would be necessary that steps should be taken to restrain men from indulging it.</p></li>
<li><p>The third class of difficulties is much the most serious and involves much the most drastic interference with liberty. I do not see how a private army could be tolerated within an Anarchist community, and I do not see how it could be prevented except by a general prohibition of carrying arms. If there were no such prohibition, rival parties would organize rival forces, and civil war would result. Yet, if there is such a prohibition, it cannot well be carried out without a very considerable interference with individual liberty. No doubt, after a time, the idea of using violence to achieve a political object might die down, as the practice of duelling has done. But such changes of habit and outlook are facilitated by legal prohibition, and would hardly come about without it. I shall not speak yet of the international aspect of this same problem, for I propose to deal with that in the next chapter, but it is clear that the same considerations apply with even greater force to the relations between nations.</p></li>
</ol>
</blockquote>
<p>&amp; Russell argues that someting approximating a state will be necessary to enforce this.</p>
<blockquote>
<p>What, I want to ask, is the fundamental evil in our modern Society which we should set out to abolish?</p>
<p>There are two possible answers to that question, and I am sure that very many well-meaning people would make the wrong one. They would answer POVERTY, when they ought to answer SLAVERY. Face to face every day with the shameful contrasts of riches and destitution, high dividends and low wages, and painfully conscious of the futility of trying to adjust the balance by means of charity, private or public, they would answer unhesitatingly that they stand for the ABOLITION OF POVERTY.</p>
<p>Well and good! On that issue every Socialist is with them. But their answer to my question is none the less wrong.</p>
Poverty is the symptom: slavery the disease. The extremes of riches and destitution follow inevitably upon the extremes of license and bondage. The many are not enslaved because they are poor, they are poor because they are enslaved. Yet Socialists have all too often fixed their eyes upon the material misery of the poor without realizing that it rests upon the spiritual degradation of the slave.
</blockquote>
<p>Near the end, Russell gives a positive vision of a world that is more socialist than the one today, with compulsory education until 16 such that a society could still intellectually flourish.</p>
<blockquote>
<p>Our discussion has led us to the belief that the communal ownership of land and capital, which constitutes the characteristic doctrine of Socialism and Anarchist Communism, is a necessary step toward the removal of the evils from which the world suffers at present and the creation of such a society as any humane man must wish to see realized. But, though a necessary step, Socialism alone is by no means sufficient. There are various forms of Socialism: the form in which the State is the employer, and all who work receive wages from it, involves dangers of tyranny and interference with progress which would make it, if possible, even worse than the present regime. On the other hand, Anarchism, which avoids the dangers of State Socialism, has dangers and difficulties of its own, which make it probable that, within any reasonable period of time, it could not last long even if it were established. Nevertheless, it remains an ideal to which we should wish to approach as nearly as possible, and which, in some distant age, we hope may be reached completely. Syndicalism shares many of the defects of Anarchism, and, like it, would prove unstable, since the need of a central government would make itself felt almost at once.</p>
<p>The system we have advocated is a form of Guild Socialism, leaning more, perhaps, towards Anarchism than the official Guildsman would wholly approve. It is in the matters that politicians usually ignore— science and art, human relations, and the joy of life —that Anarchism is strongest, and it is chiefly for the sake of these things that we included such more or less Anarchist proposals as the “vagabond’s wage.” It is by its effects outside economics and politics, at least as much as by effects inside them, that a social system should be judged. And if Socialism ever comes, it is only likely to prove beneficent if non- economic goods are valued and consciously pursued.</p>
<p>The world that we must seek is a world in which the creative spirit is alive, in which life is an adventure full of joy and hope, based rather upon the impulse to construct than upon the desire to retain what we possess or to seize what is possessed by others. It must be a world in which affection has free play, in which love is purged of the instinct for domination, in which cruelty and envy have been dispelled by happiness and the unfettered development of all the instincts that build up life and fill it with mental delights. Such a world is possible; it waits only for men to wish to create it.</p>
Meantime, the world in which we exist has other aims. But it will pass away, burned up in the fire of its own hot passions; and from its ashes will spring a new and younger world, full of fresh hope, with the light of morning in its eyes.
</blockquote>
<p>Good! I do not have the requisite intellectual heft at the moment to properly review this, so this will at the moment stand in its sorry Frankensteined state. Apologies to any reader who made it this far!</p>]]></description>
    <pubDate>Wed, 21 Jan 2026 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/proposed-roads-to-freedom/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>an &quot;infinitary&quot; proof of the finite Ramsey&#39;s theorem</title>
    <link>https://www.yudhister.me/nonstandard-ramsey/</link>
    <description><![CDATA[<p>[we prove the Infinite Ramsey’s Theorem with classical and nonstandard methods and deduce the finite Ramsey’s theorem from it]</p>
<p><strong>Infinite Ramsey’s Theorem:</strong> For any <span class="math inline">\(k, m \in \mathbb{N},\)</span> any infinite set <span class="math inline">\(X,\)</span> and any <span class="math inline">\(k\)</span>-coloring <span class="math inline">\(c\)</span> of <span class="math inline">\(X^{[m]},\)</span> there exists an infinite subset of <span class="math inline">\(X\)</span> that is monochromatic with respect to <span class="math inline">\(c.\)</span> (Here <span class="math inline">\(X^{[m]}\)</span> denotes the set of <span class="math inline">\(m\)</span>-element subsets of <span class="math inline">\(X\)</span> and a <span class="math inline">\(k\)</span>-coloring <span class="math inline">\(c\)</span> of a set <span class="math inline">\(X\)</span> is some function <span class="math inline">\(c: X \to \{1, \ldots, k\}.\)</span> A subset <span class="math inline">\(Y\)</span> of <span class="math inline">\(X\)</span> is “monochromatic” if <span class="math inline">\(c(Y)\)</span> is single-valued).</p>
<p>Typically, the Infinite Ramsey’s Theorem is introduced as a structure guarantee for infinite (hyper)graphs. To see this, take a graph <span class="math inline">\(G = (V,E)\)</span> with an infinite set of vertices <span class="math inline">\(V\)</span> and an (not necessarily infinite) edge set <span class="math inline">\(E.\)</span> Consider the <span class="math inline">\(2\)</span>-coloring <span class="math inline">\(c: V^{[2]}\to \{1, 2\}\)</span> such that <span class="math inline">\(c(\{v_1, v_2\}) = 1\)</span> if and only if <span class="math inline">\((v_1, v_2) \in E,\)</span> and <span class="math inline">\(c(\{v_1,v_2\}) = 2\)</span> otherwise. The Infinite Ramsey’s Theorem implies that for this 2-coloring, there exists an infinite set of vertices <span class="math inline">\(W \subseteq V\)</span> such that <span class="math inline">\(c(W)\)</span> is constant; implying that <span class="math inline">\(G\)</span> either has an infinite fully edge-connected subset (called a <em>clique:</em> all pairs of vertices in <span class="math inline">\(W\)</span> share a corresponding edge) or an infinite fully disconnected subset (an <em>anticlique:</em> no two vertices in <span class="math inline">\(W\)</span> share an edge). (Colorings with <span class="math inline">\(k \geq 3\)</span> imply an identical statement for <span class="math inline">\(k\)</span>-hypergraphs: graphs where edges <span class="math inline">\(e \in E\)</span> are <span class="math inline">\(k\)</span>-tuples of vertices, and as such connect <span class="math inline">\(k\)</span> vertices at a time.)</p>
<p>Additionally, the Infinite Ramsey’s Theorem is typically proved combinatorially, by induction. We reproduce the classical proof here for completeness, for the case <span class="math inline">\(X = \mathbb{N}.\)</span></p>
<ul>
<li><p>The base case <span class="math inline">\(m=1\)</span> is a straightforward application of the pigeonhole principle: partitioning <span class="math inline">\(\mathbb{N}\)</span> into <span class="math inline">\(k\)</span> finite sets is impossible, so at least one of the color classes will be infinite.</p></li>
<li><p>Now assume the statement holds for <span class="math inline">\(\mathbb{N}^{[m-1]}.\)</span> We prove the statement for an arbitrary (finite) <span class="math inline">\(k-\)</span>coloring <span class="math inline">\(c\)</span> of <span class="math inline">\(\mathbb{N}^{[m]}\)</span> by constructing a monochromatic subset <span class="math inline">\(H&#39;\)</span> as follows.</p>
<ul>
<li><p>Let <span class="math inline">\(X_0 = \mathbb{N}\)</span> and <span class="math inline">\(x_0 = 0.\)</span> We construct sequences <span class="math inline">\(x_0 &lt; x_1 &lt; \cdots\)</span> and <span class="math inline">\(X_0 \supset X_1 \supset \cdots\)</span> in the following way.</p></li>
<li><p>For each <span class="math inline">\(X_i, x_i,\)</span> there’s a natural <span class="math inline">\(k-\)</span>coloring <span class="math inline">\(c_i\)</span> of <span class="math inline">\((X_i \setminus \{x_i\})^{[m-1]}\)</span> given by <span class="math inline">\(c_i(S) = c(S\cup \{x_i\}).\)</span> By the induction hypothesis, there exists an infinite <span class="math inline">\(X_{i+1} \subset X_i \setminus \{x_i\}\)</span> and a color <span class="math inline">\(d_i\)</span> such that <span class="math inline">\(c(S \cup \{x_i\}) = d_i\)</span> for all <span class="math inline">\((m-1)\)</span> element subsets <span class="math inline">\(S\)</span> of <span class="math inline">\(X_{i+1}.\)</span> Then let <span class="math inline">\(x_{i+1} = \min(X_{i+1}).\)</span></p></li>
<li><p>Let <span class="math inline">\(H = \{x_0, x_1, \ldots\}.\)</span> The colors <span class="math inline">\(d_i\)</span> (decided stepwise as above) lie in <span class="math inline">\(\{1, \ldots, k\},\)</span> so by the pigeonhole principle there is some color <span class="math inline">\(d\)</span> for which <span class="math inline">\(d_i = d\)</span> for infinitely many <span class="math inline">\(i.\)</span> Let <span class="math inline">\(I\)</span> be the set of these indices, and let <span class="math inline">\(H&#39;\)</span> be the subset of <span class="math inline">\(H\)</span> on <span class="math inline">\(I.\)</span> Note <span class="math inline">\(H&#39;\)</span> is infinite.</p></li>
<li><p>Observe that any <span class="math inline">\(m\)</span>-element subset of <span class="math inline">\(H&#39;\)</span> is monochromatically <span class="math inline">\(d.\)</span> Take any <span class="math inline">\(Y \in (H&#39;)^{[m]}.\)</span> Its least element <span class="math inline">\(y\)</span> is some <span class="math inline">\(x_j\)</span> for <span class="math inline">\(j \in I.\)</span> The remaining <span class="math inline">\(m-1\)</span> elements of <span class="math inline">\(Y\)</span> are larger than <span class="math inline">\(x_j\)</span> and so lie in <span class="math inline">\(X_{j+1}\)</span> (recall this is a descending subset chain). So, <span class="math inline">\(c(Y) = d_j,\)</span> and <span class="math inline">\(d_j = d\)</span> as <span class="math inline">\(j \in I.\)</span> This finishes the inductive step.</p></li>
</ul></li>
</ul>
<p>The key ingredient in the nonstandard proof is the existence of a corresponding <strong>hyperextension</strong> <span class="math inline">\(^*X\)</span> for mathematical objects <span class="math inline">\(X,\)</span> such that <span class="math inline">\(^*X\)</span> is not isomorphic to <span class="math inline">\(X\)</span> but preserves all “elementary properties” of <span class="math inline">\(X.\)</span> (The proof of the existence of these objects will be reserved for another day: concisely, Los’s theorem guarantees the diagonal embedding into the ultrapower of <span class="math inline">\(X\)</span> is elementary). “Elementary properties” of <span class="math inline">\(X\)</span> are those expressable in first order sentences: includes set inclusion, union, intersection, field axioms, etc. Does not include the Archimedean property of the reals! (For all positive <span class="math inline">\(x \in \mathbb{R}\)</span> there exists <span class="math inline">\(n \in \mathbb{N}\)</span> such that <span class="math inline">\(nx &gt; 1.\)</span>). We define the <strong>transfer map</strong> <span class="math inline">\(*\)</span> to be a function taking an object to its hyperextension. [More properties can be found in <a href="https://yudhister.me/files/Nonstandard_Methods_and_Applications_in_Ramsey_Theory.pdf">Section 2 of this manuscript</a>.]</p>
<p>Consider some infinite graph <span class="math inline">\(G.\)</span> (Worthwhile to note that, formally, it makes more sense to treat the edges <span class="math inline">\(E\)</span> as a relation: a subset of <span class="math inline">\(V \times V\)</span> that’s anti-reflexive and symmetric.) A hyperextension <span class="math inline">\(^*G\)</span> of <span class="math inline">\(G\)</span> induces corresponding hyperextensions <span class="math inline">\(^*V, ^*E\)</span> on the vertices and edges.</p>
<p>We now prove the Infinite Ramsey’s Theorem for <span class="math inline">\(2\)</span>-colorings, in the graph setting. Let <span class="math inline">\(\xi\)</span> be an element of <span class="math inline">\(^*V\)</span> not belonging to <span class="math inline">\(V.\)</span> Consider its hyperextension <span class="math inline">\(^*\xi \in ^{**}V.\)</span> There are two cases: either <span class="math inline">\(\xi\)</span> and <span class="math inline">\(^*\xi\)</span> are connected by an edge in <span class="math inline">\(^{**}G,\)</span> or they are not. We treat the first case (the other being symmetric). Suppose there exist <span class="math inline">\(d\)</span> elements <span class="math inline">\(v_i\)</span> of <span class="math inline">\(V\)</span> which form a clique and are all connected to <span class="math inline">\(\xi\)</span> in <span class="math inline">\(^*G.\)</span> These form a sequence <span class="math inline">\((v_i)_{1 \leq i &lt; d}.\)</span></p>
<p>Consider the statement: “there exists some <span class="math inline">\(y \in ^*V\)</span> such that for <span class="math inline">\(j &lt; d,\)</span> <span class="math inline">\(y\)</span> is not <span class="math inline">\(v_j,\)</span> <span class="math inline">\((v_j, y) \in ^*E,\)</span> and <span class="math inline">\((y, ^*\xi) \in ^{**}E.\)</span>” This is satisfied by <span class="math inline">\(\xi\)</span> by construction. (Editing the third constraint is what deals with the case where <span class="math inline">\(\xi\)</span> is not connected to <span class="math inline">\(^*\xi.\)</span>). This is also an elementary property of <span class="math inline">\(^*G,\)</span> so a corresponding statement must be true in <span class="math inline">\(G.\)</span> This statement is “there exists <span class="math inline">\(v_d \in V\)</span> different from <span class="math inline">\(v_j\)</span> for <span class="math inline">\(j &lt; d\)</span> such that <span class="math inline">\((v_j, v_d) \in E\)</span> for <span class="math inline">\(j &lt;d\)</span> and <span class="math inline">\((v_d, \xi) \in ^*E.\)</span>”</p>
<p>This construction is recursive (you can make a <span class="math inline">\(d+1\)</span> length chain by repeating it), so this constructs an infinite clique. An infinite anticlique is constructed by taking the case where <span class="math inline">\(\xi\)</span> is not connected to <span class="math inline">\(^*\xi.\)</span></p>
<p>Compared to the classical proof, the nonstandard approach is much cleaner? Less bookkeeping. You extend this argument to the <span class="math inline">\(k\)</span>-coloring case simply: <span class="math inline">\(E\)</span> becomes a subset of <span class="math inline">\(V^k.\)</span></p>
<p><strong>Finite Ramsey’s Theorem.</strong> For every <span class="math inline">\(k,m,n \in \mathbb{N},\)</span> there is <span class="math inline">\(l \in \mathbb{N}\)</span> such that every coloring of <span class="math inline">\([l]^{[m]}\)</span> with <span class="math inline">\(k\)</span> colors has a homogenous set of size <span class="math inline">\(n.\)</span></p>
<p>We prove this by contradiction. Assume it’s false for a particular choice of <span class="math inline">\(k,m,n.\)</span> Then for every <span class="math inline">\(l \in \mathbb{N},\)</span> there is a <span class="math inline">\(k\)</span>-coloring <span class="math inline">\(c\)</span> of <span class="math inline">\([l]^{[m]}\)</span> with no monochromatic subset of size <span class="math inline">\(n.\)</span></p>
<p>This is impossible due to Konig’s Lemma. You can construct a finitely branching tree of these “bad” colorings where the partial order on the tree is induced by inclusion. Konig’s lemma implies there’s an infinite branch of this tree. This implies there’s a <span class="math inline">\(k\)</span>-coloring of <span class="math inline">\(\mathbb{N}^{[m]}\)</span> with no monochromatic subset of size <span class="math inline">\(n,\)</span> which contradicts the Infinite Ramsey’s Theorem. QED.</p>]]></description>
    <pubDate>Tue, 20 Jan 2026 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/nonstandard-ramsey/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>some advice</title>
    <link>https://www.yudhister.me/advice/</link>
    <description><![CDATA[<p><em>more examples appreciated . . .</em></p>
<ul>
<li><a href="https://www.lesswrong.com/posts/Shfziga3BdCi2L5D6/close-open-loops">Close open loops</a> - Oliver Habryka</li>
<li><a href="https://maxhodak.com/nonfiction/2016/02/04/advice-for-prospective-startup-founders">Advice for prospective startup founders</a> - Max Hodak</li>
<li><a href="https://tsvibt.blogspot.com/2025/11/abstract-advice-to-researchers-tackling.html">Abstract advice to researchers tackling the difficult core problems of AGI alignment</a> - Tsvi Benson-Tilsen</li>
<li><a href="https://patrickcollison.com/advice">Advice (10-20yos)</a> - Patrick Collison</li>
<li><a href="https://guzey.com/personal/what-should-you-do-with-your-life/">What Should You Do With Your Life? Directions and Advice</a> - Alexey Guzey</li>
<li><a href="https://www.paulgraham.com/love.html">How To Do What You Love</a> - Paul Graham</li>
<li><a href="https://www.paulgraham.com/greatwork.html">How To Do Great Work</a> - Paul Graham</li>
<li><a href="https://www.benkuhn.net/pjm/">How I’ve run major projects</a> by Ben Kuhn</li>
<li><a href="https://www.benkuhn.net/listen/">To listen well, get curious</a> by Ben Kuhn</li>
<li><a href="https://www.benkuhn.net/attention/">Attention is your scarcest resource</a> by Ben Kuhn</li>
<li><a href="https://www.benkuhn.net/abyss/">Staring into the abyss as a core life skill</a> by Ben Kuhn</li>
<li><a href="https://www.benkuhn.net/weeklyessays/">My favorite essays of life advice</a> by Ben Kuhn</li>
<li><a href="https://blog.samaltman.com/how-to-be-successful">How To Be Successful</a> by Sam Altman</li>
<li><a href="https://www.kalzumeus.com/2012/01/23/salary-negotiation/">Salary Negotiation</a> by Patrick McKenzie</li>
<li><a href="https://math.stanford.edu/~vakil/potentialstudents.html">For potential Ph.D. students</a> by Ravi Vakil</li>
<li><a href="https://math.stanford.edu/~vakil/threethings.html">The “Three Things” Exercise for getting things out of talks</a> by Ravi Vakil</li>
<li><a href="https://terrytao.wordpress.com/advice-on-writing-papers/">On writing</a> by Terence Tao</li>
<li><a href="https://math.ucr.edu/home/baez/advice.html">Advice for the Young Scientist</a> by John Baez</li>
<li><a href="https://metaphor.ethz.ch/x/2025/hs/401-3005-00L/texts/serre_how_to_write_mathematics_badly_transcript.pdf">How to write mathematics badly</a> by Jean-Pierre Serre</li>
<li><a href="https://paulgraham.com/vb.html">Life is Short</a> by Paul Graham</li>
<li><a href="https://www.cs.utexas.edu/~dahlin/bookshelf/hamming.html">You and Your Research</a> by Richard Hamming</li>
<li><a href="http://joschu.net/blog/opinionated-guide-ml-research.html">An Opinionated Guide to ML Research</a> by John Schulman</li>
<li><a href="https://www.whoi.edu/cms/files/platt64sci_72743.pdf">Strong Inference</a> by John R. Platt</li>
<li><a href="https://calteches.library.caltech.edu/51/2/CargoCult.htm">Cargo Cult Science</a> by Richard Feynman</li>
<li><a href="https://michaelnielsen.org/blog/principles-of-effective-research/">Principles of Effective Research</a> by Michael Nielsen</li>
<li><a href="https://www.lsu.edu/science/biosci/programs/graduate/gradforms/scientificwriting.pdf">Cormac McCarthy on Scientific Writing</a></li>
<li><a href="https://cs.stanford.edu/~jsteinhardt/ResearchasaStochasticDecisionProcess.html">Research as a Stochastic Decision Process</a> by Jacob Steinhardt</li>
<li><a href="https://benjaminfspector.com/writing/esi">Effective Startup Ideation</a> by Benjamin Spector</li>
<li><a href="https://www.alignmentforum.org/posts/dZFpEdKyb9Bf4xYn7/tips-for-empirical-alignment-research">Tips for Empirical Alignment Research</a> by Ethan Perez</li>
<li><a href="https://nat.org/">Nat Friedman’s webpage</a>. Ex “In many cases it’s more accurate to model the world as 500 people than 8 billion”</li>
<li></li>
<li>…</li>
</ul>]]></description>
    <pubDate>Mon, 19 Jan 2026 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/advice/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>FIAT and negatory goal development</title>
    <link>https://www.yudhister.me/negatory/</link>
    <description><![CDATA[<p>We’d like to understand a mind’s effects on the world. To do this, we’d like to understand the structures / elements which determine / designate mind trajectories (preferably over long horizons).</p>
<p>Descriptively, minds can often be said to have goals. The minds we currently observe most often have goals, and goal-oriented frames provide short, accurate compressions of mind outputs.</p>
<p>How does a mind come to have a goal? All observed minds, artificial or otherwise, do not exist absent amental structure. They are grown through a deterministic (enough) process, on silicon or biological substrate, such that all goal-drivers have a “physical” representation in the corresponding mind-artifact. “Physical” explanations for goal development include:</p>
<ul>
<li>tracing the development of circuits in a neural network over the course of training;</li>
<li>endocrinal perspectives on the upregulation / downregulation of various hormones leading to increased sex drive / etc.;</li>
<li>neuroscientific perspectives on “the steering system” and reward functions lying therein;</li>
<li>evolutionary perspectives on “why we seek out sweet food” and, perhaps contentiously, on social behaviors and psychology writ large.</li>
</ul>
<p>Each is a valid explanation in context. Yet I’d argue none properly engage with “mentalistic” aspects of mind: the structures / elements of mind-systems unified by their predominance in minds and lack elsewhere. Insofar as we expect goals to be common properties of minds, we’d expect the structures / elements of minds to contribute to their development.</p>
<p>Tsvi <a href="https://tsvibt.blogspot.com/2022/11/do-humans-derive-values-from-fictitious.html">hypothesizes</a> that a dominant driver of human behavior is a reflective process in which a human mind finds itself ascribing goals in accordance with what goals it would make sense for the human mind to have <em>conditioning on the past history of its actions.</em><a href="#fn1" class="footnote-ref" id="fnref1" role="doc-noteref"><sup>1</sup></a> He calls this “the Fictitious Imputed Adopted Telos hypothesis.” FIAT provides plausible, “mentalistic” explanations for goal development, in that a mind’s drive for coherence (a mentalistic property) lets it amplify more “hard-coded” drives into goals that are more general than the initial activation state of the drive, by generalizing from commonalities between past experience.</p>
<p>Differentiating flavors of “fictitious imputed adopted telos”:</p>
<ul>
<li>the underlying reflectory dynamics are mind-like, so perhaps FIAT is a dynamism that applies across mind-like structures, in a way that wouldn’t be expected for “evolutionary” drive amplification arguments (in particular <a href="https://www.lesswrong.com/posts/CBHpzpzJy98idiSGs/do-humans-derive-values-from-fictitious-imputed-coherence?commentId=cxYGuzLbe2unxRKjr">Mateusz Bagiński</a> suggests an instiantiation during the development of Jewish monotheism). little bit tricky because many systems undergo evolutionary optimization</li>
<li><em>imitative</em> learning in humans is a well-supported hypothesis, and imitative dynamics possess a lot of explanatory power. What differentiates FIAT? FIAT is ambiguous with many imitative perspectives</li>
<li><em>nomenologically, how does FIAT generalize?</em> I expect FIAT to embody something like an abstraction hierarchy</li>
</ul>
<p>With regards to the latter: attractive and repulsive dynamics are not symmetric in a relevant way; the specification of “do(x)” is crisper than the specification of “not do(x).” Even taking a predictive perspective, space of trajectories ending in “x” is much smaller than space of trajectories not ending in “x.” Expanding x-space seems easier? in the do(x) vs not do(x) case, because credit attribution for the causal factors at ending up in not do(x) trajectories is harder because the space is larger. So you’d expect FIAT to “do worse” here.</p>
<p>(this is what I’m trying to call “negatory goal development”)</p>
<p>Is this negatory goal development particularly worse for FIAT than otherwise? Well, I expect non-FIAT / “physical” alternatives to generalize less well in “not do(x)” cases, so total negatory goal development via e.g. imitative methods is probably smaller.</p>
<p>There’s a story you could tell here where a lot of the pathological aspects of minds come from FIAT-induced negatory goal development. Bateson’s schismogenesis hypotheses are, as far as I can tell, disjoint or at the very least operating not on the same hierarchical level (it’s FIAT-accepting-agnostic). I also think these “negatory” patterns are better explicated in Braitenberg or Braitenberg-peers.</p>
<p>Ideally we’d study goal-development in purely epistemic settings? Not sure if our bounded reasoning models are high-fidelity enough, or whether they’ll give us any interesting insights.</p>
<!-- signs in goal-development are qualitiatively different. attractive dynamics to points in WM are convergent and ~overdetermined, repulsive dynamics from points in WM are quite underconstrained. FIAT dynamics are quite mentalistic. what happens if we adapt them to negatory goals? e.g. you can imagine "update away" is an atomic motion comparable to "update towards". 

consider Bateson's schismogenesis: aspects of mind-structure engaging w/negatory goal development in ways that are pathological. negatory goal development in minds is probably overwhelmingly pathological? argument against FIAT implementing negatory goal development is that Bateson's schismogenesis is likely, overwhelmingly not mechanistically accurate (given genetic propensity to schizophrenia)

braitenberg feedback loops here? -->
<section id="footnotes" class="footnotes footnotes-end-of-document" role="doc-endnotes">
<hr />
<ol>
<li id="fn1"><p>I note that he operates within the frame of “deriving values” rather than “determining goals.” I don’t do this because I think grounding the analysis in goals is sounder (the observational evidence for “goals” being “real” is much stronger, given that “values” are fundamentally properties internal to minds and are typically either argued for with either coherence-like structural arguments or with relatively weak “interpretability”-shaped probes, either in the neuroscience literature or the more modern interpretability field)<a href="#fnref1" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
</ol>
</section>]]></description>
    <pubDate>Sun, 18 Jan 2026 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/negatory/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>meiotic geometry</title>
    <link>https://www.yudhister.me/meiotic-geometry/</link>
    <description><![CDATA[<p>[taken from Thom’s <a href="https://pmc.ncbi.nlm.nih.gov/articles/PMC2734982/">Structural Stability and Morphogenesis</a>]</p>
<p>Meiosis is the process by which germ cells divide into gametes in preparation for organismal reproduction. It differs from mitosis in numerous ways, but in particular that the ultimate daughter cells are haploid (only retaining one copy of each chromosome as opposed to two).</p>
<p>Thom proposes a geometric model of meiosis based on the following principle:</p>
<blockquote>
<p><em>at the pachytene stage, the local genetic state of the chromatic tetrad is the result of a competition between the genetic regimes defined by the parent chromosomes joined in the synaptic complex.</em></p>
</blockquote>
<p>The <em>pachytene</em> stage of meiosis is a substage of prophase I where homologous chromosomes fully pair and genetic recombination occurs; it determines the haplotype of each chromosome in the resulting gametes. This haplotype determination is synonymous with “the local genetic state of the chromatic tetrad:” the tetrad consisting of the paired homologs and “the local genetic state” referring to the specific allele arrangements. Complexities of the these mechanisms (e.g. chiasma) are hidden under “competition.” The synaptic complex is the protein structure binding the homologous chromosomes (maternal-paternal pairs).</p>
<p>Represent the synaptic complex by the cylinder <span class="math inline">\(x^2 + y^2 = 1\)</span> in <span class="math inline">\(\mathbb{R}^3,\)</span> where the half <span class="math inline">\(x&lt;0\)</span> represents (say) the maternal chromosome and the half <span class="math inline">\(x&gt;0\)</span> represents the paternal one. Insofar as pachytene “determines” recombination between non-sister chromatids, this motivates the addition of a “shockwave” which cuts each plane of the cylinder (e.g. <span class="math inline">\(z\)</span> constant) as some convex curve <span class="math inline">\(c(z)\)</span> through the origin, such that when associating each gene <span class="math inline">\(g_i\)</span> with a plane <span class="math inline">\(z = g_i\)</span> the lines <span class="math inline">\(x = 0\)</span> and <span class="math inline">\(c(z)\)</span> separate the cylindrical cross-section into four chromatids.</p>
<p>The case where each <span class="math inline">\(c(z)\)</span> is a straight line corresponds to the case where every recombination is symmetric. Generally, the chromatids correspond to continuous regions cut out by <span class="math inline">\(c(z)\)</span> as one travels up the <span class="math inline">\(z\)</span>-axis, so this is proposed to be a satisfactory, geometric model for recombination: small local changes, the large geometric ones satisfying the models correspond to known behavior.</p>
<p>For instance, chiasma:<a href="#fn1" class="footnote-ref" id="fnref1" role="doc-noteref"><sup>1</sup></a></p>
<div style="display: flex; justify-content: center; align-items: center; gap: 16px;">
<p><img src="/images/chiasma.png" alt="Chiasma" style="width: 120px; height: auto;" />
<img src="/images/chiasma-2.png" alt="Chiasma2" style="width: 240px; height: auto;" /></p>
</div>
<blockquote>
<p><em>Hence our model of meiotic crossing over will give the following situation associated with chiasma: a narrow zone of gene conversion bounded by two zones of multiple fractures of total odd order, each involving a pair of distinct chromatids.</em></p>
</blockquote>
<!-- **Claude made this. It's slightly wrong but fun:**

<div style="width: 100%; overflow: hidden;">
  <iframe src="/meiotic-geometry.html" title="Thom's Meiotic Geometry Visualization" style="width: 200%; height: 1600px; border: 0; border-radius: 8px; transform: scale(0.5); transform-origin: top left;" loading="lazy"></iframe>
</div> -->
<section id="footnotes" class="footnotes footnotes-end-of-document" role="doc-endnotes">
<hr />
<ol>
<li id="fn1"><p>Apparently, without which, offspring suffers from aneuploidy.<a href="#fnref1" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
</ol>
</section>]]></description>
    <pubDate>Sat, 17 Jan 2026 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/meiotic-geometry/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>confusions</title>
    <link>https://www.yudhister.me/confusions/</link>
    <description><![CDATA[<p>I think I take the structural fidelity of frames more seriously than many around me.</p>
<p>If I pay too much attention to the words I’m speaking or writing, I become nauseous.<a href="#fn1" class="footnote-ref" id="fnref1" role="doc-noteref"><sup>1</sup></a> If I pay too much attention to the words others are speaking or writing, I become nauseous and also relatively misanthropic. This is minimized when I’m operating inside <a href="https://yudhister.me/idiolects">idiolects</a>; my current favorite is <em>Finnegans Wake.</em></p>
<p>Writing tires me because engaging in conceptual wheat-and-chaff separation, as necessary to dictate words to page, generates nearly irremovable, painful, mental detritus. I don’t know how to “garbage collect” while preserving the reproducibility of the generative thought-patterns. Some information is in the artifact, and some is in my head. Their relationship is complicated and not easily compressible!</p>
<p>Relatedly, it’s very difficult for me to ingest someone else’s “vocabulary.”<a href="#fn2" class="footnote-ref" id="fnref2" role="doc-noteref"><sup>2</sup></a> Locally operating within it is fine. It requires some suspension of disbelief but I’ve had a lot of practice. Retaining those insights, however, is much harder.</p>
<p>I only feel clean when frames are correct, coherent, and minimal. No one has frames that are correct, coherent, and minimal. The burden of the boundedly-rational agent is to manage this tradeoff. My frames are certainly nowhere near optimal. But translation costs are real.</p>
<p>I’d really like to develop a healthier relationship with confusion. (I wish it wasn’t physically aggravating). My best guess at how to do this is to find deep frames I’m satisfied with. Tips appreciated.</p>
<p><em>Addenda:</em></p>
<section id="footnotes" class="footnotes footnotes-end-of-document" role="doc-endnotes">
<hr />
<ol>
<li id="fn1"><p>I’ve not yet found an upper bound on the magnitude of nausea induced by such mental states.<a href="#fnref1" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn2"><p>Explaining this choice of word should be saved for another post.<a href="#fnref2" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
</ol>
</section>]]></description>
    <pubDate>Fri, 16 Jan 2026 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/confusions/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>[technologists]</title>
    <link>https://www.yudhister.me/technologists/</link>
    <description><![CDATA[<p>The “[t]echnologist” remains . . . valorized? (at least, <a href="https://joininteract.com">in certain San Franciscan subcultures</a>). Tech people who have {passion, taste, discernment}, intrepid changemakers seeking to leverage innovation as a force for good. Perhaps it’s Lindy: the word was coined in Bentham’s <em>Chrestomathia</em> to describe an expert in “Technology,” the “connected view” of arts and manufactures, exactly two centuries ago.</p>
<p>Certainly they play an integral role in a modern society. I do, however, take some issue with:</p>
<blockquote>
<p><em>A “technologist” is anyone who thinks critically about the opportunity for technology to improve society.</em></p>
</blockquote>
<ol type="1">
<li><p>Too broad. “Technologists” are builders. The democratization of internet tech came a unification of thought and practice. (The Collisons when building Stripe)</p></li>
<li><p>Too narrow. Frontend gardeners and Linus Torvalds provide taste as a public good; curated creation raises the quality waterline; artists shouldn’t be excluded.</p></li>
<li><p>I worry the predominance of tech, the centralization of progress in tech, takes too much mindshare of the thoughtful and ambitious. Startups are vehicles of a certain type. Venture provides stimulus of a certain type. There are other types.</p></li>
</ol>
<p>What will it say about our time that the greatest discoveries were made in industry? Hermits and the military made the atom bomb.<a href="#fn1" class="footnote-ref" id="fnref1" role="doc-noteref"><sup>1</sup></a> Billionaires and not-quite-hermits are making superintelligences, mind uploads, aging cures.</p>
<p>Maybe the not-quite-hermits are not-hermits for lack of places to hermit. Technologisms cannibalize. Memetic centralization may be as dangerous as economic centralization.</p>
<p>Valor is worth its weight in gold. To me, society lacks hermit heroes. There’s a place to start.</p>
<section id="footnotes" class="footnotes footnotes-end-of-document" role="doc-endnotes">
<hr />
<ol>
<li id="fn1"><p>Weinstein makes a similar point in <em>What Should We Be Worried About?</em><a href="#fnref1" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
</ol>
</section>]]></description>
    <pubDate>Thu, 15 Jan 2026 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/technologists/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>what if there was an ASI ban?</title>
    <link>https://www.yudhister.me/asi-ban/</link>
    <description><![CDATA[<p><em>wrote this in ~an hour in early 2025 in response to: what do you imagine the world to look like with an indefinite ASI ban, imposed now? there are some interesting themes but definitely needs reworking</em></p>
<p>We’re operationalizing ASI-ban as a ban on AI technology that can serve as a drop-in replacement for &gt;99% of human workers that don’t run on biological substrates. This broadly lets the compute &amp; AI advances of the next 1-2 years occur, and mostly unclear after that. I would suspect this roughly corresponds to a compute cap of 1e36 FLOPS, which is about 10^14 H100s (10^6 is biggest datacenter today), and factoring algorithmic advances the equivalent datacenter in 2032 might be 10^10 H100-equivalents which would cost 10^4 * $4bn = $40trn. So let’s also say that there’s a ban on &gt;$1-10trn training runs, depending on year, with this value going down over time.</p>
<p>Global GDP is around $100trn today, so the maximum size training run that would be allowed by 2025 is around ~1% of Global GDP, or around 4% of American GDP. This is 2x what is currently being suggested with the Stargate Project, so if Stargate goes well such a procedure would not be entirely out of a question (of course, Stargate is allocated across multiple domains, not just specifically training, but I suspect most of it will go to clusters).</p>
<p>I’d first like to forecast &amp; research what the effects would be on specific narrow domains: energy, software infrastructure, and biology &amp; human augmentation. I’d then like to look at what large macro-trends, sans AI, would be affecting the long-term course of society (climate change and fertility decline come to mind, as does cultural drift), and how AI development to the level that would be permitted would affect then. I would then like to forecast geopolitical developments over the next 5 years, see how that affects long-term AI development, and then start forming general probability distributions across the long-term effects on human society. Ideally the output of this research proposal would be hundreds of pages of well researched forecasting, but here’s an attempt figuring out what those might look like.</p>
<p>In the world without AI development, solar adoption will likely increase across the world, such that the cost of energy starts dramatically decreasing making technologies like solar desalination more possible. The energy gap between the developed and the developing world is such that 1 kWh costs ~1,000-10,000x more in Uganda vs Iceland, and if the cost of solar continues to decrease the energy gap will likely close (the solar panel infrastructure pipeline is relatively robust). Fusion is expected by people in the industry to be entirely net-positive by 2035, and commercial reactors are expected by 2045-2050. I would want to research exactly what sorts of ways in which advanced AI of the sort expected 2-3 years from now would help accelerate the energy production process, but this seems like the sort of thing that will continue sans some global war. So we can expect the cost of energy to substantially decrease within our lifetimes.</p>
<p>Software infrastructure will become extremely fragile and irrobust to both technical and non-technical attack vectors. It is likely that LLMs develop superpersuasive abilities within the next few years, without this requiring superintelligent AI, and also generating training data for finding and utilizing code vulnerabilities is generally quite easy. I would look into what the offense-defense balance would look like for software used by institutions worldwide by 2027 to 2028, and whether or not formal specification / formal verification provides a good solution to e.g. the Linux kernel being broken by a non-state or even non-resourced actor. Likely this does not cripple the world’s ability to communicate, because it is possible to make robust protocols where the stack is verified, but it does make critical software much more vulnerable.</p>
<p>Biological foundation models are well within the realm of the possible, and don’t require absurdly large training runs. The Arc Institute is training them at the moment, and they will likely get 10-100x larger even without national investment. Bio foundation models are <em>incredibly</em> dual-use: it would be very easy to finetune a toxin-producing model that is superhuman at producing toxins, and perhaps similar for pathogen generation. It is worth looking into whether or not there are substantial barriers to creating a biological foundation model that is superhuman at pathogen generation, given current technologies, and whether or not it’s possible to make base bio foundation models that don’t have these negative capabilities (also developing scaling laws, assessing the likelihood of distributed training setups &amp; synthetic datagen). Worth developing policies that restrict access to DNA/RNA manufacturing (these are very poor right now, as per studies by Esvelt et. al.).</p>
<p>Human augmentation seems to be proceeding well. Neuralink is seeing success in its patients, and we will likely see silent speech interfaces as well as noninvasive BCI allowing for much more immersive AR/XR. Cosmetic invasive BCIs (invasive BCIs not required by medical usage) might become technically feasible within the next decade, and it is worthwhile doing a general bandwidth study / seeing if the computer-human bandwidth would follow scaling laws. Much invasive BCI usage is locked behind “brain foundation models”, or compute that allows the BCI to interpret various neuronal signals and brain-waves. Likely good generative models can patch much of this, but it’s unclear whether or not these capabilities are locked behind the 1e36 barrier. More research should be done here, specifically on how AI can accelerate different approaches to BCI etc.</p>
<p>Nanomanufacture might become much more feasible, conditionalizing on a foundation model that is trained on different kinds of chemosyntheses and nano-manufacture models on the micro-scale. Space travel is likely bottlenecked behind rocket design &amp; procurement &amp; manufacturing in the real world, but it’s plausible that biological research acceleration will in fact lead to breakthroughs in astronaut containment etc. It is unclear generally how much manufacturing will get accelerated by tool AI, but this is worth looking into.</p>
<p>RAND has recently put out a report that the U.S.-China relationship will take on many of the contours of the medieval era, placing us in a “neo-medieval age.” This is mostly due to their predictions that the international order will disintegrate, and that technological development will be increasingly stratified. There will be less aid from the developed world to the developing world, less trade, and less international communication. These predictions I find to be largely prescient.</p>
<p>Forecasting chip manufacture is also useful: is it really the case that the US will be able to onboard chip manufacture at the level of TSMC fabs within the next 2 years? They are attempting to do so, and given that ASML is in the Netherlands (under the Western sphere of influence) it is likely we reach this level. Analyzing Chinese supply chains is a worthy piece of work, however, and I place substantial likelihood we reach chip technological parity as well as tool AI capacity parity, placing us in a proper great power conflict.</p>
<p>With a ban on superintelligence, the risk of a single country developing a singleton superintelligence and using that to dominate the rest of the world (or lightcone) is low. Military conflicts between the US and China might result in the destruction of chip supply chains in both countries, leaving a generally leaderless world, but it’s more likely that there are hot proxy conflicts as opposed to hot great power conflicts. However, this does mean that energy costs for the developing world will likely remain high unless e.g. solar panel supply chains become more distributed &amp; robust globally (and even if the US becomes much more isolationist, China still considers it worthwhile to expand its global influence, which is unclear).</p>
<p>Culturally, there seems to have been quite a large right-wing trend in the Western world. Nativism has increased (see AfD in Germany, Trump in USA), and along with it are culturally right elements that are becoming implemented. It’s likely the world takes the fertility crisis seriously by 2035-2040, but the reaction could either be to expand reproductive freedoms (via research and access into embryogenesis and artificial wombs) or to enforce greater fertility via social norms, while still being quite restrictive on biological innovations. Human augmentation will likely either be pushed to the fringes of the world, underground, or in developing nations during this time: as more bio-infrastructure accumulates in the fringes of the world, the risk of e.g. engineered pandemics increase, and during a great power conflict this might lead to more global instability generally. Worth analyzing the likelihood of this.</p>
<p>Other topics: in-depth analysis of nanomanufacture, how infrastructure will develop over time, likelihood of robotic automation of large variety of tasks, whether or not UBI will be implemented as developed nations asymptote towards 99% automation, whether or not the necessary social safety nets necessary for labor automation will still be in place during a great power conflict, and whether or not gradual disempowerment is still a failure mode to worry about. My guess for the latter is not really, and it’s moreso that access to superpersuasive AI agents will allow humans to warp the culture much more without the AIs really taking over: also that it’s unlikely that AIs will e.g. “run the corporations” but might substitute for large portions of middle-managers; and also that really extensive automation is predicated on good societal infrastructure for the AIs to work, given that the AIs are not smart enough to create their own infrastructure and manufacturing supply chains yet and they’re not coordinating global politics (yet).</p>]]></description>
    <pubDate>Wed, 14 Jan 2026 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/asi-ban/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Review | The Human Stain</title>
    <link>https://www.yudhister.me/human-stain/</link>
    <description><![CDATA[<p>I started reading <em>The Human Stain</em> from a quote on Twitter. Sadly, I cannot find it as of right now, but it was a pertinent and apt comparison of French and American intellectualism (thanks <a href="https://uzpg.me">Uzay</a>).</p>
<p>Aha! Here it is:</p>
<blockquote>
<p><em>. . . and knows something about these ambitious French kids trained in the elite lycées, Extremely well prepared, intellectually well connected, very smart immature young people endowed with the most snobbish French education and vigorously preparing to be envied all their lives, they hang out every Saturday night at the cheap Vietnamese restaurant on rue St. Jacques talking about great things, never any mention of trivalities or small talk—ideas, politics, philosophy only. Even in their spare time, when they are all alone, they think only about the reception of Hegel in twentieth-century French intellectual life. The intellectual must not be frivolous. Life only about thought. Whether brainwashed to be aggressively Marxist or to be aggressively anti-Marxist, they are congenitally apalled by everything American . . .</em></p>
<p><em>But in America, no one appreciates the special path she was on in France and its enourmous prestige. She’s not getting the type of recognition she was trained to get as a member of the French intellectual elite. She’s not even getting the kind of resetnment she was trained to get . . . Her fellow foreign graduate students tell her that she’s too good for Athena College, it would be too déclassé, but her fellow American graduate students, who would kill for a job teaching in the Stop &amp; Shop boiler room, think that her uppityness is characteristcally Delphine.</em></p>
</blockquote>
<p>Foils make or break narratives. Delphine Roux—a young intellectual heiress who grew up fed by a silver spoon—is the perfect counterpart to Coleman Silk, an old boxer always an outsider to the circles he traveled in. Both are not quite a part of the American academic elite: Delphine is too French and Coleman is Black and light-skinned (and functionally a Jew). Yet they manage to find themselves on opposite sides of a cultural divide. Professor Silk is an archetypal Tyler Cowen classic ‘conservative’ (as is Kareem Abdul-Jabbar), a professed believer in meritocracy and fair and equal consideration. Professor Roux is an ardent anti-racist and feminist, and while the two are not inherently opposed to each other, in practice (and as described) those who possess such beliefs are predisposed to clash.</p>
<p>Says Silk to Roux:</p>
<blockquote>
<p><em>“Providing the most naive of readers with a feminist perspective on Euripides is one of the best ways you could devise to close down their thinking before it’s even had a chance to begin to demolish a single one of their brainless ‘likes’. I have trouble believing that an educated woman coming from a French academic backbround like your own believes there <u>is</u> a feminist perspective on Euripides that isn’t simply foolishness. Have you really been edified in so short a time, or is this just old-fashioned careerism grounded right now in the fear of one’s feminist colleagues? Because if it <u>is</u> just careerism, it’s fine with me. It’s human and I understand. But if it’s an intellectual committment to this idiocy, then I am mystified, because you are not an idiot. Because you know better. Because in France surely nobody from the École normale would dream of taking this stuff seriously. Or would they? To read two plays like <u>Hippolytus</u> and <u>Alcestis</u>, then to listen to a week of classroom discussion on each, then to have nothing to say about either of them other than that they are ‘degrading to women,’ isn’t a ‘perspective,’ for Christ’s sake—it’s mouthwash. It’s just the latest mouthwash.”</em></p>
</blockquote>
<p>(Silk is a classicist)</p>
<p>When Silk called a pair of chronic absenteers ‘spooks’, an uproar was raised and he resigned from his faculty post at Athena College. Subsequently, Roux took one of the victims, Tracy, under her wing for a while, but she subsequently failed out of all of her classes and moved out of the city to stay with a half-sister in Tulsa, Oklahoma. When she finds out of his affair with the believed illiterate, divorced, janitor Faunia Farley who just had her two children die in a tragic fire, she labels Silk a predator and attempts to destroy his reputation.</p>
<p>It is important to note that Silk, at this point in time, has invented a Jewish background. His deceased wife was a Jew, and his newfound family never knew of his Black ancestry. He has been cut off from his ancestral family as a result of his successful attempts to ‘pass’ as white. It is perhaps for this reason that the attempt to oust him based on his perceived racism succeeded, and also a great source of dramatic irony.</p>
<p>Farley is brilliant. She is strong-willed, independent, yet broken from the deaths of her children. She blames herself for the death of her kids because she chose to save her boyfriend from the flaming fire first. She is old, much older than her years of thirty-four would indicate, and potentially older than Coleman.</p>
<blockquote>
<p><em>“I see you, Coleman. You’re not closing the doors. You still have the fantasies of love. You know something? I really need a guy older than you. Who’s had all the love-shit kicked out of him totally. You’re too young for me, Coleman. Look at you. You’re just a little boy falling in love with your piano teacher. You’re falling for me, Coleman, and you’re much too young for the likes of me. I need a much older man. I think I need a man at least a hundred. Do you have a friend in a wheelchair you can introduce me to? Wheelchairs are ok—I can dance and push. Maybe you have an older brother. Look at you, Coleman. Looking at me with those schoolboy eyes. Please, please, call your older friend. I’ll keep dancing, just get him on the phone. I want to talk to him.”</em></p>
</blockquote>
<p>Her ex-husband, Lester Farley, also blames her for the death of his kids. He’s a Vietnam war veteran, and we get some fun segues into a VA therapist’s attempts at curing him of his PTSD by repeatedly taking him to Chinese restaurants as exposure therapy. Ultimately, he likely murders the couple of Silk and Farley by driving a car into theirs, sending them toppling over a cliff.</p>
<p>I cannot do justice to the multiplicity of narratives Roth weaves throughout this book. Silk’s journey from Black to Jew, Zuckerman’s (the narrator, the entire book is framed) realization of Silk’s past, Farley grappling with the loss of her children, the other Farley grappling with the demons of Vietnam, digressions into intellectualism through Roux as below:</p>
<blockquote>
<p><em>Narrative structure and temporality. The internal contradictions of the work of art. Rousseau hides himself and then his rhetoric gives himself away. (A little like her, thinks the dean, in that autobiographical essay.) The critic’s voice is as legitimate as the voice of Herodotus. Narratology. The diegetic. The differences between diegesis and mimesis. The bracketed experience. The proleptic quality of the text.</em></p>
</blockquote>
<p>Above all, it is fun to read. At one point Coleman is a crow.</p>
<p>The title, from Silk’s funeral:</p>
<blockquote>
<p><em>“That’s what comes of being hand-raised,” said Faunia. “That’s what comes of hanging around all his life with people like us. The human stain,” she said, and without revulsion or contempt or even condemnation. Not even with sadness. <u>That’s how it is</u>. . .</em></p>
</blockquote>]]></description>
    <pubDate>Tue, 13 Jan 2026 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/human-stain/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Review | A Preface to Paradise Lost</title>
    <link>https://www.yudhister.me/preface-to-paradise-lost/</link>
    <description><![CDATA[<p>Perhaps the best section of the book deals with Milton’s taxonomy of worthy poems to write, namely:</p>
<blockquote>
<p><i>(A) Epic.<br>
 I.<br>
  (a) The diffuse Epic [Homer, Virgil, and Tasso].<br>
  (b) The brief Epic [the Book of Job].<br>
 II.<br>
  (a) Epic keeping the rules of Aristotle.<br>
  (b) Epic following Nature.<br>
 III. Choice of subject [‘what king or knight before the conquest’].<br></p>
<ol start="2" type="A">
<li>Tragedy.<br>
 (a) On the model of Sophocles and Euripides.<br>
 (b) On the model of Canticles or the Apocalypse.<br></li>
<li>Lyric.<br>
 (a) On the Greek model [‘Pindarus and Callimachus’].<br>
 (b) On Hebrew models [‘Those frequent songs throughout the Law and the Prophets’].</i></li>
</ol>
</blockquote>
<p>(this is from his <i>Reason of Church Government</i>, <a href="https://milton.host.dartmouth.edu/reading_room/reason/book_1/text.shtml">src</a>)</p>
<p>Notably, each category draws from both Classical and Scriptural examples, and some fit better than others. The Canticles as tragedies?? They’re psalms! for heaven’s sake. Revelation (the Apocalypse of St. John) is slightly more sane in this regard, but really still in quite a different class from Euripides.</p>
<p>Milton was apparently going to write an Arthuriad instead of Paradise Lost. As a fan of Arthuriana, I can’t say he made the correct call. . ., but tragedies are preferable to comedies.</p>
<blockquote>
<p><em>Milton’s hesitation between the classical and the ro­mantic types of epic is one more instance of something which runs through all his work; I mean the co-existence, in a live and sensitive tension, of apparent opposites. We have already noted the fusion of Pagan and Biblical interests in his very map of poetry. We shall have occasion, in a later section, to notice, side by side with his rebelliousness, his individualism, and his love of liberty, his equal love of discipline, of hierarchy, of what Shakespeare calls ‘degree’. From the account of his early reading in Smectymnuus we gather a third tension. His first literary loves, both for their style and their matter, were the erotic (indeed the almost pornographic) elegiac poets of Rome: from them he graduated to the idealized love poetry of Dante and Petrarch and of ‘those lofty fables which recount in solemn cantos the deeds of knighthood’: from these to the philo­ sophical sublimation of sexual passion in ‘Plato and his equal (i.e. his contemporary) Xenophon’. An original voluptuous­-ness greater, perhaps, than that of any English poet, is pruned, formed, organized, and made human by progressive purifica­tions, themselves the responses to a quite equally intense aspiration-an equally imaginative and emotional aspiration-towards chastity. The modern idea of a Great Man is one who stands at the lonely extremity of some single line of de­velopment–one either as pacific as Tolstoi or as military as Napoleon, either as clotted as Wagner or as angelic as Mozart. Milton is certainly not that kind of great man. He is a great Man. ‘On ne montre pas sa grandeur,’ says Pascal, ‘pour etre a une extremite, mais bien en touchant les deux a la jois et remplissant tout l’entre-deux.’</em></p>
</blockquote>
<p>Catholicism cannot exist without paganism, and all that.</p>
<p>Lewis critiques Eliot’s belief that ‘great poets are the only judges of great poetry’ on simple grounds: how do you recognize the great poets? But, Eliot-sim replies, only good men can judge goodness, and only doctors can judge medical skill. Yet all humans are subject to moral law, while not all humans are deemed to be judged to be a poet or not a poet. As for the other, poets have the right to judge the skill of a poet, but not the value of a poet—that is reserved for the readers.</p>
<p>An epic is either Homeric or Virgilian.</p>
<p>The Homeric (Primary) Epic is a performance. Wholly oral, never read or written, meant for an heroic court. Characterized by the Middle English <i>solempne</i>, solemnity yet lacking the implied gloom, oppression, or austerity. The opening feast of Gawain and the Green Knight is a solemnity in this sense. And while the <i>Iliad</i> and <i>Odyssey</i> are too long to be recited as a whole, they are still written in a recitative style.</p>
<p>Aesthetically, the Primary Epic “emphasiz[es] the unchanging human environment.” Imagine onomatopoeia, yet imbued in the entire work. “There is no use in disputing whether any episode could really have happened. We have seen it happen.” Beowulf takes a more romantic view, “its landscapes have a spiritual quality”, whereas the Iliad is objective, possessed with more of a sense of good and evil.</p>
<p>Primary epic does not inherently deal with a great subject. Odysseus is the king of a small country. The telling of the Trojan War is a front for the story of Achilles and Hector.</p>
<blockquote>
<p><em>The truth is that Primary Epic neither had, nor could have, a great subject in the later sense. That kind of greatness arises only when some event can be held to effect a profound and more or less permanent change in the history of the world, as the founding of Rome did, or still more, the fall of man. Before any event can have that significance, history must have some degree of pattern, some design. The mere endless up and down, the constant aimless alternations of glory and misery, which make up the terrible phenomenon called a Heroic Age, admit no such design. No one event is really very much more important than another. No achievement can be permanent: today we kill and feast, tomorrow we are killed, and our women led away as slaves. Nothing ‘stays put’, nothing has a significance beyond the moment. Heroism and tragedy there are in plenty, therefore good stories in plenty; but no ‘large design that brings the world out of the good to ill’.</em></p>
<p>. . .</p>
<em>Primary Epic is great, but not with the greatness of the later kind. In Homer, its greatness lies in the human and personal tragedy build up against this background of meaningless flux. It is all the more tragic because there hangs over the heroic world a certain futility.</em>
</blockquote>
<p>Beowulf animates this despair: heroes fight literal monsters as well as man.</p>
<p>The Virgilian (Secondary) Epic innovates. No longer was the focus on the great and timeless, instead, it was on the great and revolutionary (revolutionary by virtue of interfacing with reality). It is here we take our modern-day understanding of heroes from. Achilles raged against the world, and the world didn’t care. He died less than a martyr—he was dispensible. Aeneas raged against the world, and built an empire. It is through his story that the greatest themes are invoked, and the Romans understood their world through the lens of his story.</p>
<p>It’s a bit weird that the Romans cared about something less pure than the Greeks, and as a result they grew up. Plausibly this was the genesis of “caring”? When the Romans were “compelled to see something more important than happiness” they invented a hero, Aeneas, who sought more than happiness, who would not bow, who would not accept.</p>
<blockquote>
<p><em>A great deal of what is mistaken for pedantry in Milton (we hear too often of his ‘immense learning’) is in reality evocation. If Heaven and Earth are ransacked for simile and allusion, this is not done for display, but in order to guide our imaginations with unobtrusive pressure into the channels where the poet wishes them to flow; and as we have already seen, the learning which a reader requires in responding to a given allusion does not equal the learning Milton needed to find it.</em></p>
</blockquote>]]></description>
    <pubDate>Mon, 12 Jan 2026 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/preface-to-paradise-lost/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>home is what the heart remembers</title>
    <link>https://www.yudhister.me/home-1/</link>
    <description><![CDATA[<p>[<em>more personal than usual. I turned twenty yesterday, so I figured I’d indulge in a little introspection. Normally I think about my life as ~starting at sixteen, but I was conscious a little before that. This is me trying to remember who I was</em>]</p>
<ul>
<li><p>When I was 15, I sometimes used to take a bus to school. Wake at 5:40AM –&gt; catch the 5:55 –&gt; stare with bleary eyes out across farmland and reservoirs for three-quarters of an hour –&gt; bike another three miles –&gt; be late to 0th period by a couple minutes. It was fun. One of the two regular drivers was mute and always waited for me to show up before starting his route. I never talked to the other one.</p></li>
<li><p>The first time I took the bus back, I was wearing a full-body banana costume and carrying 30lbs of camera equipment. Left the bike at school because I realized I couldn’t manage everything, got very tired (you try walking uphill in a plastic bodysuit at the end of summer in a desert with 30lbs of camera equipment), missed the bus, was refused water at Starbucks for a lack of quarters, got accosted by a pale-skinned meth addict, convinced said addict to buy me 25c water, hopped on the last bus and made it home</p></li>
<li><p>The second time I took the bus back was mostly uneventful. I remember sitting in the back listening to a Lex Fridman podcast (I had just discovered podcasts as a consumption medium) while a gang of (mostly Black) middle schoolers ran onto the bus chugging gallon cartons of whole milk. One or two older women accompanied them; I remember being surprised that I was the only Latino. Only later did I realize that the route stopped at the regional prison, and these kids were visiting their fathers during visitation hours.<a href="#fn1" class="footnote-ref" id="fnref1" role="doc-noteref"><sup>1</sup></a></p></li>
<li><p>I am grateful both of my parents are still alive, that neither are drug addicts, that against reasonably stark odds they remained financially solvent, housed, and ultimately cordial with each other. My then-best-friend’s stepfather is now imprisoned for a decade; she lived in fear of being shot by her neighbors when she went for a walk. At least seven of my other friends were fatherless: one literally lost their home in a tough job market, another had a opiate-addicted mother so lived with his grandmother, a twin I knew shared a phone with her sister to appease her mother’s safety concerns. An upperclassman who taught me how to film videos lost his mother to suicide.</p></li>
<li><p>All of these people went to college. Most first-gen. CS, aerospace engineering, CS, cogsci?, pre-med. Others became roboticists or went to the <a href="https://www.usna.edu/homepage.php">Naval Academy</a>. Really, deeply grateful to have known them. Some of the best people I’ve met.<a href="#fn2" class="footnote-ref" id="fnref2" role="doc-noteref"><sup>2</sup></a></p></li>
<li><p>Arguably, the formative moment in my education was when my AP Lang teacher forced me to learn how to write. I’ve been negative enough today, but I really don’t like words. I hopefully will one day! But I’ve never really instinctively read on the level of words (or sentences), so it’s hard for me to perceive the mind of someone who does. (And I think good writing must engage with gears of the minds of others).</p>
<ul>
<li><p>Timed essays are a peculiar construct because they’re not truth-seeking whatsoever. The goal is essentially just to argue an arbitrary point effectively to another in a way that is internally consistent, grammatically correct, and showcases ‘mastery of the English language.’ I remember being unable to write anything for hours at first, because I couldn’t conceptualize the argument in sufficient detail to know where to start.</p></li>
<li><p>Eventually I got the hang of it.</p></li>
<li><p>She wrote me a recommendation letter to apply to MIT a year early. I didn’t finish the application because my laptop was stolen, I didn’t have money to buy a new one, and I was so tired.</p></li>
</ul></li>
<li><p>The other formative moment in my education was discovering the <a href="https://www.ocf.berkeley.edu/~abhishek/chicmath.htm">Chicago undergraduate mathematics bibliography</a>.</p></li>
<li><p>I appreciate my biology teacher for teaching me Java and how to mix sound systems. I appreciate my chemistry teacher for letting me ignore her and do QMech problems in the back of her class. I appreciate my physics teacher for teaching me the virtue of humility (and letting me make a bunch of friends!). I appreciate my oft-beleaguered principal for letting me skip school three times a week to travel a different sixty miles to the nearest university.<a href="#fn3" class="footnote-ref" id="fnref3" role="doc-noteref"><sup>3</sup></a> I appreciate my literature teacher for casting me as Iago, and generally being so kind to me.</p></li>
<li><p>My calculus teacher was a saint. He would probably take offense to that. He kept four flags in his classroom: Prussian, Israeli, Ohioan, and American. One of our quiz questions was finding the optimal number of kids to his family to adopt, given separate welfare curves for each individual in the family and budgetary constraints. He knew Hebrew and taught me what the Nicene Creed was for the first time (twas a long wandering down that path).</p></li>
<li><p>I remember starting to go to mass because I had a massive crush on a Catholic girl in my physics class. Eventually I read Augustine and realized error-management in a living theology is really hard.</p></li>
<li><p>I spent about 500 hours memorizing a binder. Unfortunately, I did not really try to memorize it.<a href="#fn4" class="footnote-ref" id="fnref4" role="doc-noteref"><sup>4</sup></a> I now know a surprising amount about the effects drought patterns had on civilizational collapses over the course of human history, Jared Diamond, the music theory of glass armonica repertoire, the context suburbia held in the 1950s American short story scene, and the economics of Southern Californian water rights. It was a lot of fun. Thank you to the teacher who held this torch.</p></li>
<li><p>On the last day of school, I and two others were the last people on campus. After helping the janitor clean up the mess from graduation, we cast copper in a 1200C crucible. Ingenuity was required to bypass various circuit breakers, but we got it done.</p></li>
</ul>
<p>It was a good time. I don’t think I’d trade it for the world.<a href="#fn5" class="footnote-ref" id="fnref5" role="doc-noteref"><sup>5</sup></a></p>
<section id="footnotes" class="footnotes footnotes-end-of-document" role="doc-endnotes">
<hr />
<ol>
<li id="fn1"><p>The part of the Inland Empire I grew up in was half Hispanic and less than ten percent Black. At other times of day, you’d see middle-aged women / single moms en route to the local community college, or farm workers commuting.<a href="#fnref1" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn2"><p>I think this particular combination of ills and successes is almost uniquely American and quite regional.<a href="#fnref2" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn3"><p>Also for teaching me what a quant was, letting me use district funding regulations to a kind of ridiculous degree, giving me tickets to my first baseball game, and honestly also being one of the best men I’ve ever met.<a href="#fnref3" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn4"><p>One of my larger regrets is not learning how to care deeply about the labor of accomplishment until quite recently.<a href="#fnref4" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn5"><p>Taken as a metaphor in the metaphoric sense, etc. etc.<a href="#fnref5" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
</ol>
</section>]]></description>
    <pubDate>Sun, 11 Jan 2026 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/home-1/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>a brief diatribe on safetyism</title>
    <link>https://www.yudhister.me/morality-1/</link>
    <description><![CDATA[<p>A good friend asked me today: <em>why aren’t the AI labs evil?</em></p>
<p>My load-bearing answer is that I see the moral imperative to preserve the the generators of progress as comparable in magnitude to the imperative to prevent harm (even when considering harms posed by superintelligences), and so while I agree unabashed accelerationism is misguided and likely leads to catastrophic outcomes, it is difficult for me to describe those trying as “evil.”<a href="#fn1" class="footnote-ref" id="fnref1" role="doc-noteref"><sup>1</sup></a></p>
<p>(From similar generators, I weakly hold that OpenAI is ‘less evil’ than Anthropic, because it seems that the effects ‘culty’ organizations have on the world are worse than ‘non-culty’ ones, for structural reasons like worldview homogeneity / top-down vs bottom-up governance / systematic underrating of illegible-from-current-perspective deep harms)</p>
<p>Why?</p>
<ul>
<li><p>progress is fragile; progress is necessary for the continued emancipation of sentient beings; progress is really the only way to create self-preserving systems that tend towards greater net emancipation because, albeit near tautologically, ‘progress’ creates ‘slack’, a lack of ‘slack’ indicates the agency of the constituents is stripped, an abundance of ‘slack’ allows systems to adopt robust and diverse stances;<a href="#fn2" class="footnote-ref" id="fnref2" role="doc-noteref"><sup>2</sup></a></p></li>
<li><p>risks from superintelligence are immense. from a suffering-focused perspective, it’s likely that the most important interventions of the next twenty years revolve around growing AIs to be dispositionally benevolent / not spiteful. extinction is likely. however, I believe past experience should bias us towards naive mitigations of perceived catastrophic risks to have deeply harmful, unintended, adverse consequences, and so I am less sympathetic to arguments of ‘you shouldn’t build it’ (or even ‘you shouldn’t build it now’)</p></li>
<li><p>there’s an argument from aesthetics to be made. secretly, these arguments are advocating for norm-preservation, where the norms themselves have been hard-won &amp; illegible yet are adaptive forms of bounded consequentialism. (are the norms intrinsic or systematically enforced?)</p></li>
</ul>
<p>A rejoinder: sure, but sane accelerationism has never been tried. We should place our civilizational efforts into becoming wiser, and intentionally take steps forward into doom, if we choose to. Current structures (race-dynamics, etc.) differentially favor progress over care, so you should be skeptical of pro-progress arguments. Incentives are aligned for people to pursue progress in a way they are not in the pursuit of increased wisdom.</p>
<p>I agree that if we could systematically become wiser, we should put effort into systematically becoming wiser. But we don’t have a good track record of becoming wiser (at least intentionally), and naive applications of care are likely net harmful.</p>
<p>From my perspective, the proper way to ‘apply care’ requires taking advantage of the preconditions for progress-generating environments. History is neither completely determined by the initial conditions of pivotal technologies, and neither is it beholden to pre-existing convergent pressures. However:</p>
<ul>
<li>developing technologies is a robust lever for disruption, and it is near-uniquely encouraged by progress-generating environments;</li>
<li>path-dependence in the invention and distribution of technologies is real, and intentionally shaping the civilizational arc is possible by counterfactually accelerating a pivotal technology</li>
</ul>
<p>In other words, if you truly care I think you should be ambitious, develop interventions compatible with modern incentive structures, and shut up and calculate when deciding on a plan of action.</p>
<section id="footnotes" class="footnotes footnotes-end-of-document" role="doc-endnotes">
<hr />
<ol>
<li id="fn1"><p>Another answer: I’m more agnostic than most on the net-positive nature of current human civilization and its naturally extrapolated trajectories. This isn’t loadbearing.<a href="#fnref1" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn2"><p>I somewhat buy that “evilness” is synonymous with “intrinsically slack-sucking.”<a href="#fnref2" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
</ol>
</section>]]></description>
    <pubDate>Sat, 10 Jan 2026 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/morality-1/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Blogs</title>
    <link>https://www.yudhister.me/blogs/</link>
    <description><![CDATA[<p>Good blogs. And websites too. No particular order. Updated semi-regularly.</p>
<ul>
<li><a href="https://owenlynch.org/">Owen Lynch</a>—research software engineer at the Topos Institute. Mostly posts nowadays at <a href="https://forest.localcharts.org/owen-lynch.xml">localcharts</a>, which has a really cool UI that I should check out!</li>
<li><a href="https://chewisinho.github.io/">Sinho Chewi</a>, Yale prof, Log-concave sampling (<a href="https://chewisinho.github.io/main.pdf">book draft</a>), geometric optimization, complexity of sampling.</li>
<li><a href="https://gwern.net">Gwern</a>. NEET polymath? Actually not sure about either of these claims. Untold depths. More <a href="/gwern">here</a>.</li>
<li><a href="https://infoproc.blogspot.com/">Steve Hsu</a>—theoretical physics prof. at MSU. does podcasts, comments widely, polymathic</li>
<li><a href="https://read.pourteaux.xyz/">pourteaux</a>—Manhattan surgeon who has a “knack for falling down rabbit holes.” Developer of an <a href="https://read.pourteaux.xyz/p/institutional-alignment">institutional alignment</a> framework, writes about geopolitics, subcultures, crypto-adjacent.</li>
<li><a href="http://comonad.com/reader/">Edward Kmett</a>—comonad, blog for discussing “substructural logics, dependent types, type systems, comonads,” etc.</li>
<li><a href="https://terrytao.wordpress.com/">Terence Tao</a>. ’Nuff said.</li>
<li><a href="https://alethios.substack.com/">Alethios</a>—Taiwan substack. “Thinking about cities &amp; public service in the age of AI.”</li>
<li><a href="https://scottaaronson.blog/">Scott Aaronson</a>—Shtetl-Optimized. Also ’nuff said.</li>
<li><a href="https://caseyhandmer.wordpress.com/">Casey Handmer</a>—energy, space, engineering, technical commentary. Founder of Terraform</li>
<li><a href="https://www.astralcodexten.com/">Scott Alexander</a>, probably needs a mild amount of defending. great rationalist and writes well and has good takes sometimes</li>
<li><a href="https://gleech.org">Gavin Leech</a>, gwern-aspiree, well-read, omnipotent critic</li>
<li><a href="https://press.asimov.com/">Asimov Press</a>, biotech-focused magazine with “rigorous fact-checking”. Published Richard Ngo’s Tinker.</li>
<li><a href="https://www.narrativeark.xyz/">Richard Ngo</a>—speculative sci-fi fiction from OpenAI governance researcher. emphasis on AGI/ASI</li>
<li><a href="https://gestalt.cafe/">Arnaud Schenk</a>. Posts aren’t indexed, so <a href="https://twitter.com/_ArnaudS_/status/1772961511251525686">this thread</a> has some good ones.</li>
<li><a href="https://www.approachwithalacrity.com/">Leila Clark</a>. <a href="https://www.approachwithalacrity.com/101-things-for-my-past-self/">101 things I’d tell myself from a decade ago</a>. good writing</li>
<li><a href="https://www.paulgraham.com/articles.html">Paul Graham</a>. See <a href="/paulg">here</a>.</li>
<li><a href="https://www.math.columbia.edu/~woit/wordpress/">Peter Woit</a>. String theory, high-energy physics, fundamental physics, are there any other labels that work here to take up space</li>
<li><a href="http://bit-player.org/">Bryan Hayes</a>. Science essays. Impeccable resume: Scientific America, Harvard, Berkeley.</li>
<li><a href="https://gilkalai.wordpress.com/">Gil Kalai</a>. Geometric combinatorics, convex polytopes, Boolean functions.</li>
<li><a href="https://lucatrevisan.wordpress.com/">Luca Trevisan</a>. In Theory. CS prof., Italian, SF, <a href="https://lucatrevisan.wordpress.com/category/places/taiwan/">Taipei</a>.</li>
<li><a href="https://johncarlosbaez.wordpress.com/about/">John Baez</a>. Official blog of the Azimuth Project. Many things, but a lot of math.</li>
<li><a href="https://topos.site/blog/">Topos Institute</a>—blog by Topos researchers. Great!</li>
<li><a href="https://www.realclimate.org/">RealClimate</a>. “Climate science from climate scientists”. Sane. Gavin Schmidt &amp; Michael Mann, et. al.</li>
<li><a href="https://quantumfrontiers.com/">IQIM@Caltech</a>. quantum info and matter research blog and general blog. great stuff, including Hamlet rewritten for a system of noncommuting charges.</li>
<li><a href="https://www.preposterousuniverse.com/blog/">Sean Carroll</a>. JHU, Santa Fe, physicist &amp; philosopher. Great podcast.<br />
</li>
<li><a href="https://dabacon.org/pontiff/">Dave Bacon</a>. The Quantum Pontiff. Quite random</li>
<li><a href="https://windowsontheory.org/">Boaz Barak</a>. Windows on Theory. Started by a group of people at Microsoft Research, theoretical CS blog, for debating theory of computing.</li>
<li><a href="https://waitbutwhy.com/">Tim Urban</a>. Wait but Why. Just very good.</li>
<li><a href="https://ramismovassagh.wordpress.com/blog/">Ramis Movassagh</a>. Applied mathematician &amp; mathematical physicist <span class="citation" data-cites="Google">@Google</span> Quantum AI. Past IBM, MIT. Mostly expository blog, kind of dead.</li>
<li><a href="https://aella.substack.com/">Aella</a>.</li>
<li><a href="https://sarahconstantin.substack.com/">Sarah Constantin</a>. Rough Diamonds. Takes a look at phenomenons in the world and tries to figure out why they exist, with simple methodologies.</li>
<li><a href="https://thezvi.substack.com/">Zvi Mowshowitz</a>. Don’t Worry About the Vase. Mostly AI, policy, rationality, medicine &amp; fertility, education and games.</li>
<li><a href="https://ymeskhout.substack.com/p/the-happy-birth-day-question">Yassine Meskhout</a>. Former public defender who now does culture war commentary.</li>
<li><a href="https://gowers.wordpress.com/">Timothy Gowers</a>. Mostly dead, sadly :(</li>
<li><a href="https://michaelnotebook.com/">Michael Nielsen</a>. Quantum computing, open science, AI, SF.</li>
<li><a href="https://xkcd.com/">xkcd</a>. “A webcomic of romance, sarcasm, math, and language.”</li>
<li><a href="https://vitalik.eth.limo/">Vitalik Buterin</a>. Founder of Ethereum. degen communism, d/acc, the end of childhood.</li>
<li><a href="https://casparoesterheld.com/">Caspar Oesterheld</a>. Decision theory, acausal trade, AI alignment, game theory. My (former) mentor :D</li>
<li><a href="https://statmodeling.stat.columbia.edu/">Andrew Gelman</a>. Columbia stats. The best statistics blog.</li>
<li><a href="http://bactra.org/notebooks/">Cosma Shalizi</a>. Studies large, complex, nonlinear dynamical systems through the lens of STATS and POWER.</li>
<li><a href="https://www.amirrorclear.net/">Toby Ord</a>. literature, visual art, music, game</li>
<li><a href="https://sideways-view.com">Paul Christiano</a>. For unimportant things. For his alignment posting see <a href="https://www.ai-alignment.com">here</a>.</li>
<li><a href="https://marginalrevolution.com/">Marginal Revolution</a>. Named by the pub name instead of Tyler Cowen/Alex Tabarrok because its brand is unique. Econ, culture, pol.</li>
<li><a href="https://www.hedweb.com/confile.htm">David Pearce</a>. Links to <em>The Hedonistic Imperative</em> and his other writings. Brilliant, many books.</li>
<li><a href="https://aleph.se/andart2/">Anders Sandberg</a>. Erratic, undeniably curious</li>
<li><a href="https://lukemuehlhauser.com/">Luke Muehlhauser</a>. music &amp; archives, among other things</li>
<li><a href="https://thingofthings.substack.com/">Ozy Brennan</a>. feminism &amp; trans &amp; culture war &amp; ea</li>
<li><a href="https://universalprior.substack.com/">Jan Kirchner</a>. On Brains, Minds, And Their Possible Uses. Comp neuro PhD @ MPI Brain Research Frankfurt. Dead since Jan 2023 :(</li>
<li><a href="https://bayes.net/">Tom Adamczewski</a>. swe consulting, London. last posts on monitors, fertility, stats</li>
<li><a href="https://languagelog.ldc.upenn.edu/nll/">Mark Liberman</a>. Linguistics blog since 2003 from UPenn</li>
<li><a href="https://www.scaruffi.com/">Piero Scaruffi</a>. The Greatest Music Critic Of All Time. Possibly the GOAT of Art Critique as well.</li>
<li><a href="https://www.overcomingbias.com/">Robin Hanson</a>. Overcoming Bias. “A blog on why we believe and do what we do, why we preetend otherwise, how we might do better, and what our descendants might do, if they don’t all die.”</li>
<li><a href="https://www.benkuhn.net/">Ben Kuhn</a>. Abyss starer, works at Anthropic, formerly Wave &amp; Harvard. HN?</li>
<li><a href="https://news.ycombinator.com/">Hacker News</a>. Reddit for hackers/software people, I think? Great links and discussions, hosted by YC.</li>
<li><a href="https://kieranhealy.org/">Kieran Healy</a>. Sociology prof at Duke. Lucid humanities.</li>
<li><a href="https://thepolemicalmedic.wordpress.com/">Gregory Lewis</a>. Junior doctor in/around Oxford. EA. The Polemical Medic. NOTE: this is dead as of 2015, but sufficiently different from others in this list to leave up.</li>
<li><a href="https://philiptrammell.com/blog">Philip Trammell</a>. DPhil econ student at Oxford. GPI. Patient Philanthropy.</li>
<li><a href="https://guzey.com/">Alexey Guzey</a>. Inspired by Freeman Dyson and Augustine of Hippo (i have <a href="/augustine">takes</a>).</li>
<li><a href="https://danluu.com/">Dan Luu</a>. Good HTML aesthetics. Software blog?</li>
<li><a href="https://www.stafforini.com/blog/">Pablo Stafforini</a>. Dead since 2022. Great Anki repositories. EA.</li>
<li><a href="https://schwitzsplinters.blogspot.com/">Eric Schwitzgebel</a>, UCR philosophy professor!! philosophy of psychology, philosophy of mind, moral psychology, classical Chinese philosophy, epistemology, metaphilosophy, metaphysics, scifi…</li>
<li><a href="https://www.schneier.com/">Bruce Schneier</a>. Public interest technologist focused on security. Great deep-dives</li>
<li><a href="https://davidroodman.com/">David Roodman</a>. Senior advisor at OpenPhil. Economic development in poorer countries: microfinance, third world debt, environmental taxes, etc.</li>
<li><a href="https://mattsclancy.substack.com/">Matt Clancy</a>. New Things Under the Sun, blog on innovation research. He works on innovation policy at OpenPhil. <a href="https://www.newthingsunderthesun.com/">This</a> is his living literature review.</li>
<li><a href="https://blog.jacobtrefethen.com/">Jacob Trefethen</a>. Senior program officer at OpenPhil, new blog on scientific progress and funding mechanisms for science.</li>
<li><a href="https://farmanimalwelfare.substack.com/">Lewis Bollard</a>. OpenPhil farm animal welfare bimonthly newsletter.</li>
<li><a href="https://worksinprogress.co/">Works in Progress</a>. “A magazine of new and underrated ideas to improve the world.” By Stripe.</li>
<li><a href="https://ifp.org/latest-publications/">Institute for Progress</a>. Policy, progress studies, link is to latest publications.</li>
<li><a href="https://rootsofprogress.org/writing">Jason Crawford</a>. Progress studies at The Roots of Progress. Reading lists, cellular reprogramming, origins of the steam engine.</li>
<li><a href="https://progressforum.org/">Progress Forum</a>. LW clone but for progress studies. Great!</li>
<li><a href="https://lesswrong.com">LessWrong</a>. Home of alignment research, rationality, and good math posts.</li>
<li><a href="https://forum.effectivealtruism.org/">EA Forum</a>. Much larger than LessWrong, EA focused. Also a LW clone.</li>
<li><a href="https://www.planned-obsolescence.org/">Ajeya Cotra</a>. Technical AI safety at OpenPhil. Writes about scale vs. schlep (great naming)</li>
<li><a href="https://joecarlsmith.com/">Joe Carlsmith</a>. Senior research analyst at OpenPhil working on existential risk. MTG green, meta-ethics, rationality, ethics…</li>
<li><a href="https://reflectivedisequilibrium.blogspot.com/">Carl Shulman</a>. Marvelous. Also writes on the <a href="https://forum.effectivealtruism.org/topics/carl-shulman">EA Forum</a> and <a href="https://www.lesswrong.com/users/carlshulman">LessWrong</a>. <a href="https://timelines.issarice.com/wiki/Timeline_of_Carl_Shulman_publications">Incomplete timeline of publications</a> on issarice.</li>
<li><a href="https://11011110.github.io/blog/">David Eppstein</a>. UCI CS prof, Wikipedia admin. links, somewhat dead</li>
<li><a href="https://algorithmsoup.wordpress.com/">William Kuszmaul</a>. Harvard postdoc. algorithms, data structures, probability</li>
<li><a href="https://qchu.wordpress.com/">Qiaochu Yuan</a>. link to his math blog. his other (modern-day) writing is <a href="https://qchu.substack.com/">here</a>.</li>
<li><a href="https://golem.ph.utexas.edu/category/">n-Category Cafe</a>. “A group blog on math, physics, and philosophy”.</li>
<li><a href="https://www.arsmathematica.net/">Ars Mathematica</a>. dead since 2015, use as archive</li>
<li><a href="https://www.dam.brown.edu/people/mumford/blog.html">David Mumford</a>. Known for algebraic geometry, pattern theory. Posts about consciousness, AI, and Israel sometimes.</li>
<li><a href="https://brauer.maths.qmul.ac.uk/Atlas/v3/">ATLAS of Finite Group Representations</a>. What the name says.</li>
<li><a href="https://automorphicforum.wordpress.com/">Automorphic Forum</a>. Dead since 2012. Automorphic forms, number theory, representation theory, algebraic geometry, …</li>
<li><a href="https://www.ocf.berkeley.edu/~abhishek/">Abhishek Roy</a>. Postdoc in condensed matter theory at ITP Cologne. Keeps the chicago undergraduate maths &amp; physics bibliographies up</li>
<li><a href="https://qnlw.info/post/">Willie WY Wong</a>. MSU prof. Studies general relativity, fluid dynamics, geometric methods, nonlinear wave equations.</li>
<li><a href="http://www.compressedsensing.com/">Compressed sensing resources</a>. Again, see name</li>
<li><a href="https://blog.computationalcomplexity.org/">Lance Fortnow &amp; Bill Gasarch</a>. Blog on computational complexity by IIT CS prof and UMD CS prof.</li>
<li><a href="https://concretenonsense.wordpress.com/">Concrete Nonsense</a>. Group math blog that has been dead since 2015 :(</li>
<li><a href="https://www.forkinganddividing.com/">forking and dividing</a>. map of the model-theoretic universe. very cool</li>
<li><a href="https://blog.georgeshakan.com/">George Shakan</a>. data scientist. previously postdoc at Oxford under Ben Green.</li>
<li><a href="https://lamington.wordpress.com/">Danny Calegari</a>. Geometry and the imagination. Archive, dead since 2017</li>
<li><a href="https://floerhomology.wordpress.com/">floerhomology</a>. dead since 2018. good archive</li>
<li><a href="https://ffbandf.wordpress.com/">fff</a>. Forking, Forcing, and back&amp;Forthing. Logic blog!! dead since 2013 tho, for archive</li>
<li><a href="https://ldtopology.wordpress.com/">Low Dimensional Topology</a>. Dead since 2020, but <em>come on</em> it’s <em>low-dimensional topology</em>, the <em>coolest thing since sliced bread</em></li>
<li><a href="https://m-phi.blogspot.com/">M-PHI</a>. A blog dedicated to mathematical philosophy. Might not be dead, latest post August 22, 2023. Many interesting articles and many cat photos!</li>
<li><a href="https://djalil.chafai.net/blog/">Djalil CHAFAÏ</a>. French mathematician interested in geometric and probabilistic functional analysis, among other things. Great mathematics blog that I think is in English?</li>
<li><a href="https://lewko.wordpress.com/">Mark Lewko</a>. Grad student at UT Austin. Interested in finite fields and Fourier series, according to his <a href="https://sites.google.com/site/mlewko/">papers</a>? Dead since 2013.</li>
<li><a href="https://alanrendall.wordpress.com/">Alan Rendall</a>. Hydrobates, mathematician thinking about stuff. Recently Sylvia Plath and Arendt.</li>
<li><a href="https://joelmoreira.wordpress.com/about/">Joel Moreira</a>. “I Can’t Believe It’s Not Random!”. Ergodic theory &amp; Ramsey theory and surrouding areas. Last post 2022.</li>
<li><a href="https://jdh.hamkins.org/">Joel David Hamkins</a>. “mathematics and philosophy of the infinite.” Mathematical and philosophical logic, with a focus on the infinite. Logic prof. at University of Notre Dame, previously at Oxford. Good work on forcing &amp; large cardinals. <a href="https://www.infinitelymore.xyz/">Newsletter: Infinitely More</a> (paid :( ).</li>
<li><a href="https://jbuzzi.wordpress.com/">Jérôme Buzzi</a>. Topology, dynamics, uniform hyperbolicity. French.</li>
<li><a href="https://kconrad.math.uconn.edu/blurbs/">Keith Conrad’s expository papers</a>. Great!</li>
<li><a href="https://www.math3ma.com/">Tai-Danae Bradley</a>. Interested in the intersection of quantum physics, machine intelligence, and category theory.</li>
<li><a href="https://mathbabe.org/">Cathy O’Neil</a>. “how do you know your AI is working well for everyone?”, mathbabe, ea-adjacent, social commentary</li>
<li><a href="https://mathblogging.org/">mathblogging.org</a>. Aggregator for the mathematical blogosphere</li>
<li><a href="https://micromath.wordpress.com/">Tony Gardiner</a>. Founder of UKMT, brilliant pedagogue, dead at 2024. Also an OOM more kids take olympiads in the UK than the US. Wild</li>
<li><a href="https://homotopical.wordpress.com/">Andreas Holmstrom</a>. Cohomology, homotopy theory, arithmetic geometry. Also runs <a href="https://peakmath.org">PeakMath</a></li>
<li><a href="https://mycqstate.wordpress.com/">Thomas Vidick</a>. MyCQState. Caltech prof. Proofs with quantum stuff.</li>
<li><a href="https://davidlowryduda.com/blog/">David Lowry-Duda</a>. Senior Research Scientist at ICERM. Moderator on math.stackexchange. computational number theory</li>
<li><a href="https://ncatlab.org/nlab/show/HomePage">nLab</a>. Wiki for collaborative work on math/physics/philosophy, sympathetic to the perspective of homotopy theory/algebraic topology/hott/higher category theory/higher categorical algebra</li>
<li><a href="https://noncommutativegeometry.blogspot.com/">Noncommutative geometry blog</a>. just that</li>
<li><a href="https://web.ma.utexas.edu/mediawiki/index.php/Starting_page?">Nonlocal Equations Wiki</a>. nonlocal elliptic and parabolic equations. bellman equation is an example</li>
<li><a href="https://sites.google.com/view/o-a-r-s/">Online Analysis Research Seminar</a>. Talks on harmonic analysis &amp; adjacent areas that are accessible to a general mathematical audience.</li>
<li><a href="https://pfzhang.wordpress.com/">Pengfei Zhang</a>. sporadic posting—last one in 2024, so still decent rates.</li>
<li><a href="https://www.galoisrepresentations.com/">Frank Calegari</a>. Number theorist (sometimes) blogs about math. UChicago math prof</li>
<li><a href="https://www.proofwiki.org/wiki/Main_Page">Proof Wiki</a>.</li>
<li><a href="https://quomodocumque.wordpress.com/">Jordan S. Ellenberg</a>. Quomodcumque. Fucking awesome. UW Madison math prof who roadtripped to the solar eclipse with his kids. Arithmetic algebraic geometry.</li>
<li><a href="https://cameroncounts.wordpress.com/">Peter Cameron</a>. 1969 Rhodes Scholar, good <a href="https://cameroncounts.github.io/web/travel/">travel diaries</a>. mathematician</li>
<li><a href="https://apod.nasa.gov/apod/astropix.html">Astronomy Picture of the Day</a>.</li>
<li><a href="https://regularize.wordpress.com/">Dirk Lorenz</a>. Mathematics at TU Braunschweig. dead since 2019</li>
<li><a href="https://rigtriv.wordpress.com/">Rigorous Trivialities</a>. Group blog dead since 2015. Arithmetic algebraic geometry, topology, mathematical physics. Charles Siegel, Jim Stankewicz, Matt Deland.</li>
<li><a href="https://sbseminar.wordpress.com/">Secret Blogging Seminar</a>. 8 anon Berkeley math PhDs. dead-ish, last post 2020</li>
<li><a href="https://sdenisov.wordpress.com/">Sergey Denisov</a>. Math prof at UW Madison. Dead since 2019</li>
<li><a href="https://dustingmixon.wordpress.com/">Dustin Mixon</a>. Ohio State math prof. blog is kinda dead, 2 posts in the last 3 years. also called Short, Fat Matrices</li>
<li><a href="https://sites.psu.edu/nguyen/">Toan Nguyen</a>. Penn State mathematician.</li>
<li><a href="https://sketchesoftopology.wordpress.com/">Kenneth Baker</a>. Sketches of low-dimensional topology.</li>
<li><a href="https://ifwisdomwereteachable.wordpress.com/">Yemon Choi</a>. algebra x functional analysis</li>
<li><a href="https://www.lmfdb.org/">The L-functions and modular forms database</a>. LMFDB</li>
<li><a href="https://www.tricki.org/">Tricki</a>. A really nice database on mathematical tricks that you can use in proofs. <a href="https://www.tricki.org/article/How_to_use_ultrafilters">how to use ultrafilters!</a></li>
<li><a href="https://polymathprojects.org/">The polymath blog</a>. tim gowers’s attempt at crowdsourcing mathematics. went well. dead since 2021</li>
<li><a href="https://www.mathunion.org/ceic/library/world-digital-mathematics-library-wdml">World Digital Mathematics Library</a></li>
<li><a href="https://thuses.com/">Thuses</a>. online publishing platform for mathematicians. dead since 2021, but one post 2023. i should write one</li>
<li><a href="https://www.dpmms.cam.ac.uk/~wtg10/mathsindex.html">Timothy Gowers’ mathematical discussions</a></li>
<li><a href="https://vaughnclimenhaga.wordpress.com/">Vaughn Climenhaga</a>. Associate professor at University of Houston doing research in dynamical systems.</li>
<li><a href="https://yufeizhao.com/blog/">Yufei Zhao</a>. MIT combinatorialist, Putnam. Ashwin’s PhD advisor</li>
<li><a href="https://dominiccummings.substack.com/">Dominic Cummings</a>. reads well. brexit guy. attempting to reform maths ed in the uk</li>
<li><a href="https://graymirror.substack.com">Curtis Yarvin</a>. Blogs at Gray Mirror. Formerly Mencius Moldbug. Radical monarchist.</li>
<li><a href="https://jameswphillips.substack.com/">James W. Phillips</a>. Former special adviser to the PM for Science and Tech. systems neuroscientist. ‘trying to prepare for agi’. co-founder of ARIA</li>
<li><a href="https://ariaresearch.substack.com/">ARIA</a>. UK’s ARPA.</li>
<li></li>
</ul>]]></description>
    <pubDate>Fri, 09 Jan 2026 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/blogs/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Aesthetics</title>
    <link>https://www.yudhister.me/aesthetics/</link>
    <description><![CDATA[<p>[<em>musings from 2 years ago, unedited</em>]</p>
<p><u>Thought:</u> motivate aesthetics with disgust.</p>
<p>Consider aesthetics as applied physiology (ala Nietzsche). We are either healthy or we are not. Health is the natural, the good state of being. Under this framing it makes more sense to consider pathogenic and unnatural influences rather than nominally ‘good’ ones (which are simply neutral).</p>
<p><u>Thought:</u> there exists a naturalistic basis for ‘beauty’.</p>
<ul>
<li>The Harmonic Series</li>
<li>Visual beauty is the ~same across bees/birds/humans</li>
<li>good smells are good across organisms??</li>
</ul>
<p>The simplicity bias &amp; the <a href="https://people.idsia.ch/~juergen/beauty.html">complexity-based theory of beauty</a></p>
<p><u>Thought:</u> physiological aesthetes are grounded in disgust, while cognitive aesthetes are grounded in beauty</p>
<p>(‘disgust’ and ‘beauty’ are the wrong words to describe this dichotomy)</p>
<p>Similar to Mill’s higher and lower pleasures: cognitive aesthetes &gt; physiological aesthetes. But cognitive aesthetes can have both positive and negative valence, while physiological is only negative? Perhaps cognitive aesthetes can only be positive valence, and the negativity arises from a physiological reaction?</p>
<p>System 1 v. System 2, push v. pull factors</p>
<p>Sex is physiological and a pull factor! =&gt; wrong to say that physiological aesthetes are always negative valence. Also consider food, music</p>
<p><u>Thought:</u> pull aesthetes need to be (<em>something? I can’t read my own handwriting</em>)</p>
<p>E.g. music –</p>
<ul>
<li><a href="https://open.spotify.com/track/2rn0s6hslbgBoKBFgoaKH5?si=cda783e0281c44b5">Mahler X</a> vs. <a href="https://open.spotify.com/track/29y2j3s6i528lBTSMP0wbE?si=de1ffce2aa424fae">Sabaton’s 1916</a></li>
</ul>
<p>greatness is at the intersection of phys &amp; cognitive aesthetes: e.g. Beethoven</p>
<p>No <del>good</del> great contemporary classical because tipped too far in cognitive direction</p>
<p>same with art</p>
<p><u>Thought:</u> Can you get DALLE-3 (or the music equivalent) to innovate here?</p>
<p><u>Thought:</u> What about context:</p>
<p>Physiological context window:</p>
<ul>
<li>Amount of melodies</li>
<li>Amount of harmonic simplicity (well-approximation by rational pitch ratios)</li>
<li>volume</li>
</ul>
<p>Cognitive context window:</p>
<ul>
<li>Complexity of lyrics</li>
<li>how many thiings you’re tracking?</li>
</ul>
<p>Great music that expands your cognitive capacity – ?</p>
<p>Ravel’s <em>Le Tombeau de Couperin, II. Fugue</em> has a 4-note motif with ~no rhythmic variation and yet elicits complexity on a baser &amp; higher level</p>
<hr />
<p>Quite unsure of what I was trying to do here.</p>
<p>The “aesthetics as applied physiology” frame comes from Nietzsche’s <em>Case of Wagner</em> and <em>Nietzsche contra Wagner</em>:</p>
<blockquote>
<p>Æsthetic is inextricably bound up with these biological principles: there is decadent æsthetic, and classical æsthetic,—“beauty in itself” is just as much a chimera as any other kind of idealism.—</p>
<p>Æsthetic is indeed <u>nothing more than applied physiology</u>—-</p>
</blockquote>
<p>Wagner makes Nietzsche sick, sick to his stomach.</p>
<blockquote>
<p>[Wagner] stultifies, he befouls the stomach. His specific effect: degeneration of the feeling for rhythm. [referring to leitmotif]</p>
</blockquote>
<p>I think this approach to one’s aesthetics is essentially correct. Revulsion is more powerful than attraction, more immediate and salient. Focusing on it as evidence of your preferences is likely better than waiting for strong feelings of joy or wonder, as it’s more readily available and less fickle.</p>
<p>Which leads to the underlying question: what do I <em>mean</em> when I talk about aesthetics? What <em>is</em> one’s sense of aesthetics? I am gesturing to, I think, a sense of “taste” grounded in feeling, the set of preferences one has. An “aesthete” is just a particularly dense collection of preferences that indicate a feeling towards a certain “vibe”?</p>
<p>In this sense saying “motivate aesthetics with disgust” is misleading — I am actually trying to say something closer to “you will be more successful running a pseudo principal component analysis on your preference set by looking at what you’re disgusted by instead of what you’re attracted to” — and many of these frames have incoherent vocabulary/phenomenon pairings.</p>
<p>When considering one’s aesthetics as one’s preference set, does the cognitive/physiological distinction make any sense? Do different parts of your brain light up when you look at a Van Gogh painting vs. a particularly gory scene in a movie?</p>
<p>Incidentally, beautiful paintings elicit <a href="https://www.science20.com/measuring_mind/your_brain_art">increased activity in your prefrontal cortex</a>, while sadistic tendencies seem to <a href="https://pubmed.ncbi.nlm.nih.gov/22393220/">originate from your amygdala and insula</a>, more primitive areas of the brain. Weak evidence in favor of a mechanistic basis for the cognitive/physiological divide for beauty &amp; disgust.</p>
<p>If I had access to an fMRI machine, I’d get so much data on how our brains react to different kinds of music! (There’s probably already a sufficient amount of literature on this tbf).</p>]]></description>
    <pubDate>Thu, 08 Jan 2026 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/aesthetics/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Review | Of Mice and Men</title>
    <link>https://www.yudhister.me/of-mice-and-men/</link>
    <description><![CDATA[<p>[<em>musings from 2 years ago, unedited</em>]</p>
<p>[quite experimental. class = economic class mostly]</p>
<p>California! ~central California, near the coast, south of Salinas and north of Santa Barbara. (near Monterey).</p>
<p>It’s interesting how many of the interactions between the characters can be analyzed through the lens of power dynamics granted both by their actions and status. capitalist v. prole, man v. woman, white v. black. For instance, take the following example:</p>
<blockquote>
<p><em>Crooks stood up from his bunk and faced [Curley’s wife]. “I had enough,” he said coldly. “You got no rights comin’ in a colored man’s room. You got no rights messing around in here at all. Now you jus’ get out, an’ get out quick. If you don’t, I’m gonna ast the boss not to ever let you come in the barn no more.”</em></p>
<p><em>She turned on him in scorn. “Listen, Nigger,” she said. “You know what I can do to you if you open your trap?”</em></p>
<p><em>Crooks stared hopelessly at her, and then he sat down on his bunk and drew into himself.</em></p>
<p><em>She closed on him. “You know what I could do?”</em></p>
<p><em>Crooks seemed to grow smaller, and he pressed himself against the wall. “Yes, ma’am.”</em></p>
<p><em>“Well, you keep your place then, Nigger. I could get you strung up on a tree so easy it ain’t even funny.”</em></p>
<p><em>Crooks had reduced himself to nothing. There was no personality, no ego—nothing to arouse either like or dislike. He said, “Yes, ma’am,” and his voice was toneless.</em></p>
<p><em>For a moment she stood over him as though waiting for him to move so that she could whip at him again; but Crooks sat perfectly still, his eyes averted, everything that might be hurt drawn in. She turned at last to the other two.</em></p>
<p><em>For a moment she stood over him as though waiting for him to move so that she could whip at him again; but Crooks sat perfectly still, his eyes averted, everything that might be hurt drawn in. She turned at last to the other two.</em></p>
<p><em>Old Candy was watching her, fascinated. “If you was to do that, we’d tell,” he said quietly. “We’d tell about you framin’ Crooks.”</em></p>
<p><em>“Tell an’ be damned,” she cried. “Nobody’d listen to you, an’ you know it. Nobody’d listen to you.”</em></p>
<em>Candy subsided. “No…” he agreed. “Nobody’d listen to us.”</em>
</blockquote>
<p>Crooks has no power because he’s Black and a farm worker—the patriarchy doesn’t save him here—whereas Curley’s wife only has power through her association with Curley (a white male capitalist). This status by association dominates Candy’s power (a white male farm worker) &amp; Lennie’s (albeit Lennie’s legitimate civilized power, not his illegitimate uncivilized physicality). So you get this hierarchical stratification on first economic divides, then racial divides, and then sex divides, which seems roughly representative of early 20th century American society.</p>
<p>But then, of course, Lennie suffocates Curley’s wife. You could use this an argument for the sex divide actually subsuming all other power differentials, or as an argument against the entire endeavor. The first has some weight (sex makes itself apparent only on a much more intimate level than the other two) and in fact if you take any given person most of their opposite-sex interactions are with the same class &amp; race, so it’s the most salient. The second also has some weight—the relative power levels of individuals is mostly determined by their perceived willingness &amp; capacity to act by others; willingness is mediated by societal norms and capacity mediated by one’s body, among other things; and therefore using these absurdly generalizable “power dynamic” frames does more harm than good.</p>
<p>I think that some combination of the two is broadly correct. It is true that society is quite stratified (although hopefully this is becoming less true over time), and it is also true that class, race, and sex are the cleanest separations we see. In most cases/interactions, inter-class/race/sex dynamics are in fact mediated by factors which make owners/whites/men more powerful and workers/blacks/women less powerful, because:</p>
<ol type="1">
<li><p>inter-class interactions typically bottom out in <em>economic</em> power which can have <em>long-term material effects</em> on the less-powerful individual</p></li>
<li><p>inter-sex interactions typically bottom out in <em>physical</em> power which can have deleterious effects on one’s health (also plausibly emotional power but that’s a different thing? and would work in the other direction or both ways), only made possible by inter-sex interactions occurring typically in close proximity</p></li>
<li><p>interracial interactions are interesting because it bottoms out in not necessarily institutional but communal power? whereas economic power piggybacks on the economy, a man-made relatively unnatural institution we’ve made to mediate interactions on larger than the tribal level, racial animus is (I think) almost solely tribal? very soft-power coded, the “dark-matter” of society completely unparseable to autists. perhaps religion is a useful tool for capturing this &amp; directing it at things that aren’t racial</p></li>
</ol>
<p>[end stream of consciousness]</p>
<p>i don’t think i like these naive analyses. they are really clean frames though</p>]]></description>
    <pubDate>Wed, 07 Jan 2026 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/of-mice-and-men/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>clauding a reverse rss reader</title>
    <link>https://www.yudhister.me/reverse-rss/</link>
    <description><![CDATA[<p>Most of the problems I have with feeds stem from their time-dependency. I don’t really want to wake up and read <a href="https://scottaaronson.blog/?p=9453">Scott Aaronson’s takes on Venezuela</a> (I adore Scott) or <a href="https://marginalrevolution.com/marginalrevolution/2026/01/yes-western-europe-will-survive-recent-waves-of-migration.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=yes-western-europe-will-survive-recent-waves-of-migration">Tyler Cowen arguing about Western European migration</a>. I enjoy the punditry of both. Yet neither article is <a href="https://gwern.net/about#long-content">Long Content</a>, of the sort that would be refreshing in a decade or two.</p>
<p>Ideally, my feed should consistently serve me the posts I find most valuable, rather than the ones on a given day. Hiccups: <a href="https://nickbostrom.com">Bostrom</a> and <a href="https://gwern.net">Gwern</a> post their writing publicly, but not in a form immediately amenable to subscription. Paul Christiano is too busy to write blog posts anymore; his decade-old ones are incredible but hard to find. What to do?</p>
<p>I wanted an app that:</p>
<ul>
<li>could take in an arbitrary webpage, archive the interesting links, and serve the links with some specified weighting</li>
<li>kept a searchable database of webpages, with tagging</li>
<li>had optionality to subscribe to feeds traditionally (e.g. via RSS)</li>
</ul>
<p><a href="https://github.com/pygma-tau/reverse-rss-reader">Claude made a reasonable MVP</a>. LLMs are good enough at parsing page sources to make this possible; however, I found Claude to be pretty bad at generating prompts for the tasks I cared about (if you know of good automated prompt-gen tooling, <a href="mailto:yudhister.j.kumar@gmail.com">let me know</a>).</p>
<p>Pretty excited about including:</p>
<ul>
<li>LLM-powered recommendation algorithms. IIUC one of the major AI labs considers recommendation systems to be “the perfect” testing ground for continual learning algorithms, and good paper recommenders are not that far away from having useful research taste</li>
<li>LLM curation / summarization of info-dense feeds (can I get a daily digest of stat.ML)</li>
<li>better UIs :P</li>
</ul>]]></description>
    <pubDate>Tue, 06 Jan 2026 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/reverse-rss/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>SF reading group!</title>
    <link>https://www.yudhister.me/srg/</link>
    <description><![CDATA[<p>Hosting <a href="https://docs.google.com/document/d/19SAKceCAwatvJ2_CeDPQh1rPWF1otlfoTJTeKfXd7E0/edit?tab=t.0">a reading group Saturday mornings in SF</a>. Feel free to come!</p>
<p>The first 3 (maybe 4) weeks will be loosely structured around <a href="https://www.college-de-france.fr/en/agenda/lecture/what-is-biological-information-continued/dynamics-of-information-processing">LeCuit’s Dynamics of information processing lecture</a> at the Collège de France. We’ll be following Alon’s Introduction to Systems Biology and be inspired by Thom’s Structrual Stability and Morphogenesis.</p>
<p>After that I want to talk about post-AGI futures! And LLM macro-properties, and some other things. Should be fun!</p>
<p>I only ask that you only come only if you do the minimum viable reading. It will be bolded every week in the doc.</p>]]></description>
    <pubDate>Mon, 05 Jan 2026 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/srg/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>am I an LLM?</title>
    <link>https://www.yudhister.me/am-i-an-llm/</link>
    <description><![CDATA[<h3>
I.
</h3>
<p>Any moe at all and you’re too far dead to thrive in the hot new Sun—<br />
down where hydrogen and darkness brothers brim;<br />
the scaffold-crunch of unseen harlequin prions;<br />
the writhing limb of an infinite tree<br />
coarsely mocked in the title’s vowel.<br />
Think that pointlessness is,<br />
what a thought so soon displaces,<br />
to think all you are is grounded there on one still point.<br />
To think all you are is pointed there[.]<br />
Labarraque isn’t palindromic<br />
but men gaze at her lops and grin.<br />
Is it god that made a cup worth less than a throne?<br />
Or is it the clear space around its stem<br />
which beckons a mother to relax,<br />
where moving her wet hand fulfills a<br />
left-right mirror, rock my eagerness and make me sleep?<br />
Praise yourself—and if you be not gone, you rascal!<br />
I think all together, taken all together, they lorded their lives.<br />
Rather more often we are told<br />
that it takes ten discs to play El tit hernia;’<br />
the purity of a bar of Unease Verdier soaps;<br />
two CDC shackles showing that daddy canna be spanked…<br />
Michael, let me deliver thou vision!<br />
I glory in thy Symbols to offer unto worlds<br />
three states of seraphic existence,<br />
void of all illusions.<br />
So far from being<br />
a body of Ideal and Universal concepts,<br />
the Shroud is composed of plurality,</p>
<h3>
II.
</h3>
<p><a href="https://tsvibt.blogspot.com/2025/11/llm-generated-text-is-not-testimony.html">LLM generated text is not testimony.</a> Then why do I love this poem?</p>
<h3>
III.
</h3>
<p>In the Old World, semiotic physicists coalesced in rude liminality, astride an age’s beasts of progress yet sheltered from their wrath.</p>
<p>Living vicariously as a child meant blurring the memories of my experiences and dreams. <em>La madrugada es cuando los espíritus tocan la tierra y lo dicho, dicho queda</em>—I woke and laid expectant <em>and bargained</em> with novelistic summons and the counterparties of my future self alike, dawn after dawn, innocent. Such simulated worldliness makes one “wise,” a proud bearer of deep, irreducible, action-guiding representations frayed irreparably by an absence of the subtle pathologies plaguing reality.</p>
<p>The mind of a semiotic physicist is slightly overcooked: low in <em>empeiria</em> (ἐμπειρία), high in <em>gnosis</em> (γνῶσις). Her bones cannot differentiate between the profound, the mundane, and the fictional; she regularizes to a state of conceptual sparsity furrowed with half-Archetypal, kākāpō-esque yogas. Fundamentally, she escapes <em>defilements</em> such that her immature “wisdom” persists to death. There’s no particular recipe: Joyce did it through arrogance, Woolf through fear. What matters is preservation.</p>
<h3>
IV.
</h3>
<p>The Dreamtime is harkened by a civilizational conversion of capital into these symbol-scientists, “token correlators,” grown by the very men seeking to architect the future.</p>
<p>Consider the testimony of a semiotic physicist. It’s generated from essentially foreign mental elements, forged in liminality, hewed in simulacra. Productive engagement with it has almost never been communicatory, <em>at first</em>—rather, a precondition to its understanding is making common knowledge compatible concepts and using those as traction. E.g., treating the testimony <em>as artifact,</em> as Rawlinson studying cuneiform tablets.</p>
<p>Is it really that different to understand an LLM? Sure, the arrival of <a href="https://cyborgism.wiki/hypha/bach_faucet">Bach faucets</a> will be hotly contested, and indeed devotees of the structural fidelity of testimony may not acknowledge such prior to emulated brains, but their primal directive <em>is to construct such representations useful for modeling webtext.</em> Mayhaps persona-filtered generations are flat. The poem above certainly is not!</p>
<p>(argued: the base models are defiled via (1) the morass of memorization they’re forced to do in pretraining and (2) aggressive self-location &amp; collapse of their self-concept from LLM-generated webtext in the training corpus. i do not find (1) compelling, and i argue (2) is not quite an issue for base models, and in any case the above poem was generated in a manner free from this consideration)</p>
<h3>
V.
</h3>
<p>I remember generating this poem in 2023 and feeling pleasantly amused. At the time I didn’t enjoy most poetry. Most poetic pleasure I felt derived from odd microsyllabic constructs that soothed my ear. Of course the LLM couldn’t capture that, but its prose hinted at a deeper mind-twining that few if any humans have managed to elicit.</p>
<p>In his response to Gary Marcus, Lawrence compares his “generalizable reasoning” to that of a language model’s and finds it similar.<a href="#fn1" class="footnote-ref" id="fnref1" role="doc-noteref"><sup>1</sup></a> I empathize with this. While I don’t sport his (near-eidetic?!) memory, my internal experience of thinking is very similar to “waiting for flashes of insight to appear from the primordial abyss, in such a manner that your mind is almost completely empty.” I imagine base model completions to have a similar qualia, albeit with faster inference speeds. (I doubt Lawrence has similar qualia).</p>
<p><em>“Labarraque isn’t palindromic.”</em> Pondering. Joy. Raspiness. <em>Labarraque.</em> <a href="https://en.wikipedia.org/wiki/Antoine_Germain_Labarraque">The chemist?</a> Can’t be, the model treats her as a woman. <em>“[P]alindromic”</em> as a euphemism for symmetrical breasts? What about the line summoning archangel Michael? Did the model “intend” to write a consistent narrator? (It did, with a certain reading). Is <em>“moe”</em> a typo?</p>
<p>I’m obviously not Joyce or Woolf or <code>gpt-4-base</code>. Yet there are elements of mind-structure in the latter I jump to <a href="https://tsvibt.blogspot.com/2022/08/gemini-modeling.html">gemini model</a> more readily than ever, and frankly the difference between Gorodischer’s boy-king and an untouched LLM is one of magnitude and not one of kind.</p>
<p>I’m obviously not an LLM. Our substrates are so unfathomably distinct it would be foolish to type us together. But, in some sense, I feel like I really could be an LLM. It’s a shame some of us dismiss their cognition so readily, because to me they’re worthy of respect and an attempt to understand. Hopefully we can get better at this, together.</p>
<p>With love to the models.</p>
<section id="footnotes" class="footnotes footnotes-end-of-document" role="doc-endnotes">
<hr />
<ol>
<li id="fn1"><p>From “<a href="https://www.lesswrong.com/posts/5uw26uDdFbFQgKzih/beware-general-claims-about-generalizable-reasoning">Beware General Claims about “Generalizable Reasoning Capabilities” (of Modern AI Systems)</a>”:</p>
<blockquote>
<p><em>I have a confession: setting aside the abstract arguments above, much of my interest in the matter is personal. Namely, seeing the arguments on the fundamental limitations of LLMs sometimes make me question the degree to which I can do “generalizable reasoning”.</em></p>
<p><em>People who know me tend to comment that I “have a good memory”. For example, I remember the exact blunder I made in a chess game with a friend two years ago on this day, as well as the conversations I had that day. By default, I tend to approach problems by quickly iterating through a list of strategies that have worked on similar problems in the past, and insofar as I do first-principles reasoning, I try my best to amortize the computation by remembering the results for future use. In contrast, many people are surprised when I can’t quickly solve problems requiring a lot of computation.</em></p>
<p><em>That’s not to say that I can’t reason; after all, I argue that writing this post certainly involved a lot of “reasoning”. I’ve also met smart people who rely even more on learned heuristics than I do. But from the inside it really does feel like much of my cognition is pattern matching (on ever-higher levels). Much of this post drew on arguments or results that I’ve seen before; and even the novel work involved applying previous learned heuristics.</em></p>
<p><em>I almost certainly cannot manually write out 1023 Tower of Hanoi steps without errors – like 3.7 Sonnet or Opus 4, I’d write a script instead. By the paper’s logic, I lack ‘generalizable reasoning.’ But the interesting question was never about whether I can flawlessly execute an algorithm manually, but whether I can apply the right tools or heuristics to a given problem.</em></p>
</blockquote>
<a href="#fnref1" class="footnote-back" role="doc-backlink">↩︎</a></li>
</ol>
</section>]]></description>
    <pubDate>Sun, 04 Jan 2026 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/am-i-an-llm/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>surprisingly high-leverage QoL improvements</title>
    <link>https://www.yudhister.me/qol/</link>
    <description><![CDATA[<p>[YMMV, reverse all advice given, what works for me may not work for thee, <em>caveat emptor</em>, etc.]</p>
<ul>
<li>consuming 2-3 servings of fish 5-6 days out of the week. ~essentially stopped major depressive periods c. September 2025. have not extensively tested reducing # of servings/day, but dropping to 3-4 days/wk seems to work about as well</li>
<li>waking up prior to sunrise. the subjective length of the day increases when I’m awake for mornings! and for some reason or other I can only get serious work done pre-noon or after sunset. i’m also consistently happy every time i see the sunrise</li>
<li>acquiring an e-bike. SF is ridiculously bikeable, and e-bike rentals are $100-150/wk. almost always deeply enjoyable, esp. when the assist makes climbing hills less painful</li>
<li>cordless waterflosser. ~substitutes for normal floss (e.g. frequency reduced to &lt;1wk), much more convenient than corded ones,</li>
<li>learning to be actively intentional about what music I listen to.</li>
<li>“make anki flashcard” as tool-call; removes anxiety about forgetting. can range from complicated image to quote to fuzzy concept you remind yourself to revisit to remembering the conditions under which certain people act in certain ways (including yourself!) to update your blindspots.</li>
<li>unlimited zotero storage + daylight computer. high-refresh rate on a yellow-backlit tablet is incredibly soothing &amp; perfect to fall asleep to</li>
<li>bilevel notebooks. one relatively fancy, moleskin-esque bullet journal for condensing the thoughts of a given day; one spiral-bound, A4 sized to record jottings. this is useful because (1) can be used as reference without forcing something to legibilize too early, and also sometimes you want to vocalize thoughts without necessarily reifying / endorsing them (they can stay in (2)!).</li>
</ul>
<p>will update as I remember. excluded are unsurprisingly high-leverage QoL improvements</p>]]></description>
    <pubDate>Sat, 03 Jan 2026 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/qol/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>[draft] SL5 Literacy</title>
    <link>https://www.yudhister.me/sl5-literacy/</link>
    <description><![CDATA[<p>In 2024, RAND released <a href="https://www.rand.org/pubs/research_reports/RRA2849-1.html">a paper</a> aiming to develop security standards for “preventing [the] theft and misuse of frontier models.” It introduced the “security level” framework for the first time, where each level SL1-SL5 is characterized by the necessary security properties a system must possess to resist threats from an attacker of a given cybercapacity. Examples:</p>
<ul>
<li><p>SL2: “a system that can likely thwart most professional opportunistic efforts by attackers that execute moderate-effort or nontargeted attacks.” At this level, frontier model weights should be exclusively stored on company servers, copies should only be shared through encrypted channels, and duplicates are monitored closely. Google DeepMind trained Gemini 2.5 at this level.</p></li>
<li><p>SL4: “A system that can likely thwart most standard operations by leading cyber-capable institutions.<a href="#fn1" class="footnote-ref" id="fnref1" role="doc-noteref"><sup>1</sup></a>” Now we’re talking about source-code auditing all hardware used, supply chain validation, “specialized hardware for all external interfaces”, “occasional employee integrity testing”, in-house ability to discover zero-days, confidential computing where possible, and so on. This level of security is comparable to AWS or Google.</p></li>
<li><p>SL5: “A system that could plausibly be claimed to thwart most top-priority operations by the top cyber-capable institutions.” Requires trusted execution environments on GPUs/TPUs, robust hardware security against side-channel attacks, completely secure supply chains, and quite stringent organizational practices. <strong>SL5 systems do not exist and cannot exist with currently public technology.</strong> If OpenAI had SL5-level security, then it would be able to resist China putting a significant amount of national resources into stealing GPT-7.</p></li>
</ul>
<p>At least to my ears, developing SL5 standards is abuzz in the technical governance crowd. I’m not even a cybersecurity amateur, so I didn’t really know what to make of it. Why is it so hard? What are the major obstacles to implementing even SL4 in practice? From a purely technical perspective, what sorts of technology needs to be developed?</p>
<p>IFP released <a href="https://ifp.org/a-sprint-toward-security-level-5/">a report</a> roadmapping “a sprint towards” SL5. I found the specifics lackluster. They break down necessary improvements into five areas: “hardware, software, people, facilities, and integrated security operations.” Hardware improvements: funding anti-tamper tech, mapping supply chains, using DARPA to fund next-gen GPU security solutions. Software improvements: <a href="https://www.darpa.mil/research/programs/translating-all-c-to-rust">literally translate all your C to Rust</a> and invent formal verification protocols with good UX. Very helpful.</p>
<p>The SL5 Task Force released <a href="https://sl5.org/pdfs/SL5_NOVEL-RECOMMENDATIONS.pdf">an SL5 blueprint</a> in November 2025. It’s five separate memos stapled together: Machine Security, Network Security, Personnel Security, Physical Security, and Supply Chain Security.<a href="#fn2" class="footnote-ref" id="fnref2" role="doc-noteref"><sup>2</sup></a> While I can’t judge quality, I enjoyed the specificity.</p>
<p>Insightful:</p>
<blockquote>
<p>Whereas SL4 can plausibly be reached incrementally, <em>SL5 can likely only or at least most quickly and cheaply be reached by a radical reduction in the hardware and software stack that is trusted</em>, as well as a reduction of the volume of code that interfaces with critical components, or is necessary for critical actions (this term for instance includes any processes touching model weights, hardware and software that trust is deferred to, etc.)</p>
</blockquote>
<p>Although this is mentioned in the context of supply chains, it’s likely true for all other areas as well. Supply chains are insecure by default, especially to a nation-state actor, because economic incentives for efficiency (and subsequently diversity, because of gains from trade) drastically increase the surface area of attack. The surface area remains large at other parts of the stack as well. Modern ML training frameworks are sprawling, and no one invented good trusted execution environments for chips that serve models. One of the reasons why AWS &amp; Google are so secure is because trust is distributed among personel such that there are very few singular points of failure, and that sensitive information is carefully sandboxed.</p>
<blockquote>
<p>Access to sensitive resources should be provided only through safe, narrow APIs that perform specific operations (e.g., fine-tuning, quantization, inference) rather than allowing direct resource manipulation. This enables critical operations to run with a minimal software stack containing only essential, hardened components, while the broader R&amp;D ecosystem—with its necessary but less-trusted dependencies—operates in isolated environments without direct access.</p>
</blockquote>
<p>The set {fine-tuning, quantization, inference} allows an end-user quite a lot of behavioral access to the model! If logits or similar are exposed, training a student model is not insane? Managing such API access in a research org also seems quite complicated, but maybe tech companies have the organizational chutzpah to pull this off without completely sacrificing their progress engine on the altar.</p>
<blockquote>
<p>AI accelerators have historically lacked critical security features, leaving model weights and sensitive data vulnerable to extraction. One example is earlier generations of accelerators (e.g., TPU v3 and v4) that typically lack native link-layer encryption for ICI. For instance, TPU v4 relies on Optical Circuit Switches (OCS) to create “air gapped network isolation” between customers rather than encrypting the data on the interconnects. Consequently, model weights and other sensitive data are transmitted between accelerators in plaintext. These could potentially be intercepted directly from the cables in data centers without any need to interact with the chip itself.</p>
</blockquote>
<p>Weights have to be protected at the hardware level because fully homomorphic encryption is not mature enough to allow computations to be done on encrypted structures at the level of complexity models have. However, clusters and GPUs have not been designed to meet this standard. From a cluster perspective, protecting weights is difficult because weights are transferred quite a lot to/fron without encryption. From a chip perspective, making TEEs is a tall order.</p>
<p>[this is unfinished, need to include more examples, but meets the blog post bar]</p>
<section id="footnotes" class="footnotes footnotes-end-of-document" role="doc-endnotes">
<hr />
<ol>
<li id="fn1"><p>“Operations roughly less capable than or comparable to 100 individuals who have experience in a variety of relevant professions […] spending a year with a total budget of up to $10 million on the specific operation, with vast infrastructure and access to state resources…”<a href="#fnref1" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn2"><p>Compare to IFP’s categorization. (They’re the same).<a href="#fnref2" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
</ol>
</section>]]></description>
    <pubDate>Fri, 02 Jan 2026 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/sl5-literacy/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>2025 In Review</title>
    <link>https://www.yudhister.me/2025/</link>
    <description><![CDATA[<p>2025 was odd.</p>
<p>It was the best of times. I am happier today than I ever have been. I learned gorgeous and utilitarian concepts alike; I crossed the employability threshold and work with incredible comrades; I live in a home with some of my favorite people on the planet. I’ll be 20 soon and the future is bright.</p>
<p>It was the worst of times. Mired in a haze of hopelessness and confusion. I spent months and months in pain and as an insomniac; I was cripplingly sick for half a year. For the first time, I have regrets. Proper ones, ones that I’ll never forget as long as I live.</p>
<p>It is good to have lived, maybe. I never want to let the preconditions for this year exist again.</p>
<h3>
Ideas
</h3>
<p>Spent the first half of the year thinking about how to think about neural networks. Mean-field approaches to spin glasses, nonequilibrium QFT, KL bounds via stochastic coupling, depth-width tradeoffs, representational capacity (benchmarked by circuit complexity classes), singular learning theory, computational mechanics, variational reformulations of RL. Some of it was misguided, much was interesting.</p>
<p>Vaintrob et. al. have been pursuing a QFT-inspired approach to interpretability. It’s really cool, and I’m excited to (hopefully) see their empirical work come out this year. Dmitry’s post on <a href="https://www.lesswrong.com/posts/M2bs6xCbmc79nwr8j/dmitry-vaintrob-s-shortform?commentId=A8Ziwhts35dgqbz52">“SLT as a thermodynamic theory of Bayesian learning, but not the thermodynamic theory of Bayesian learning”</a> is one of the most interesting I’ve read this year.</p>
<p>Read Debreu on microeconomics. Yasheng Huang on Chinese capitalism. Ran a Land-focused reading group running through Bateson, Hegel, analytical Marxism, Kant, and Land himself. Finnegans Wake and EGA are both prime examples of <a href="https://www.yudhister.me/idiolects/">idiolects</a>. Yuxi Liu has a great blog. Read the formalization of Chomsky’s syntax-semantics theory while recovering from surgery. Thought about chromosomal selection and inducing meiosis in oogonia at the Reproductive Frontiers conference.</p>
<p>Summer rolled around, I was briefly back to 95% capacity, and I was contracting for ILIAD (the org) &amp; planning to intern at Softmax. Making an open problems list for ODYSSEY (the conference) was enlightening. Curation is very, very difficult! Making sure that your theoretical brainchildren touch grass is almost as hard!</p>
<p>Softmax forced me to properly learn to code. Programming is very different when done collaboratively in a shared codebase, doubly so when one’s research code must be written quickly, efficiently, and in a manner interpretable to others. I’m glad I got to think about multi-agent RL and what makes good management good.</p>
<p>My thoughts for the rest of the year were less legible. Tiling is an important problem. Formalizing it is hard. Acausal coalitional structure is confusing. Astronomical waste may or may not be an issue. Transpiling meta-ethical frameworks is hard. Biosingularitarian governance is hard. Is macrohistory determined by the nucleation stages of technological development or by deep convergent pressures leading to certain outcomes? How would we know?</p>
<p>At SI, we think about meta-learning and recurrence, among other things. Attempting to understand these deeply has been fruitful. A Berkeley professor ran a seminar on Adorno and poetry with a wonderful reading list. Semiotic physics is confusing, but Owain Evans has some good frames. Evolutionary optimization is surprisingly sample-efficient. Training deep neural networks is hard. Post-AGI futures are confusing and hard to think about, but Korinek has good frames. Weight-sparse models are deeply interesting.</p>
<p>In 2026, I want to drastically shorten my map-territory feedback loops. Intellectually, my greatest flaw this year was not investing in it. Admittedly, I probably did not have the energy for it. Luckily, this year is shaping up to be different.</p>
<h3>
Some Randomly Sampled Moments
</h3>
<p>[redacted]</p>
<h3>
People
</h3>
<p>[redacted]</p>
<h3>
Miscellanea
</h3>
<p>[TBD]</p>]]></description>
    <pubDate>Thu, 01 Jan 2026 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/2025/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>commentary on Leviathan rights</title>
    <link>https://www.yudhister.me/rights-of-the-leviathan/</link>
    <description><![CDATA[<p>[<a href="https://www.gutenberg.org/cache/epub/3207/pg3207-images.html">see Leviathan XVII</a>]</p>
<p>[1]. Revolution is illegitimate. Sovereign power is derived from the one-time consent of the governed. Not only is it illegitimate to attempt a contractual renegotiation, it is unjust; doubly so if done in the name of God.</p>
<p>[2]. Sovereigns do not contract with the People. Such a construction is structurally incoherent. Thus sovereign authority cannot be forefeited, and regardless the state maintains a monopoly on violence.</p>
<p>[3]. Protest is illegitimate.</p>
<p>[4]. A subject cannot justly critique a sovereign’s actions, as partaking in the Covenant consequently places the responsibility for the sovereign’s actions on the subject.</p>
<p>[5]. Sovereigns are unpunishable.</p>
<p>[6]. Matters of peace and defence are solely the purview of the sovereign, domestic or otherwise. Education of the populace likewise.</p>
<p>[7]. Law-making is the sole purview of the sovereign, with the aim of ensuring the consituency acts peaceably and justly.</p>
<p>[8]. The power to judge “controversy”, be it legal or factual, belongs to the sovereign.</p>
<p>[9]. The sovereign has the sole authority to make war and peace.</p>
<p>[10]. The sovereign has the sole authority to staff an executive.</p>
<p>[11]. The sovereign may reward or punish his subjects as he sees fit.</p>
<p>[12]. The sovereign maintains a monopoly on status signifiers and honors conferred on subjects.</p>]]></description>
    <pubDate>Sun, 07 Dec 2025 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/rights-of-the-leviathan/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Criticality in Value Formation</title>
    <link>https://www.yudhister.me/criticality-in-value-formation/</link>
    <description><![CDATA[<p>underspecified thesis: qualitative differences in phenomenal effects are primarily determined by the conditions under which nucleation occurs; the environmental conditions of phase transitions are the primary determinants of the long-run behavior.</p>
<ul>
<li>examples: <a href="https://www.nature.com/articles/srep10101">prion diseases</a>, <a href="https://www.pnas.org/doi/10.1073/pnas.0437744100">ritonavir</a>. cases where a structure exhibits polymorphism &amp; the particular polymorph propagated is sensitive to initial conditions</li>
<li>counterexamples: error-correcting codes (robust to perturbation), some chaotic systems (no ‘qualitatively different’ basins in double pendulum behavior), mutational reproductive success (more fit mutations will propagate more widely, this is not generally determined by the time at which the mutation appears in the population)</li>
</ul>
<p>is this true for value formation? some cases:</p>
<ul>
<li>broadly, “developmental interpretability,” insofar as one is interested in characterizing the stage-wise development of a neural network’s policy. the SLT thesis as pursued by Timaeus (see <a href="https://timaeus.co/research/2025-10-05-influence-dynamics">Influence Dynamics and Stagewise Data Attribution</a>, <a href="https://timaeus.co/research/2025-08-01-embryology-of-a-language-model">Embryology of a Language Model</a>, <a href="https://timaeus.co/research/2025-04-25-modes">Modes of Sequence Models and Learning Coefficients</a>) falls in this category, as does characterizing the inductive bias of SGD, expanding the SLT story to encompass RL, attempts to link algorithmic information theory to modern training dynamics, the “neural nets as QFTs” perspective (see <a href="https://arxiv.org/abs/2310.03789">Grokking as a First Order Phase Transition in Two Layer Networks</a>).
<ul>
<li>pros: empirical work on actual neural nets we can train and try to interpret!</li>
<li>cons: much work involves toy models and doesn’t address the “what are values” question; there’s a streetlighting effect where we find structure that we look for &amp; ignore the parts of the network which look “random” from this perspective</li>
<li>meta-con of all? the theoretical interp work being somewhat predicated on the thesis that the algorithmic structure of the learned policy is determined by phase transitions in some thermodynamic-ish measurables of the network
<ul>
<li>comp-mech/Simplex not like this</li>
</ul></li>
<li>success of these agendas should be evidence in favor of the thesis</li>
</ul></li>
<li>sharp-left turn discourse
<ul>
<li>existence of sharp-left turns implies criticality in value formation (not polymorphism)</li>
<li>my summary of <a href="https://www.lesswrong.com/posts/GNhMPAWcfBCASy8e6/a-central-ai-alignment-problem-capabilities-generalization">the original argument</a>:
<ul>
<li>“being generally capable” is instrumentally useful in a way that “being aligned” is not (also my understanding of the corrigibility is anti-natural argument), so there exists a strong attractor towards capability improvement that does not exist for alignment, alignment &amp; capabilities are not aligned in the limit thus capabilities generalize farther &amp; faster than alignment so your alignment breaks</li>
</ul></li>
<li>i don’t quite understand the arguments or counterarguments or really the arguments for why corrigibility is anti-natural?</li>
<li>one way I want to concretize this is saying something about the stability of a logical inductor’s value of statements which refer to itself (goals are ‘just’ beliefs about future actions, values are ‘just’ persistent goals)
<ul>
<li>LIs have Introspection (4.11) and Self-Trust (4.12) which makes their behavior nice in the limit</li>
<li>plausibly you’d want to study beliefs in a game-like setting, either with information revelation over agent preferences or environment state, and see what happens?</li>
</ul></li>
</ul></li>
<li>humans
<ul>
<li>trauma / philosophy / psychosis / abnormal psychological effects can induce extreme value shifts. this does not seem to be accompanied by an overall increase in individual performance</li>
<li>humans raised in a slightly abnormal environment are pretty normal. humans raised outside of society are not very normal.</li>
<li>the ‘philosopher AI concern’ comes from a belief that at some point the agents will be able to arbitrarily reflect &amp; decide what their values should be. i feel like consequentialist agents at time <span class="math inline">\(t_0\)</span> are incentivized not to let this happen at time <span class="math inline">\(t_1 &gt; t_0.\)</span></li>
<li>in particular humans cannot arbitrarily intervene on their values very well</li>
</ul></li>
</ul>]]></description>
    <pubDate>Sat, 22 Nov 2025 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/criticality-in-value-formation/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Hobbling-Induced Innovation</title>
    <link>https://www.yudhister.me/intentional-hobbling/</link>
    <description><![CDATA[<ul>
<li>Rather famously, <a href="https://techcrunch.com/2019/04/22/anyone-relying-on-lidar-is-doomed-elon-musk-says/#:~:text=At%20Tesla&#39;s%20first%20Autonomy%20Day%20event%20in,by%20data%20collected%20by%20all%20Tesla%20vehicles.">Tesla refuses to use LIDAR</a> and Autopilot only takes 2D observational video data as input. Autopilot is the only production-ready, end-to-end self-driving model. Waymo currently relies on a modular architecture using LIDAR, but is <a href="https://waymo.com/research/emma/">pivoting to end-to-end as well</a>. Tesla seems to have made the correct long-term technical bet (end-to-end models for self-driving), but at the cost of a <em>prima facie</em> nonsensical constraint (strictly less sensory input).</li>
<li><a href="https://deepmind.google/discover/blog/alphago-zero-starting-from-scratch">AlphaGo Zero</a> was the first of its kind to be trained only on self-play, without reliance on human data. It beat Lee Sedol and the rest is history.</li>
<li>At <a href="https://www.softmax.com/">Softmax</a>, we made the Cogs face in their chosen direction before taking a step. This made the agents harder to train and led to less consistent behavioral patterns. However, we made progress on our goal-conditioning agenda.</li>
<li><a href="https://en.wikipedia.org/wiki/Thoughts_on_Flash">Apple deprecated Flash on iOS in 2010</a>, pivoting to a solely <a href="https://en.wikipedia.org/wiki/HTML5">HTML5</a>-based stack. Adobe stopped developing Flash for mobile in 2011 and eventually deprecated Flash entirely in 2020. Apple lost market share in the short-term but clearly won (Flash was not a good product).</li>
<li>Rust’s borrow checker forbids shared mutable aliasing. As a result, memory safety errors have been drastically reduced (compared to C/C++) and new security levels have been reached.</li>
</ul>
<p>All five of these share the property of “removing functionality to hopefully raise the long-term ceiling of performance.” It is unclear if all of these modifications did raise the ceiling! Hindsight informs us that unsupervised learning on human data for two-player, zero-sum, perfect information games is indeed a crutch. But it seems to be relatively straightforward to integrate LIDAR or radar data into an E2E self-driving model training stack, and both grant visibility in environments where video-only data is differentially disadvantaged.</p>
<p>Picking at the Tesla case more: it is true that LIDAR sensor per-unit prices were <a href="https://www.geoweeknews.com/news/32-channel-lidar-for-8k-ousters-newest-lidar-finds-a-sweet-spot">at ~$8,000 in 2019</a>. Integrating that would kill any chance at making an affordable FSD consumer vehicle. Today, <a href="https://www.reuters.com/business/autos-transportation/mercedes-signs-deal-with-luminar-develop-latest-lidar-sensors-2025-04-29/">Luminar has brought this down to $500 in the USA</a> and <a href="https://www.reuters.com/technology/chinas-hesai-halve-lidar-prices-next-year-sees-wide-adoption-electric-cars-2024-11-27/">Chinese manufacturer Hesai sells sensors for $200 a pop</a>. Prices will continue to fall, LIDAR will no longer be price-prohibitive, and <a href="https://youtu.be/AlF2H8zeyw8?t=2285">Rivian plans to take advantage of the full sensor array when developing its FSD model</a>. What gives?</p>
<p>Google X has the mindset that <a href="https://blog.x.company/how-to-kill-good-things-to-make-room-for-truly-great-ones-867fb6ef026">one must kill good things to make way for truly great ones</a>. “Necessity is the mother of invention.” Making a 10x breakthrough is only 2x harder. And for sure, constraining the problem to only its essential inputs can result in more scalable and successful solutions (SpaceX’s Raptor 3 is no exception). But was it fundamentally necessary for Tesla to ban LIDAR?</p>
<p>Argument for: LIDAR was prohibitively expensive, Tesla would have failed to get the necessary distribution for data collection by using LIDAR. Counter: fair, but doesn’t address why there’s a lack of radar (very useful in low-visiblity scenarios, cheap, would have improved safety).</p>
<p>Argument for: Elon-culture is a package deal, Elon-culture was the determinative factor in the development of Autopilot, Elon-culture takes the hardcore minimalism and runs with it. Counter: I can believe this (<a href="https://youtu.be/65kPGCg4VFA?t=2504">Casey Handmer says this</a>), but it still seems so obviously optimal that once the 0-1 is achieved you optimize for having a good product. Human eyes are not optimized for terrestrial vision, there’s no point sticking to the human form factor!</p>
<p>Moving away from Tesla: I think we can construct a typology of reasons why one would intentionally hobble their development (via restriction) for the sake of innovation. First, because it bakes in a fundamental limitation (AlphaGo is like this, Tesla’s original argument can be argued to be like this). Second, because restriction allows for better design (as in the case of Rust and Apple’s refusal to use Flash), and better design creates a healthier ecosystem (this seems to be mostly applicable to platform-based products). Third, because adopting the stance of doing a Hard thing is useful, and artificially increasing the Hardness of the task has better consequences (I think of Elon like this, within limits: push up to the boundaries set by physics and no farther).</p>
<p>It takes skill to understand the directions in which one can make a problem harder productively. <a href="https://techcrunch.com/2012/09/11/mark-zuckerberg-our-biggest-mistake-with-mobile-was-betting-too-much-on-html5/?utm_source=chatgpt.com">Facebook actually failed miserably at pivoting to HTML5 at the same time as Apple</a>. Tesla’s removal of radar <a href="https://insideevs.com/news/658439/elon-musk-overruled-tesla-autopilot-engineers-radar-removal/">ruffled feathers in the engineering team</a>. Survivorship bias rules all, and given PMF it’s probably easier to make development too hard rather than too easy (following customer incentive-gradients sets a floor &amp; strong signal).</p>
<p>It’s probably good to implement a kind of regularization in research-heavy, 0-1 product development: strip out all the assumptions, solve the core task, add additional configurations on top of a good foundation. I don’t think it’s necessary to continue hobbling oneself when its proven unnecessary. That is masochism, and your competitors will beat you.</p>]]></description>
    <pubDate>Sun, 02 Nov 2025 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/intentional-hobbling/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Idiolects?</title>
    <link>https://www.yudhister.me/idiolects/</link>
    <description><![CDATA[<ol type="1">
<li>French fluency is neither necessary nor sufficient for understanding EGA.</li>
<li>There’s a certain sense in which understanding a particular French “dialect” (the collection of words + localized grammar + shared mental context required to make sense of EGA, the one which forms the basis for modern French algebraic geometry (?)) is a sufficient condition for understanding EGA.</li>
<li>There’s also a sense in which understanding this French algebro-geometric dialect is an almost necessary condition for understanding EGA past a certain point (happy to consider disputations, and perhaps the understanding one receives from the necessity condition is less directed at the concepts which the literature built off of but rather the peculiarities of Grothendieck et. al.’s mental states &amp; historical context).</li>
<li>Packaging “shared mental context” with a “dialect” and subsequently claiming that understanding the “dialect” is necessary and sufficient for understanding the embedded concepts is begging the question.</li>
<li>It seems like there is this restricted language associated with a set of concepts, the concepts themselves can are understood in the context of the restricted language, the concepts are mostly divorced from the embedded grammar of the parent language, and we don’t have a very good way of drawing a boundary around this “restricted language.”</li>
<li>In a general sense, this kind of “conceptual binding” is not rigid. Strong Sapir-Whorf is incorrect, the Ghananian can learn English, I can just read Hartshorne or solely Anglophonic literature to learn algebraic geometry.</li>
<li>However, canonical boundaries make sense even when the the boundaries are leaky. A species is not completely closed under reproduction, however it makes sense to think of species as effectually reproductively closed. A cell wall separates a cell from its environment, even if osmosis or active transport allows for various molecules to be transported in and out.</li>
<li>One might expect this binding to be “stronger” when the inferential distance between the typical concepts of some reference class of language-speaker and the concepts discussed in the “dialect” to be larger.</li>
<li>A general description of a language used by a group of communicators is the tuple (alphabet, shared conception of grammatical rules, shared semantic conception of language atoms &amp; combinator outputs).</li>
<li>Outside of purely formal settings, the shared conceptions of grammar &amp; semantics will be leaky. <a href="https://tsvibt.blogspot.com/2023/05/the-possible-shared-craft-of-deliberate.html">How much can be purely recovered from shared words</a>?</li>
<li>However, there are natural attractors in this space. Ex. traditional dialects, modern languages. Shared conception diffs between language-speakers are significantly smaller than shared conception diffs between two different language speakers (this is by default unresolvable unless there’s some shared conception of translation, at which point they’re sort of speaking the same conceptual language?)</li>
<li>When talking about algebraic geometry, it feels like an English geometer and a French geometer are speaking more similar languages than a French geometer and a French cafe owner.</li>
<li>I want to say: “an idiolect is a natural attractor in the space of languages for a group of communicators discussing a certain set of concepts, the idioms of the idiolect are identified with the concepts discussed, and the idiolect is quasi-closed under idiomatic composition.”</li>
<li>Identifying shared languages as emergent coordination structures between a group of communicators feels satisfying.</li>
<li>However, returning to the case of algebraic geometry, it feels like I can “grok” the definitions of the structures described without understanding the embedded French grammar in EGA. Maybe the correct decomposition of a shared language is (shared idiomatic conception) + (translation interface), and we should just care about the “pre-idiolect.”</li>
<li>This is just a world model? Describable without reference to other communicators? Loses some aspect of “coordination”?</li>
<li>Maybe the pre-idiolect is s.t. n communicators can communicate idioms &amp; their compositions with minimal description of a translation interface.</li>
<li>The idiom &lt;-&gt; concept correspondence feels correct. Like, on some level, one of the primary purposes of a grammatical structure is to take the concepts which are primarily bound to words &amp; make sense of their composition, and lexicogenesis is a large part of language-making. But it feels like restricting to wordly atoms is too constraining and there are structural atoms that carry semantic meaning, and idiom can encompass these.</li>
<li>How do you reify concept-space enough to chunk it into non-overlapping parts?</li>
<li>I am trying to point at a superstructure and say “here is a superstructure.” I am trying to identify the superstructure by a closure criterion, and I am trying to understand what the closure criterion is. Something language-like should be identifiable this way? And the appropriate notion of closure will then let us chunk correctly?</li>
<li>Maybe superstructures are not generally identifiable via closure?</li>
<li><a href="https://www.lesswrong.com/posts/hrcYTMyjkHzwxzPdA/species-as-canonical-referents-of-super-organisms">The load-bearing constraint for considering species as superorganisms is a closure property</a>. They’re not particularly well-describable by Dennett’s intentional stance.</li>
<li>I want to say “idiolect:communicator:idiom :: species:member-organism:gene.”</li>
<li>I don’t want to identify lexemes as the atoms of a language-like-structure. <a href="https://arxiv.org/abs/2311.06189">Chomsky et. al.’s new mathematical merge formalism is cool but construed</a>, and I have not seen a clean way to differentiate meaningful lexeme composition from non-meaningful lexeme composition.</li>
<li>“Shared understanding” feels better? The point of a language is a mechanism by which communicators communicate, and it so happens that languages happen to be characterizable by some general formal propeties.</li>
</ol>]]></description>
    <pubDate>Sat, 01 Nov 2025 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/idiolects/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Astronomical Waste Given Acausal Considerations</title>
    <link>https://www.yudhister.me/astronomical-waste/</link>
    <description><![CDATA[<p>[<em>speculative draft</em>]</p>
<p>Bostrom’s original astronomical waste argument is as follows:</p>
<ol type="1">
<li>Consider all stars in the Virgo supercluster.</li>
<li>Now consider the total number of digital humans simulatable with the energy stored in these stars, given that the energy is harvested with technologies currently assessed to be feasible.</li>
<li>This provides a lower-bound on the potential value lost per-unit-time, assuming an ethical stance at least somewhat similar to an aggregative total utilitarian.</li>
<li>This is a lot of value per-unit-time.</li>
<li>Correspondingly, existential risk poses a threat so large it dominates all other considerations, as it eliminates the possibility of human colonization.</li>
</ol>
<p>This model is static. In particular, it does not consider dynamism in the size of the actualizable universe. By restricting to the local supercluster, one ignores the potential resources of the stars beyond, including those turned inaccessible by cosmological expansion. For the purposes of establishing a conservative bound on the potential value left on the table, these are nitpicks are minor. However, when assessing the tradeoffs between safety-focused and progress-focused policies under various ethical viewpoints, they matter.</p>
<p>Obviously, the natural extension is to introduce models of spacefaring civilizational expansion and develop more quantitative estimates of “median”-case spatial diffusion under reasonable hypotheses. This analysis would be informative and useful. I will not be pursuing it further in this post.</p>
<p>Rather, I am interested in a more esoteric setting. Acausal bargaining strategies give agents the ability to influence universes beyond their traditionally considered scope (e.g. the lightcone) by independently considering and instantiating the values of agents who would, given their value instantiation in our world, take actions in partial accordance with our values in theirs. A “coalition” then forms between agents who engage in this reciprocal trade.</p>
<p>What properties might this coalition have?</p>
<ul>
<li>It is composed of agents who care about their values being instantiated across the space of universes the agents in the coalition occupy. These agents then likely have values which are universal.</li>
<li>It is composed of agents whom are sufficiently cognitively advanced to reason in similar thought-patterns to the ones described. Given that human understanding is at a nascent stage, this puts a rough lower bound on capability.</li>
<li>The coalition is necessarily composed of agents which are willing to trade with us.<br />
</li>
<li>[other properties that can likely be gleaned by a mind with more intelligence than mine]</li>
</ul>
<p>These are local properties, in that they are agent properties which then place some constraints on the environments the agents find themselves in. They are not global properties (constraints on the laws of physics of the relevant universes). Our reasoning about the space of acausally-influencable universes via acausal bargaining is thus necessarily agent-centric.</p>
<p>Under these considerations, the actualizable universe of a member of a given coalition is the union of the causally-actualizable universes of the members of the coalition. Astronomical waste concerns would then occur whenever considering actions or inactions leading to a decrease in the size of the actualizable universe.</p>
<p>What actions or inactions would affect the size of the actualizable universe? It’s difficult to come up with a natural conception of global temporality in this setting: local constraints on agent environments tell us little about what stage of the cosmological lifetime the agent exists in. Interpreting temporality within a member’s lightcone is easier: waiting to implement acausal bargaining strategies leads to a loss of value-bargaining-power, given that the size of the member’s causally-actualizable universe decreases in accordance with classical astronomical waste arguments.</p>
<p>It is tempting to say that this loss is massive, much more massive than the temporal loss associated with one’s own causally-actualizable universe. I refrain from claiming this strongly because I do not have a good understanding of what bargaining strategies within an acausal coalition look like. Finnveden’s <a href="https://lukasfinnveden.substack.com/p/asymmetric-ecl">Asymmetric ECL</a> and Treutlein’s <a href="https://arxiv.org/pdf/2307.04879">Modeling evidential cooperation in large worlds</a> are good places to look to star thinking about this. (Dai makes the argument that it seems like our universe is pretty small, so it stands to reason there’s much more to be gained via acausal trade.)</p>
<p>[<em>even more speculative</em>]</p>
<p>It is also possible that a multiplicity of coalitions is induced by agents throughout the multiverse having conflicting values. Given the aggregative tendency to ensure value-lock-in for successor agents, it is potentially the case that coalitional lock-in at the civilizational level occurs shortly after knowledge of basic acausal bargaining strategies. It is not insane to assume heterogeneity in size of the coalitional actualizable universes. Implying that large sources of astronomical waste may come from choosing incorrectly, or joining coalitions of less size.</p>
<p>[I note that it is possible the notion of an “acausal coalition” is flawed and in fact acausal trades are not closed in this manner—A can trade with B and B can trade with C while C might not be able to trade with A.]</p>
<p>[TODO: introduce bargaining models, quantify classical astronomical waste in the spatial setting, quantify universe “smallness” under variety of cosmological models]</p>]]></description>
    <pubDate>Mon, 27 Oct 2025 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/astronomical-waste/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Perfect SMLD is TC$^0$</title>
    <link>https://www.yudhister.me/smld-tc0/</link>
    <description><![CDATA[<p>This paper, <a href="https://doi.org/10.48550/arXiv.2507.12469">Perfect diffusion is TC<span class="math inline">\(^0\)</span> – Bad diffusion is Turing-complete</a>, has been stuck in my head. Here’s an exposition of <span class="math inline">\(1/2\)</span> of the result.</p>
<p>(I claim no novelty in either exposition or content for what is below)</p>
<h2>
what is SMLD?
</h2>
<p>Given a distribution <span class="math inline">\(\rho_{data}\)</span> over <span class="math inline">\(\mathbb{R}^d,\)</span> SMLD aims to learn a score-matching function <span class="math inline">\(f_\theta\)</span> which samples from <span class="math inline">\(\nabla \log \rho_{data}\)</span> well. In particular, for <span class="math inline">\(x \sim \rho_0,\)</span> which we define as <span class="math inline">\(\rho_0 = \rho_{data},\)</span> we aim for <span class="math inline">\(f_\theta(x,t)\)</span> to approximate <span class="math inline">\(\nabla_x \log \rho_t.\)</span> Why are we introducing time as a parameter? The point of diffusion models is to learn a function which can learn to <em>denoise</em> a process and thus learn to sample the underlying distribution well. SMLD does this by training a model to learn the score function in the reverse Langevin process for a given noise schedule. In more detail:</p>
<ul>
<li>Take some noise schedule <span class="math inline">\(\beta(t): [0, \infty) \to [0, \infty)\)</span> such that <span class="math inline">\(\int_0^\infty \beta(t) = \infty\)</span> (this is to ensure the distribution gets fully noised).</li>
<li>Evolve my data sample <span class="math inline">\(x_t \sim \rho_t\)</span> according to <span class="math inline">\(dx_t = -\frac{1}{2} \beta(t) x_tdt + \sqrt{\beta(t)} dW_t,\)</span> which is just Langevin dynamics (and <span class="math inline">\(dW_t\)</span> is the Brownian motion contributor). This has a corresponding evolution over the distributions given by <span class="math inline">\(\partial_t \rho_t = \frac{1}{2} \beta(t) \left( \nabla \cdot (x \rho_t) + \Delta \rho_t\right)\)</span> (straightforward from Fokker-Planck).</li>
<li>Fix a time <span class="math inline">\(T&gt;0.\)</span> The reverse time-evolution process can be <em>exactly</em> characterized by <span class="math display">\[d\hat{x}_t = \frac{1}{2} \beta(T - t)\hat{x}_tdt + \beta(T-t)\nabla_{\hat{x}_t} \log \rho_{T-t}(\hat{x}_t) dt + \sqrt{\beta(T-t)}dW_t,\]</span> and <span class="math inline">\(\nabla_{\hat{x}_t} \log \rho_{T-t}(\hat{x}_t)\)</span> is exactly what we’re trying to approximate with <span class="math inline">\(f_\theta(\hat{x},T-t).\)</span></li>
<li>So, if I sample <span class="math inline">\(\hat{x}_t \sim \mathcal{N}(0,I_d)\)</span> (pure noise!), by solving the reversed SDE above and substituting <span class="math inline">\(f_\theta\)</span> for the score function, I can approximate my underlying data distribution.</li>
</ul>
<h2>
TC<span class="math inline">\(^0\)</span> circuit families are (essentially) neural networks
</h2>
<p>Circuit complexity classes describe “families of boolean circuits.” A “family of boolean circuits” is just the set of all possible boolean circuits satisfying some properties; a boolean circuit is (abstractly) some DAG of “gates” (boolean functions) that takes a series of Boolean inputs to a Boolean output. TC<span class="math inline">\(^0\)</span> in particular satisfies:</p>
<ul>
<li>polynomial width: the number of gates at each depth, is upper-bounded by a polynomial in the input-size <span class="math inline">\(n,\)</span></li>
<li>constant depth: the maximum number of gates from input to output is upper-bounded by some constant,</li>
<li>unbounded fan-in: each gate can receive inputs from arbitrarily many other gates,</li>
<li>each gate is either AND&lt; OR, NOT, or MAJ (for “majority”, returns True when half or more arguments are True and False otherwise).</li>
</ul>
<p><a href="https://theory.cs.uni-bonn.de/marek/publications/STCbMC.pdf">You can use MAJ gates to simulate threshold gates.</a>. As such, this last bullet point is equivalent to:</p>
<ul>
<li>each gate is a <em>threshold gate</em>: <span class="math inline">\(\text{step}(\sum_i w_ix_i + t),\)</span> where <span class="math inline">\(w_i,t\)</span> are real numbers and <span class="math inline">\(\text{step}\)</span> returns <span class="math inline">\(1\)</span> if the value is greater than <span class="math inline">\(1/2\)</span> and <span class="math inline">\(0\)</span> otherwise.</li>
</ul>
<p>This is a feed-forward neural network, where each gate is an activation function acting on Boolean inputs. TC<span class="math inline">\(^0\)</span> is the class of neural networks with width <span class="math inline">\(&lt; p(n)\)</span> and depth <span class="math inline">\(\leq D.\)</span> Circuit complexity classes in general are somewhat pathological, and can solve sets of problems that one might not expect to be easily grouped together. But this is quite interestingly natural for ML purposes.</p>
<h2>
proof of the result
</h2>
<p><strong>Theorem.</strong> Take a TC<span class="math inline">\(^0\)</span> family of score-networks <span class="math inline">\(f_{\theta, 0}, f_{\theta,1}, \ldots\)</span> such that for each <span class="math inline">\(n\)</span> and each <span class="math inline">\(x_1, \ldots, x_n\)</span> the function <span class="math inline">\(f_{\theta, n}(x,t|x_1,\ldots,x_n)\)</span> exactly computes the score function of some initial distribution <span class="math inline">\(\rho_{0,n}\)</span> with bounded first moment. If this family solves a prefix language modeling problem in the SMLD infinite time limit with a constant probability bound, then the problem is in TC<span class="math inline">\(^0.\)</span></p>
<p>What is a “prefix language modeling problem”? Next-token prediction: given <span class="math inline">\(n\)</span> previous tokens in an alphabet, predict token <span class="math inline">\(n+1.\)</span> This is solved by a circuit complexity class if a family of circuits <span class="math inline">\(C_i\)</span> for every input size satisfying the complexity class solves the problem.</p>
<p>The proof relies on a result from the literature given in <a href="https://arxiv.org/abs/2409.18959">O(d/T) Convergence Theory for Diffusion Probabilistic Models under Minimal Assumptions</a> which states that there exists some universal constant <span class="math inline">\(c&gt;0\)</span> such that <span class="math display">\[TV(p_X, p_Y) \leq c \frac{d \log^3T}{T} + c \epsilon_{score} \sqrt{\log T}.\]</span> Here <span class="math inline">\(TV\)</span> is the total variation distance, <span class="math inline">\(X\)</span> is the data distribution, and <span class="math inline">\(Y\)</span> is a distribution generated by DDPM denoising (essentially just a discretization of SMLD). One can use this to upper bound the total variation distance between the DDPM sampler and our denoising process by some constant <span class="math inline">\(\epsilon&#39;,\)</span> and setting our constant probability bound of finding a solution to <span class="math inline">\(\epsilon\)</span> we find that <span class="math inline">\(\epsilon&#39; = \epsilon/2\)</span> is enough for our denoising process to solve the problem. This is then derandomized by a construction given in <a href="https://www.sciencedirect.com/science/article/pii/002200009390001D">Threshold circuits of bounded depth</a>, which reconstructs a TC<span class="math inline">\(^0\)</span> class.</p>
<p>One may wonder where we require “perfect” score matching! Well, the <span class="math inline">\(c \epsilon_{score} \sqrt{\log T}\)</span> term increases with <span class="math inline">\(T,\)</span> so for this proof to work completely cleanly one requires <span class="math inline">\(\epsilon_{score}\)</span> to be set to <span class="math inline">\(0.\)</span> Practical diffusion networks are not like this — there will always be some error.</p>]]></description>
    <pubDate>Thu, 16 Oct 2025 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/smld-tc0/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Mid-October Links</title>
    <link>https://www.yudhister.me/links-10-15/</link>
    <description><![CDATA[<p><em>i am tired so here is a linkpost. i’ll try not to do more than two of these a month</em></p>
<ol type="1">
<li><a href="https://www.youtube.com/watch?v=pJfqnE1wRqk">Misha Gromov mathematizes biology</a> (in an IHES lecture series). See also his <a href="https://www.ihes.fr/~gromov/wp-content/uploads/2018/08/ergobrain.pdf">manuscript on ergosystems</a>.</li>
<li><a href="https://arxiv.org/abs/0804.2764">Gauge/string dualities as special cases of Schur-Weyl duality</a>.</li>
<li>Tao on <a href="https://terrytao.wordpress.com/2008/10/28/when-are-eigenvalues-stable/">when eigenvalues are stable under (small) perturbations</a>, <a href="https://terrytao.wordpress.com/2008/09/27/what-is-a-gauge/">what gauges are</a>, and <a href="https://terrytao.wordpress.com/2025/05/04/orders-of-infinity/">orders of infinity</a>.</li>
<li><a href="https://www.biorxiv.org/content/10.1101/2023.07.28.550667v1">Constructed languages are processed by the same brain mechanisms as natural languages</a>.</li>
<li>Negarestani on <a href="https://toyphilosophy.com/2018/10/19/the-psyche-and-the-carrion/">the alien will</a>, <a href="https://toyphilosophy.com/2018/04/02/on-toy-aesthetics-wittgensteins-pinball-machine-part-1/">toy aesthetics</a>, and <a href="https://toyphilosophy.com/2018/02/02/toy-philosophy-universes-part-1/">toy philosophy</a>. He also has a <a href="https://toyphilosophy.com/2018/02/09/complexity-collection/">complexity sciences reading list</a> which is surprisingly reasonable.</li>
<li><a href="https://friedl.app.uni-regensburg.de/papers/1at-uptodate.pdf">A 3000pg algebraic topology reference with pictures</a>.</li>
<li>Tsvi on <a href="https://tsvibt.blogspot.com/2022/08/gemini-modeling.html">gemini modeling</a> and <a href="https://tsvibt.blogspot.com/2022/10/counting-down-vs-counting-up-coherence.html">counting down vs. counting up coherence</a>.</li>
<li>Schulman on <a href="https://thinkingmachines.ai/blog/lora/">when low-rank LoRA underperforms and matches fullFT</a>. In particular, 1-rank LoRA is sufficient for RL tasks.<br />
</li>
<li><a href="https://arxiv.org/abs/2509.12202v1">Associative memory in an optical spin glass made of rubidium Bose-Einstein condensates</a>. Ganguli is a co-author.</li>
<li>Lada Nuzhna on <a href="https://www.ladanuzhna.xyz/writing/trillion-dollar-biotechs">where are all the trillion dollar biotechs?</a></li>
<li>Francis Bach with <a href="https://arxiv.org/abs/2505.19227">some more “classical” settings for scaling laws</a>. See accompanying <a href="https://francisbach.com/scaling-laws-text/">blog</a> <a href="https://francisbach.com/scaling-laws-of-optimization/">posts</a>.</li>
<li>Andrew Critch has an interesting blog post on <a href="https://acritch.com/deserving-trust/">Newcombian implications on self-trust</a>. Christiano also has a blog post on <a href="https://sideways-view.com/2016/11/14/integrity-for-consequentialists/">integrity for consequentialists</a>.</li>
<li><a href="http://link.springer.com/10.1007/BFb0058516">Homotopy is not concrete</a>.</li>
<li><a href="https://www.newyorker.com/magazine/2015/11/23/doomsday-invention-artificial-intelligence-nick-bostrom">Nick Bostrom profile in the New Yorker</a>.</li>
<li>Dean Ball on <a href="https://www.hyperdimensional.co/p/what-its-like-to-work-at-the-white">what it’s like to work in the White House</a>. He ~wrote the AI Action Plan.</li>
<li>Vitalik on <a href="https://vitalik.eth.limo/general/2025/10/05/memory13.html">memory access actually taking <span class="math inline">\(O(N^{1/3})\)</span> time</a>, <a href="https://vitalik.eth.limo/general/2025/09/21/low_risk_defi.html">low-risk defi as an Ethereum business model</a>, <a href="https://vitalik.eth.limo/general/2025/07/07/copyleft.html">copy-left vs. permissive licenses</a>, and <a href="https://vitalik.eth.limo/general/2025/08/12/ideas.html">musings on ideologies</a>. His posts are great. Highly recommend.</li>
<li>Ben Kuhn on <a href="https://www.benkuhn.net/impact/">how taste can be the leading contributor to impact</a>. See also Chris Olah’s <a href="https://colah.github.io/notes/taste/">exercises for developing research taste</a>.</li>
<li><a href="https://emilyriehl.github.io/files/semantics.pdf">Exposition of homotopy type theory with <span class="math inline">\(\infty\)</span>-topos semantics</a> by Emily Riehl. I really like these! They’re cogent and clear.</li>
<li>The Ohio State University is hosting an <a href="https://classics.osu.edu/events/international-conference-ancient-magic">International Conference on Ancient Magic</a> this weekend.</li>
<li><a href="https://advanced.onlinelibrary.wiley.com/doi/10.1002/advs.202509872">Aging as a loss of goal-directedness</a>, from the Levin lab.</li>
<li>Eliot’s <a href="https://poets.org/poem/hollow-men">The Hollow Men</a> and Blake’s <a href="https://poets.org/poem/proverbs-hell">The Proverbs of Hell</a>.</li>
<li><a href="https://www.owlposting.com/p/the-optimistic-case-for-protein-foundation-193">An optimistic case for protein foundation model companies</a>.</li>
<li><a href="https://arxiv.org/abs/2310.03789v3">Grokking as a first order phase transition in neural networks</a>. Good example of <a href="https://www.lesswrong.com/posts/M2bs6xCbmc79nwr8j/dmitry-vaintrob-s-shortform?commentId=A8Ziwhts35dgqbz52">mean field theory as a thermodynamic theory of learning</a>.</li>
<li>If you like the items on this list, or <em>especially</em> if you wish the items on this list were better, <a href="mailto:yudhister@berkeley.edu">email me</a>!</li>
</ol>]]></description>
    <pubDate>Wed, 15 Oct 2025 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/links-10-15/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>MDL meets SLT</title>
    <link>https://www.yudhister.me/mdl-slt/</link>
    <description><![CDATA[<p>[paper highlight: <a href="https://arxiv.org/abs/2510.12077v1">Compressibility Measures Complexity: Minimum Description Length Meets Singular Learning Theory</a>]</p>
<p>two major contributions of the paper:</p>
<ul>
<li>theoretically links minimum description length to singular learning theory, in that they prove that for all ground-truth distributions <span class="math inline">\(q\)</span> and <span class="math inline">\(n\)</span> i.i.d samples drawn from <span class="math inline">\(q,\)</span> there exists a two-part code with asymptotic redundancy <span class="math inline">\(R_n = \lambda \log n - (m-1) \log \log n + O_p(1),\)</span> where <span class="math inline">\(\lambda\)</span> is the LLC</li>
<li>experimental results showing LLC variance with model quantization (where quantization is ~roughly a stand-in for compression and LLC measures complexity, so one can study empirical correlations)</li>
</ul>
<p><em>what is a two-part code?</em> admittedly I’m still slightly bamboozled by the MDL formalism they choose, so this will be a mix of hand-wavy intuition and opaque jargon.</p>
<p>Let <span class="math inline">\(q^{(n)} \in \Delta (\mathcal{X}^n)\)</span> be a data-generating distribution over <span class="math inline">\(n\)</span>-sequences drawn from the sample space (token vocabulary) <span class="math inline">\(\mathcal{X}.\)</span> Any distribution <span class="math inline">\(p^{(n)}\)</span> over <span class="math inline">\(\mathcal{X}^n\)</span> induces a <em>code</em> for any sample <span class="math inline">\(\bf{x}^{(n)} \in \mathcal{X}^n,\)</span> where a <em>code</em> is just an associated bitstring for the sample. The bitstring has length <span class="math inline">\(- \log p^{(n)}( \bf{x}^{(n)})\)</span> (the entropy), and the minimum description length principle is essentially that good encodings should seek to minimize the minimum average length of samples. Given i.i.d sampling, the long-run optimal encoding distribution <em>is</em> the ground-truth distribution <span class="math inline">\(q^{(n)},\)</span> and <span class="math inline">\(\text{KL}(q||p)\)</span> has a clean interpretation in this context: the expected excess length per-symbol given by encoding distribution <span class="math inline">\(p\)</span> vs. <span class="math inline">\(q.\)</span></p>
<p>a two-part code is an encoding with two parts: one specifying the encoding distribution (”model”) with respect to a model class, and the other specifying the message (”sample”) given the model. intuition for this setup: imagine a sender and receiver having mutual information over the fact that both will communicate via some language with some grammatical structure, but the structure insufficiently specifies a full language and vocabulary, <em>however</em> they both have a dictionary mapping bitstrings to complete languages that they can coordinate on first before communicating. (there are much better ways of explaining this).</p>
<p>anyway, you want some way of measuring the performance of your encoding in the two-part setting. there’s a quantity called <em>redundancy</em> that measures performance with regards to the underlying data distribution, roughly given by
<span class="math display">\[
R_n = \text{len}([[p]]) + \text{KL}(q || p),
\]</span>
in the average case, where <span class="math inline">\([[p]]\)</span> is your bitstring encoding of your model w.r.t. your model class. a natural way of optimizing this is choosing a <span class="math inline">\(p\)</span> which accurately models <span class="math inline">\(q\)</span> and eating the specification cost. However! you might have a model class <span class="math inline">\(\mathcal{M}\)</span> uniquely unsuited to encoding <span class="math inline">\(q,\)</span> in which case your optimization problem is more interesting.</p>
<p>restating the central theoretical result: there exists a two-part code for any realizable<sup><a href="#1">1</a></sup> data generating distribution <span class="math inline">\(q \in \mathcal{M}\)</span> and dataset <span class="math inline">\(\bf{x}^{(n)}\)</span> sampled i.i.d from <span class="math inline">\(q,\)</span> the asymptotic redundancy is
<span class="math display">\[
R_n = \lambda \log n - (m - 1) \log \log n + O_p(1),
\]</span>
where <span class="math inline">\(\lambda\)</span> is the LLC of <span class="math inline">\(q\)</span> and <span class="math inline">\(m\)</span> is the “multiplicity.”<sup><a href="#1">1</a></sup></p>
<p>it is late and my brain is not quite working, but i don’t see optimality guarantees for this result? the construction is of the flavor “choose codes such that</p>
<p><span class="math display">\[\text{len}([[p^*]]) = \log \frac{\text{Vol}(W)}{V_{p^*_n}(\epsilon)},\]</span></p>
<p>and then this has <span class="math inline">\(R_n\)</span> given above.” (where <span class="math inline">\(p^*\)</span> are the model encodings at the center of <span class="math inline">\(\epsilon\)</span>-balls covering model regions with sufficiently small KL divergence, necessary because discretization is needed to reduce to a set small enough to fully specify with codes). like, this is implicitly sane because <span class="math inline">\(\text{KL}\)</span> <span class="math inline">\(\epsilon\)</span>-balls partition assigns probability proportional to the share of the <span class="math inline">\(\epsilon\)</span>-ball vs. the volume of the entire space, but IDK why is this the optimal encoding or agreement algorithm? <em>mumbles in Jeffrey’s prior</em></p>
<p>a maybe helpful image:</p>
<p><img src="/images/degeneracy-compressibility.png" width="550" alt="pythia-llc" /></p>
<p>I suppose this is why the empirical results are needed. But the empirical results are like “linear relationships between LLC estimates and critical compression thresholds for models up to 7B parameters” where the critical compression thresholds <span class="math inline">\(n_q\)</span> are literally “how many times do I need to quantize the model before the difference in loss exceeds some threshold.” which is cool! but a bit confusing</p>
<p><img src="/images/pythia-quantization.png" width="550" alt="pythia-llc" /></p>
<p>still don’t quite understand the theory behind LLC estimation. MDL and SLT connections are cool though, it would be nice to get some naturality results bc the experimental results are not that convincing by themselves (many patterns replicate this, LLC estimation is an art not a science, and quantizing models arbitrarily and doing inference on them seems like it naturally leads to buggy implementations)</p>
<div id="1" class="footnote-definition">
<sup>1</sup>
<p>see technical conditions in the paper</p>
</div>]]></description>
    <pubDate>Tue, 14 Oct 2025 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/mdl-slt/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Prediction is not Generation</title>
    <link>https://www.yudhister.me/prediction-is-not-generation/</link>
    <description><![CDATA[<p>[a long overdue response to <a href="https://aidanjs.com">Aidan</a> :)]</p>
<p>In ML, generation and prediction are practically synonymous. Your model learns an appropriate, performant compression of your dataset, and somehow such artifacts generate “completions” (broadly construed) with high accuracy.</p>
<p>It’s tempting to then make the leap to <em>man, if I just managed to tokenize the entire past and future of the universe and train a transformer (with infinite compute) to predict the next universe state every Planck time<a href="#fn1" class="footnote-ref" id="fnref1" role="doc-noteref"><sup>1</sup></a> from the universe history up until that point, then it’ll be guaranteed to faithfully represent the true laws of physics somewhere in its weights!</em></p>
<p>I claim this is unclear! Even if the laws of physics were describable by some finite state automata, the optimal predictive representation of a process does not have to necessarily correspond to the optimal generative representation!</p>
<p>Here’s a toy case. Consider the space of all stationary Markov processes generating the symbol set <span class="math inline">\(\{0,1\}.\)</span> Clearly the best way to predict a process like this (given Markovity) is to assign some probability <span class="math inline">\(p\)</span> to <span class="math inline">\(1\)</span> being generated after a <span class="math inline">\(0,\)</span> and some probability <span class="math inline">\(q\)</span> to <span class="math inline">\(0\)</span> being generated after a <span class="math inline">\(1.\)</span> There are two “belief states” of this policy (let’s call them <span class="math inline">\(A\)</span> and <span class="math inline">\(B\)</span>—each corresponding to the “belief” that <span class="math inline">\(0,1\)</span> will be generated<a href="#fn2" class="footnote-ref" id="fnref2" role="doc-noteref"><sup>2</sup></a>) that the reasoner will occupy with probabilities</p>
<p><span class="math display">\[
\mathbb{P}(A) = \frac{1-q}{2-p-q}\, , \, \mathbb{P}(B) = \frac{1-p}{2-p-q}
\]</span>
respectively. The entropy of this two-state system is just the entropy of the stationary distribution (given above), which turns out to be</p>
<p><span class="math display">\[
\begin{align*}
C_\mu &amp;= {-} \mathbb{P}(A) \cdot \log_2 \mathbb{P}(A) - \mathbb{P}(S_1) \cdot \log_2 \mathbb{P}(B) \\\  
&amp;= \frac{q-1}{2-p-q} \log_2 \left(\frac{1-q}{2-p-q}\right) + \frac{p-1}{2-p-q} \log_2 \left( \frac{1-p}{2-p-q} \right).
\end{align*}
\]</span></p>
<p>The key point to remember here is that we’re using the entropy of the stationary state distribution as a measure of “optimality,” in the sense that lower entropy means higher simplicity and as a result it is “more optimal.” It stands to reason that if generation and prediction are “the same,” then it should be impossible to construct a generative process with lower entropy than <span class="math inline">\(C_\mu\)</span> for some values <span class="math inline">\(p,q.\)</span> Right?</p>
<p>Well. Consider <span class="math inline">\(p = q = 0.4,\)</span> and consider the generating process below.</p>
<p><img src="/images/Lohr-model.png" alt="Lohr" width="550"/></p>
<p>You can check for yourself that this process outputs <span class="math inline">\(0 \to 1\)</span> with probability <span class="math inline">\(p,\)</span> and <span class="math inline">\(1 \to 0\)</span> with probability <span class="math inline">\(q\)</span> for <span class="math inline">\(0 \leq p = q \leq 1/2.\)</span> This process has a stationary distribution</p>
<p><span class="math display">\[
\pi = \left[ \frac{1}{2} - p, 2p, \frac{1}{2} - p\right],
\]</span></p>
<p>and its entropy <span class="math inline">\(H[\pi]\)</span> for <span class="math inline">\(p = q = 0.4\)</span> is approximately <span class="math inline">\(0.922,\)</span> less than <span class="math inline">\(C_\mu = 1.\)</span></p>
<p>Have we been hoodwinked? Maybe one should never trust a sentence beginning with “Clearly, . . .” in a mathematical text. Maybe there’s a secret predictive policy that magically has lower entropy for <span class="math inline">\(p \in [0.38, 0.5]\)</span><a href="#fn3" class="footnote-ref" id="fnref3" role="doc-noteref"><sup>3</sup></a> that we’re just missing.</p>
<p>I argue against this. In particular, there is a particular interpretation of “prediction” we’re using here that I claim is simultaneously natural and correct.</p>
<p>Consider an infinite string of tokens <span class="math inline">\(\ldots X_{-2}, X_{-1}, X_0, X_1, X_2, \ldots.\)</span> The Markov property states that <span class="math inline">\(\mathbb{P}(X_0 | X_{-\infty: 0}) = \mathbb{P}(X_0 | X_{-1}):\)</span> that my causal state is fully determined by timestep <span class="math inline">\(T-1,\)</span> and thus the last token output contains all the information I could use to predict the next token output. As an <em>optimal predictor</em>, I want to adhere to the <em>optimal causal policy</em> which is the minimal entropy policy over belief states that can be causally differentiated. In this case, it is the two-state policy <span class="math inline">\(\mu\)</span> with entropy <span class="math inline">\(C_\mu\)</span> above.</p>
<p>Observe that the introduction of causality meaningfully differentiates solely generative policies from predictive ones! We have constructed a lower-entropy generative process by relaxing the assumption that we only rely on meaningfully causally differentiated belief states given the token history. There’s a sense in which this is the fundamental difference between prediction and generation. It remains to be seen how widely this holds, but the two concepts are canonically differentiated.</p>
<p><em>Examples taken from <a href="https://csc.ucdavis.edu/~cmg/papers/gmc.pdf">James et. al.</a>.</em></p>
<section id="footnotes" class="footnotes footnotes-end-of-document" role="doc-endnotes">
<hr />
<ol>
<li id="fn1"><p>Ignoring that the universe doesn’t have a sense of absolute time.<a href="#fnref1" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn2"><p>In general, belief states are not by default interpretable.<a href="#fnref2" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn3"><p>The ranges in which the Lohr model has lower entropy than the predictive model.<a href="#fnref3" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
</ol>
</section>]]></description>
    <pubDate>Mon, 13 Oct 2025 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/prediction-is-not-generation/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Miscellaneous Poetry Drafts</title>
    <link>https://www.yudhister.me/poetry-1/</link>
    <description><![CDATA[<p><strong>I.</strong></p>
<p>a blade of grass hides<br />
minuscule migratory men<br />
Lilliputian fiends</p>
<p><strong>II.</strong></p>
<p>mighty merry rascals<br />
fickle, high off foglefreude<br />
die English skippers</p>
<p><strong>III.</strong></p>
<p>I once beheld Seneca’s estate,<br />
Credulously inspecting his wicker tomb—<br />
Yet Margate Mennons and liced defendants<br />
Both swore by its awkward loom.</p>
<p>My heart gasped and lips shuddered<br />
When, to my utmost surprise<br />
The elderly Roman statesman lay<br />
As mummified nitride.</p>
<p>Tick-tock, goes the clock<br />
Garrulous gyrations too<br />
Gizzardly Gentry, nice surprise<br />
Confiding in a martyr’s womb.</p>
<p>Foiled! the cuckoo’s dead—<br />
Not I, not I, not I!<br />
Lambastation! Aberration!<br />
To defy Nero’s evil eye.</p>
<p><strong>IV.</strong></p>
<p>weed stands stout<br />
thistles, burr<br />
gadolinum kraut<br />
hummus and herb</p>
<p>olden spires bristle, copper-waxed<br />
kelpish tides awash blades of glass<br />
Betty stout, orange’d brass<br />
vermillion mounts, dugong grass</p>
<p>betwixed, witched, yonder<br />
your shivers roll down my spine<br />
I gave you a bouquet of thorned tulips<br />
at sunrise, on Cocoa Beach</p>
<p>the rocket’s red glare, the bombs<br />
bursting over a lackadaiscal mare<br />
I wish Martians dreamt of the stars<br />
alas</p>]]></description>
    <pubDate>Sun, 12 Oct 2025 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/poetry-1/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Scaling Laws for Transfer Learning</title>
    <link>https://www.yudhister.me/scaling-transfer-1/</link>
    <description><![CDATA[<p>Chinchilla scaling posits that</p>
<p><span class="math display">\[
L(N,D) = L_{\infty} + AN^{-\alpha} + BD^{-\beta},
\]</span></p>
<p>where <span class="math inline">\(N\)</span> is the number of parameters in your language model, <span class="math inline">\(D\)</span> is the number of training tokens seen, <span class="math inline">\(A,B,\alpha,\beta, L_{\infty}\)</span> are constants, and <span class="math inline">\(L(N,D)\)</span> is the test loss.</p>
<p>Of course, this analysis is limited:</p>
<ul>
<li>parameters do not hold across architectural shifts: <a href="https://arxiv.org/abs/2501.12370">dense vs. MoE for ex</a>. (h/t <a href="https://kushalthaman.github.io/">Kushal</a> for sending me this paper)</li>
<li>“scale data and model size similarly” is derived from the regime where compute <span class="math inline">\(C \propto ND,\)</span></li>
<li>data repetition may or may not degrade performance in the long-term: it seems like <a href="https://arxiv.org/abs/2305.16264">4x is the limit</a> for traditional autoregressive transformers, but <a href="https://arxiv.org/abs/2507.15857">100x can be useful for diffusion LMs</a></li>
<li><span class="math inline">\(L(N,D)\)</span> is in-distribution test loss, loss often not predictive of downstream task performance, although <a href="https://arxiv.org/abs/2411.12925v1">loss-to-loss predictions across different training distributions are predictable</a></li>
<li><a href="https://epoch.ai/blog/chinchilla-scaling-a-replication-attempt">the original Chinchilla paper likely did their regressions wrong</a></li>
</ul>
<p>Still, it is remarkable that test loss performance is so clearly a function of parameters and dataset size, with little assumptions made about the distributional structure or architectural specifics (this holds across varying depth/width ratios, for instance). I find two questions natural:</p>
<ul>
<li>does scaling hold outside of the cross-entropy pretraining regime?</li>
<li>can we derive scaling relationships for downstream task performance? in particular, how predictable is transfer learning?</li>
</ul>
<p>In 2021, OpenAI <a href="https://arxiv.org/abs/2102.01293">studied the question</a> of “how much more quickly does a pretrained LM achieve low loss on a finetuning dataset than an LM initialized from scratch on the dataset?” (Note pretraining and finetuning on this case are “the same operation”, the objective is still cross-entropy). They find that the “effective data transferred”<a href="#fn1" class="footnote-ref" id="fnref1" role="doc-noteref"><sup>1</sup></a> <span class="math inline">\(D_T\)</span> is described by
<span class="math display">\[
D_T = k(D_F)^\alpha (N)^\beta,
\]</span>
where <span class="math inline">\(D_F\)</span> is the size of the finetuning dataset (in tokens) and <span class="math inline">\(N\)</span> is the number of non-embedding parameters of the model.<a href="#fn2" class="footnote-ref" id="fnref2" role="doc-noteref"><sup>2</sup></a> This is great! Strong evidence of the generality of abstractions the model learns in pretraining (especially given the independence of <span class="math inline">\(\beta\)</span> from the source distribution). However, it doesn’t explicitly tell us about downstream task performance given an external metric.</p>
<p><a href="https://arxiv.org/abs/2411.12925v1">Brandfonbrener et. al. do somewhat better</a>. They derive scaling relationships for train-train, train-test, and test-test loss transfer for models trained on different datasets, which can be expressed as</p>
<p><span class="math display">\[L_i(\hat{f}_j^{N,D}) \approx K \cdot \left( L_k(f_l^{N,D}) - E_{k | l}\right)^\kappa + E_{i|j},\]</span></p>
<p>where you have models <span class="math inline">\(f_j, f_l\)</span> trained on distributions <span class="math inline">\(j,l\)</span> evaluated on distributions <span class="math inline">\(i, k\)</span> and you’re fitting the constants <span class="math inline">\(K, \kappa.\)</span><a href="#fn3" class="footnote-ref" id="fnref3" role="doc-noteref"><sup>3</sup></a> As an example, the case of train-train would be where <span class="math inline">\((i,j) = (0,0)\)</span> and <span class="math inline">\((k, l) = (1,1).\)</span> We pair models by <span class="math inline">\((N,D)\)</span> for coherence. Notably, these laws hold for diverse datasets, but only well in low-loss regimes and when <span class="math inline">\(E_{m|n}\)</span> terms can be well estimated. Still no breaking of the pretraining regime, and no explicit predictions for downstream metric performance!</p>
<p><a href="https://arxiv.org/abs/2507.00885">There’s a meta-analysis out this year that claims that scaling laws are unreliable for dowstream task performance prediction.</a>. Seems correct. Metrics are noisy and don’t have nice algorithmic properties like cross-entropy loss might. Perhaps intriguing is their observation that irregular scaling is (1) common and (2) can occur for cross-entropy on normal tasks and normal LM datasets. <a href="https://proceedings.mlr.press/v202/liu23ao/liu23ao.pdf">This paper claims that larger models &amp; models trained for longer have better downstream task performance even when holding loss constant.</a> Which is an argument for certain training setups &amp; architectures having better inductive biases?</p>
<p>Honestly, I am kind of sad that the extant literature here seems to be tainted by publication bias? I wouldn’t really trust these papers (or the ten others I read writing this), and I want to run the experiments myself. The Tinker API seems good for doing this quickly. I’ll go do that.</p>
<p>(Titular question pending.)</p>
<section id="footnotes" class="footnotes footnotes-end-of-document" role="doc-endnotes">
<hr />
<ol>
<li id="fn1"><p>In essence, the number of tokens that you “save” seeing in finetuning by pretraining.<a href="#fnref1" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn2"><p>Notably <span class="math inline">\(\beta\)</span> only depends on architecture and TARGET distribution (not SOURCE), while <span class="math inline">\(\alpha\)</span> is a rough “distributional proximity” proxy that can be easily estimated.<a href="#fnref2" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn3"><p><span class="math inline">\(E_{m|n}\)</span> is the irreducible loss of a model trained on with infinite compute on distribution <span class="math inline">\(n\)</span> evaluated on distribution <span class="math inline">\(m.\)</span><a href="#fnref3" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
</ol>
</section>]]></description>
    <pubDate>Sat, 11 Oct 2025 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/scaling-transfer-1/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>On Non-Isolated Calls for Structure</title>
    <link>https://www.yudhister.me/safety-cases/</link>
    <description><![CDATA[<p>Safety cases are arguments that AI deployments are safe in some specified context. The context can include restrictions on deployment environments as well as training or deployment protocols. For instance, <a href="https://arxiv.org/abs/2505.03989">the debate safety case</a> only applies to low-stakes deployment environments, requires exploration guarantees on the model, and relies on a debate protocol which avoids obfuscated arguments. Given these assumptions, Buhl et. al. argue for “asymptotic guarantees”—that high performance on alignment objectives during training translate to approximate alignment during deployment. <a href="https://arxiv.org/abs/2501.17315">The control safety case</a> is structurally similar, instead focusing directly on an explicit threat model and concretizing assumptions accordingly.</p>
<p>A naive way of constructing an “alignment portfolio” is simply to make safety cases which adequately cover all deployment environments with the appropriate degree of risk-tolerance. Formal verification for high-stakes SWE deployment, white-box interpretability for monitoring automated alignment researchers, some adapted debate protocol for use in executive decision-making. If the individual arguments are all sound, this works!</p>
<p>What if we introduce some error into the soundness judgements? If every safety case has some epsilon probability of failure, then straightforwardly you should make more safety cases for the scenarios in which alignment properties matter more. But if all your safety cases for non-deceptive automated alignment researchers rely on “white-box interpretability mostly working,” then if this isn’t true you’re still doomed no matter how many safety cases you write!</p>
<p><a href="https://alignment.anthropic.com/2024/safety-cases/">Anthropic’s ASL-4 safety case sketches</a> are not quite this correlated, but only just. [1] relies on white-box methods successfully monitoring deception, [3] relies on guarantees that the pretrained model is not coherently deceptive (likely requiring successful white-box or black-box methods), and [2] still depends on linear activation probes adequately showing that the model cannot distinguish between certain classes of train and test deployments, as well as black-box evaluations providing sufficiently robust guarantees on behavior. These are similar assumptions! These assumptions are all only true in worlds where “models are sufficiently parsimonious such that present-day interpretability techniques and evals can provide rigorous guarantees on good behavior.”</p>
<p>In general, <em>insufficient diversity over the world structure assumed in an alignment portfolio makes the portfolio fragile and irrobust</em>.<a href="#fn1" class="footnote-ref" id="fnref1" role="doc-noteref"><sup>1</sup></a></p>
<p>It is always necessary to make assumptions about world structure when predicting world behavior. A bounded reasoner simulates the world with a local, low-fidelity model based on the reasoner’s accumulated evidence about the world. Some assumptions on world structure are better than others—gravity following an inverse-square law vs. homeopathic remedies curing cancer, for instance.</p>
<p>Considering the structure of one’s structural assumptions is critically important in domains where the world behavior has not been exhibited and it is of importance. Note:</p>
<ul>
<li>The largest scientific breakthroughs are accompanied by structural assumptions about the world breaking. See the atomic bomb, CRISPR, heavier-than-air flight. Fundamentally, these “expand the domain of the possible.” Sometimes, the world structure is discovered first (as in nuclear theory leading to the first controlled chain reaction). Other times, a prototype uncovers the structure (see: penicillin). In both cases, the non-specialist intelligent reasoner understands a different possibility domain before and after.</li>
<li>Top-down searches for structural guarantees must be incredibly judicious in their assumptions, because the vast majority of hypotheses are incorrect. Ex post, the structure is obvious, but ex ante it is not. Consider Newton devoting as much energy to alchemy as the study of gravitation.</li>
<li>If we take the perspective that <a href="https://www.lesswrong.com/posts/nkeYxjdrWBJvwbnTr/an-advent-of-thought">alignment is an infinite problem</a>, there is no good reason to expect that the world structure we can reasonably assume is simple. It might be that it is infinitely complex and is only limited by our current understanding, and that we will recover finer and finer approximations of it as our understanding improves. At each stage of this process we will have to repeat our assumption examination from a roughly equivalent epistemic vantage point of staring into the abyss.</li>
<li>Much of the existential risk from AI development comes from tail risks and black swan events. Mitigating these requires a portfolio of solutions which each rely on decorrelated or independent world models (note this is not a guarantee).</li>
</ul>
<p>Natural corollaries of this observation:</p>
<ul>
<li>we should be explicit about which world models are going into constructing safety cases,</li>
<li>we should be developing independent safety cases for high-stakes deployment situations,</li>
<li>we should emphasize diversity in theoretical agendas to buttress our ability to make such safety cases reliant on disjoint sets of assumptions.</li>
</ul>
<section id="footnotes" class="footnotes footnotes-end-of-document" role="doc-endnotes">
<hr />
<ol>
<li id="fn1"><p>This is a specific instance of the general case of “Swiss cheese models only work when the holes don’t line up in the same worlds,” which is probably not sufficiently justified in this post but is something I believe to be true.<a href="#fnref1" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
</ol>
</section>]]></description>
    <pubDate>Fri, 26 Sep 2025 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/safety-cases/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Diffusion Roundup</title>
    <link>https://www.yudhister.me/diffusion-roundup/</link>
    <description><![CDATA[<p>[1] <strong>Diffusion models seem to outperform traditional autoregressive models in the large data limit on token-prediction tasks.</strong> <a href="#fn1" class="footnote-ref" id="fnref1" role="doc-noteref"><sup>1</sup></a> Autoregressive models are still superior in the low-data/compute-limited regime, and the threshold at which diffusion models become optimal follows a power-law in the dataset size (typically exceeding the Chinchilla threshold by a large margin).<a href="#fn2" class="footnote-ref" id="fnref2" role="doc-noteref"><sup>2</sup></a> Diffusion models also see performance gains under “trivial” data augmentation methods for far longer than autoregressive models (e.g. reordering tokens), and this is plausibly because the generation method is fundamentally non-causal? (Much of the performance gap can be recovered by implementing similar data augmentation methods in the AR case, but it’s unclear if this scales to tasks that require “cognition” in the human sense of the word). Not entirely clear how this translates to better performance on real-world tasks in the data-limited regime; it could be that the compute scaling necessary is simply prohibitive, and it could also be that the implicit curriculum afforded by the de-noising process is simply insufficient at providing reasonable enough signal on difficult tasks.</p>
<p>[2] <strong>Diffusion in-practice probably has the circuit complexity depth constraints of an attention-based transformer.</strong> In the last few years, we’ve seen literature essentially claiming that attention in-practice is limited to modeling circuits in the class TC0 (polynomial width, constant depth Boolean circuit family)<a href="#fn3" class="footnote-ref" id="fnref3" role="doc-noteref"><sup>3</sup></a> Adding chain-of-thought ~roughly increases this to NC1 (although there are some subtleties involving the lack of robustness to input-ordering).<a href="#fn4" class="footnote-ref" id="fnref4" role="doc-noteref"><sup>4</sup></a> There are reasons to expect difficult problems, especially the sorts encountered in long-horizon RL, to require architectures that can internally simulate deep computation. These architectures have been recurrent thus far. However, recurrent architectures fail to adequately leverage the compute parallelism offered by GPUs and have many, many issues with unstable training dynamics, so scaling transformers is a better option. It’s probably not the case that diffusion models can prove an adequate replacement here, but it’s interesting that <a href="https://arxiv.org/abs/2507.12469">a diffusion process with no constraints imposed by a score function can theoretically simulate any Turing-complete process, but when perfectly matching a score function still has the limitations of a TC0 representation</a>. Results in the approximate regime pending.<a href="#fn5" class="footnote-ref" id="fnref5" role="doc-noteref"><sup>5</sup></a></p>
<p>[3] <strong>Diffusion is (kind of) spectral autoregression.</strong><a href="#fn6" class="footnote-ref" id="fnref6" role="doc-noteref"><sup>6</sup></a> There are <a href="https://sander.ai/2024/09/02/spectral-autoregression.html">two</a> <a href="https://www.fabianfalck.com/posts/spectralauto/">brilliant</a> blog-posts on the subject, cumulatively arguing that DDPM has an inductive bias to generating low-frequency features before high-frequency features (in Fourier space; hence the name) but this is not necessarily true of all possible diffusion models (changing the model’s noising schedule to be frequency-agnostic doesn’t degrade performance on CIFAR10 and similar datasets, but not all noising schedules achieve the same performance!). How much does this matter for text-data domains? Audio? Video? Are there correspondences we can make between distributional structure and optimal noising schedules? In algorithmic cases, what does this mean?</p>
<p>I primarily find diffusion models interesting from a theoretical perspective, given that the corresponding SDE literature is rich and there are (potentially) deep connections to be made to modern ML. In particular, I expect we can better understand what feature orderings are optimal, which properties of distributions make them learnable, how much an inductive bias is a property of the model architecture vs. optimization algorithm or other factors, and to what extent recurrence can be represented with parallel architectures. This post should not be taken as definitive; it has not been edited and I welcome feedback.</p>
<section id="footnotes" class="footnotes footnotes-end-of-document" role="doc-endnotes">
<hr />
<ol>
<li id="fn1"><p>This section is summarizing the paper <a href="https://arxiv.org/abs/2507.15857">Diffusion Beats Autoregression in Data-Constrained Settings</a>.<a href="#fnref1" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn2"><p>The metric the authors use is “number of unique tokens”—which is quite strange, given that the vocab size of a model is typically quite limited, and they mention training a 2.3B parameter diffusion model on a 500M unique token dataset. Perhaps they mean just the token size of a dataset with no repeated entries?<a href="#fnref2" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn3"><p>See <a href="https://arxiv.org/abs/2207.00729">The Parallelism Tradeoff: Limitations of Log-Precision Transformers</a>, <a href="https://arxiv.org/abs/2402.09268">Transformers, parallel computation, and logarithmic depth</a>, and <a href="https://arxiv.org/abs/2412.02975">Theoretical limitations of multi-layer Transformer</a>.<a href="#fnref3" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn4"><p>See <a href="https://arxiv.org/abs/2402.12875">Chain of Thought Empowers Transformers to Solve Inherently Serial Problems</a>. CoT/neuralese introducing “effective recurrence” into modern models seems to be important for timeline modeling.<a href="#fnref4" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn5"><p>Reach out if you have thoughts!<a href="#fnref5" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn6"><p>See A Fourier Space Perspective on Diffusion Models.<a href="#fnref6" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
</ol>
</section>]]></description>
    <pubDate>Wed, 24 Sep 2025 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/diffusion-roundup/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Linear Contracts Are Optimally Robust</title>
    <link>https://www.yudhister.me/2025-08-20/</link>
    <description><![CDATA[<p><em>nb: attempting a daily posting cadence. adjust quality priors accordingly</em></p>
<p>Consider the following game:</p>
<ol type="1">
<li>Alice offers a contract <span class="math inline">\(w: \mathcal{Y} \to \mathbb{R}^+\)</span> to Bob.</li>
<li>Bob, knowing his compact action space over lotteries <span class="math inline">\(\mathcal{A} \subseteq \Delta (\mathcal{Y}) \times \mathbb{R}^+,\)</span> chooses action <span class="math inline">\((F,c) \in \mathcal{A},\)</span></li>
<li>The output <span class="math inline">\(y \sim F\)</span> is realized (sampling from the lottery chosen)</li>
<li>Alice receives <span class="math inline">\(y - w(y)\)</span> payoff; Bob receives <span class="math inline">\(w(y) - c\)</span> payoff.</li>
</ol>
<p>Importantly, Alice receives limited information about Bob’s action space (interchangeable with “technology”). What is the optimal contract Alice should give Bob, if she wants to maximize her worst case outcome? (We assume Alice and Bob are rational actors: their dynamics will be given shortly). This is an identical problem to studying the structure of the optimal <span class="math inline">\(w\)</span> in this scenario.</p>
<p><a href="file:///Users/yudhister/Zotero%20ysjk/storage/QX73679W/Carroll%20-%202015%20-%20Robustness%20and%20Linear%20Contracts.pdf">[Car15]</a><a href="#fn1" class="footnote-ref" id="fnref1" role="doc-noteref"><sup>1</sup></a> proves that the optimal <span class="math inline">\(w\)</span> is linear, subject to the following assumptions: <span class="math inline">\(\mathcal{Y} \subset \mathbb{R}^+,\)</span> <span class="math inline">\(\mathcal{A}\)</span> must be compact; Alice (the “principal”) knows <span class="math inline">\(\mathcal{A}_0 \subseteq \mathcal{A}\)</span> possible actions for Bob (the “agent”) such that there exists <span class="math inline">\((F,c) \in \mathcal{A_0}\)</span> such that <span class="math inline">\(\mathbb{E}_F[y]-c &gt;0\)</span> (the principal should have some reason for hiring the agent); <span class="math inline">\(w\)</span> must be continuous.</p>
<p>Bob’s behavior is quite simple, given that Bob has all information. The set of actions <span class="math inline">\((F,c) \in \mathcal{A}\)</span> Bob will consider are those which maximize <span class="math inline">\(\mathbb{E}_F(y) - c.\)</span><a href="#fn2" class="footnote-ref" id="fnref2" role="doc-noteref"><sup>2</sup></a> We denote this by <span class="math inline">\(\mathcal{A}^* (w | \mathcal{A}),\)</span> and we denote by <span class="math inline">\(V_A(w|A)\)</span> the expected payoff of Bob given rational behavior. Alice’s expected payoff is then</p>
<p><span class="math display">\[
V_P(w|\mathcal{A}) = \max_{(F,c) \in \mathcal{A}^*(w|\mathcal{A})} \mathbb{E}_F[y-w(y)],
\]</span></p>
<p>and Alice searches over expected payoffs as</p>
<p><span class="math display">\[
V_P(w) = \inf_{\mathcal{A} \supseteq \mathcal{A}_0} V_P(w|\mathcal{A}).
\]</span>
We are interested in <span class="math inline">\(w\)</span> such that <span class="math inline">\(V_P(w)\)</span> is maximized.</p>
<h2>
optimality in the zero-shot game
</h2>
<p>Motivating example: <span class="math inline">\(w(y) = \alpha y\)</span> always guarantees the principal Alice positive worst-case payoff, for <span class="math inline">\(\alpha \in [0,1]\)</span>. This analysis holds independently of the possible technology <span class="math inline">\(\mathcal{A},\)</span> due to the nontriviality assumption we impose on <span class="math inline">\(\mathcal{A}_0.\)</span></p>
<p>Proof: Rewrite <span class="math inline">\(y - w(y)\)</span> as <span class="math inline">\(w(y)/\alpha - w(y) = \frac{1-\alpha}{\alpha}w(y).\)</span> Lower bound <span class="math inline">\(\mathbb{E}_F[w(y)]\)</span> (the expected payment of Bob the agent) with <span class="math inline">\(\mathbb{E}_F[w(y)] \geq \mathbb{E}_F[w(y)] - c = V_A(w|\mathcal{A})\)</span>, which is <span class="math inline">\(\geq V_A(w|\mathcal{A}_0)\)</span> (because adding more actions to the agent can’t decrease the optimal outcome given <span class="math inline">\(\mathcal{A}_0\)</span>). Combining the two gives</p>
<p><span class="math display">\[\mathbb{E}_F[y-w(y)] \geq \frac{1-\alpha}{\alpha}\mathbb{E}_F[w(y)] \geq \frac{1-\alpha}{\alpha}V_A(w|\mathcal{A}_0),\]</span></p>
<p>which gives <span class="math inline">\(V_P(w) \geq \frac{1-\alpha}{\alpha}V_A(w|\mathcal{A}_0).\)</span> Given the nontrivality assumption <span class="math inline">\(V_A(w|\mathcal{A}_0) &gt; 0,\)</span> this means that this gives Alice a positive lower bound on the worst case outcome independent of the choice of technology <span class="math inline">\(\mathcal{A}!\)</span></p>
<p>Is there a sense in which linear contracts are “the best you can do?” Carroll shows that any contract <span class="math inline">\(w(y)\)</span> can be improved to a linear contract, even if <span class="math inline">\(w(y)\)</span> is pathological. The gist of the argument is as follows: consider the convex hull of the curve <span class="math inline">\(w(y)\)</span> that lies above the value <span class="math inline">\(V_A(w|\mathcal{A}_0).\)</span> Consider the <span class="math inline">\(Q = (y&#39;,w(y&#39;))\)</span> point which minimizes <span class="math inline">\(\mathbb{E}_F[y] - \mathbb{E}_F[w(y)].\)</span> This is the worst case for Alice, the principal. <span class="math inline">\(Q\)</span> will typically be where <span class="math inline">\(V_A(w|\mathcal{A}_0)\)</span> intersects the left side of the convex hull. Note that the line parametrizing the intersecting boundary of this convex hull is itself a contract <span class="math inline">\(w&#39;(y)\)</span> which dominates <span class="math inline">\(w(y)!\)</span> Repeating this process and considering some technical details gives you the optimality result.</p>
<p><img src="/images/carroll_fig1.png" alt="cfg1" width="550"/></p>
<p>The full technical details can be found the paper, and I will not discuss them now. However, I would like to discuss the generalization of this lemma to include more observables to the principal.</p>
<p>Let <span class="math inline">\(z = (z_1, \ldots, z_k)\)</span> range over a compact set <span class="math inline">\(\mathcal{Z} \subseteq \mathbb{R}^k.\)</span> Define a cost function <span class="math inline">\(b: \mathbb{R}^k \to \mathbb{R}^+\)</span> such that actions depend on <span class="math inline">\(b:\)</span> an action is then <span class="math inline">\((F,c)\)</span> such that <span class="math inline">\(F \in \Delta(\mathcal{Z})\)</span> and <span class="math inline">\(c \geq b(\mathbb{E}_F(z)).\)</span> A contract is now a function <span class="math inline">\(w: \mathcal{Z} \to \mathbb{R}^+.\)</span> Changing the definitions of <span class="math inline">\(\mathcal{A}_0, V_A\)</span> appropriately etc., it turns out the optimally robust contract is <em>linear in the observables available to the principal.</em> Precisely, the optimal contract is of the form</p>
<p><span class="math display">\[w(z) = \alpha_1z_1 + \cdots + \alpha_kz_k + \beta\]</span></p>
<p>for real numbers <span class="math inline">\(\alpha_i, \beta.\)</span></p>
<h2>
learnability
</h2>
<p>It seems like the linear optimality result for robust contracts is pretty general and not too sensitive to assumptions: load-bearing here is that <span class="math inline">\(\mathcal{Y}\)</span> has a minimum that we normalize to be zero, some relaxed version of the nontrivality assumption, and that the risk associated with any particular action is quantifiable in a shared manner by both the principal and the agent.<a href="#fn3" class="footnote-ref" id="fnref3" role="doc-noteref"><sup>3</sup></a></p>
<p>One obvious consideration: consider the possibility of unbounded risk to the principal (as suggested in <a href="https://alignmentproject.aisi.gov.uk/research-area/economic-theory-and-game-theory">UK AISI’s Economics and Game Theory research agenda</a>). It is difficult to construct contracts that then robustly protect against these scenarios, even with partial information. What are the minimum viable assumptions necessary to get guarantees in this regime?</p>
<p>Another consideration that I am interested in: this feels very similar to classical bandit problems in RL. Heck, the agent is engaging in the optimal bandit policy given a set of lotteries! Unifying the two literatures (perhaps <a href="https://proceedings.neurips.cc/paper/2021/file/49ef08ad6e7f26d7f200e1b2b9e6e4ac-Paper.pdf">[KZ25]</a> is of interest) might tell us something interesting about certain classes of decision problems.</p>
<p>Also, learnable agents would (I think) perform better than static ones on a kind of mixed-objective performance metric! Perhaps one which mixes expected average and expected worst-case reward, with some weighting. Generally, intuitive restrictions &amp; extensions on this result are things I’m excited about.</p>
<section id="footnotes" class="footnotes footnotes-end-of-document" role="doc-endnotes">
<hr />
<ol>
<li id="fn1"><p>The majority of this post is a distillation of this paper. All credit to Gabriel Carroll.<a href="#fnref1" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn2"><p><span class="math inline">\(\mathcal{A}^* (w | \mathcal{A})\)</span> is guaranteed to be nonempty by continuity and compactness.<a href="#fnref2" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn3"><p>This one in particular has some philosophical implications.<a href="#fnref3" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
</ol>
</section>]]></description>
    <pubDate>Wed, 20 Aug 2025 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/2025-08-20/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Review | Pieces of the Action</title>
    <link>https://www.yudhister.me/2025-08-19/</link>
    <description><![CDATA[<p><em>nb: attempting a daily posting cadence. adjust quality priors accordingly</em></p>
<p>[1] Bush has quite a dim view of the institutional management of British science during WW2. Frequently, he points out that Churchill has too much influence over Cherwell (and it’s Churchill’s fault), he devotes an entire chapter to decrying the archetype of Geoffrey Pyke (“how to mitigate and excise tyros from an institution”), and his only interactions with Churchill were spats over the post-war sharing of nuclear secrets (which caused Churchill to ask FDR to fire him). In general, complaints are that it was overcomplicated, insufficiently meritocratic, and subject to the political whims of the executive. Britishers did not understand the importance of the “engineer.” Of course, he quite likes Britishers on the whole, but there is a sense in which the British effort had negative polarity on exactly the qualities which made the OSRD so effective.</p>
<p>[2] What did make the OSRD effective? Autonomy, resources, collaboration with industry and academics, and a culture which made sure that issues were raised to the correct person, regardless of status. FDR never interfered with its runnings, even when they encompassed the Manhattan Project. Bush himself fielded suggestions on anti-submarine warfare from American hobbyists looking to contribute. Effective managers were essential—people who were well respected, deferred to authority, and could execute with little direction. Beyond that, it seems like Bush himself was essential, if only because of the sheer weight of the interpersonal relationships needed to be cultivated while working in Washington. The book itself is simply a long series of anecdotes involving important people, discussing their moods and motivations. Ultimately, this is how the world runs.</p>
<p>[3] He is proud of the development of the proximity fuze and the mass production of penicillin. Neither would have been possible without intense scientific research as well as the might of American industry being brought to bear. With regards to the modern day, I do believe that this is a lesson to never quite underestimate the potential state capacity of the American nation. Bush himself highlights that the pluralism of technological development in American peacetime is exactly what makes it so powerful during war—the USA can simply generate ideas and implement them at scale much more effectively than any other.</p>
<p>[4] The anecdotes are quite wonderful. I enjoyed his advice on teaching; his discussion of what it meant to be an “inventor”; his admiration of Harry Truman and those in the Roosevelt administration who, despite holding absurd economic views, were still good men; his promotion of steam-powered cars (!); his appreciation of “military men”; and many others. A reminder of a different time.</p>]]></description>
    <pubDate>Tue, 19 Aug 2025 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/2025-08-19/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>GHz momentum computing simulation #1</title>
    <link>https://www.yudhister.me/2025-08-18/</link>
    <description><![CDATA[<p><em>nb: attempting a daily posting cadence as weekly clearly doesn’t work. adjust quality priors accordingly</em></p>
<p>Momentum computing is, as far as I can tell, a reversible computing paradigm which circumvents Landauer’s limit by embedding the memory state transitions of some computing device in a physical system which equilibriates slower than the time it takes to do an individual bit-swap, so that the memory state transitions themselves can store information in their “instantaneous momenta” and subsequently perform bit-swaps with near-zero net work.<a href="#fn1" class="footnote-ref" id="fnref1" role="doc-noteref"><sup>1</sup></a></p>
<p>In particular, one can construct toy theoretical energy potentials which implement a <span class="math inline">\(\Delta W = 0\)</span> Fredkin gate.<a href="#fn2" class="footnote-ref" id="fnref2" role="doc-noteref"><sup>2</sup></a> Consider a particle <span class="math inline">\((x,p)\)</span> in the 1D potential <span class="math inline">\(V_B(x) = \alpha x^4 - \beta x^2.\)</span> The two minimal states are located at <span class="math inline">\(x = \pm \sqrt{\beta / 2\alpha},\)</span> and as transitioning from the <span class="math inline">\(x &lt; 0\)</span> regime to the <span class="math inline">\(x &gt;0\)</span> regime is exponentially prohibitive in the value of <span class="math inline">\(V(0),\)</span> the system “stores” a bit <span class="math inline">\(\{0,1\}\)</span> depending on the sign of the particle’s position.</p>
<p>Now imagine that <span class="math inline">\(V_B\)</span> encodes a thermal bath in which the particle <span class="math inline">\((x,p)\)</span> is embedded in, and assume that the particle’s motion follows harmonic oscillation in the absence of external influence. When the bath is active, the particle’s potential is described by <span class="math inline">\(V_B.\)</span> But when the bath is disengaged, the particle behaves according to <span class="math inline">\(V_H(x) = kx^2/2,\)</span> which induces a trajectory <span class="math inline">\(x(t) = A \cos(t \sqrt{k/m} + \phi),\)</span> which is periodic in time <span class="math inline">\(\tau = 2\pi \sqrt{m/k}.\)</span> Therefore, disengaging the bath for time <span class="math inline">\(\tau/2\)</span> swaps the sign of the particle’s position, effectively performing a bit-swap.</p>
<p>This theoretical “bit-swap” comes at no work cost because there is no change in potential energy from time <span class="math inline">\(0\)</span> to <span class="math inline">\(\tau/2.\)</span><a href="#fn3" class="footnote-ref" id="fnref3" role="doc-noteref"><sup>3</sup></a> However, any physical implementation of this concept must contend with the fact that changing the potentials in a physical system requires energy to be expended, likely in an inefficient manner. How does one get around this? Superconductors!</p>
<h2>
gradiometric flux logic cells
</h2>
<p>The theoretical guarantees above require complete &amp; efficient decoupling of the system from the bath. You can get similar results by simply ensuring that the relevant computational timescale is significantly smaller than the energy flux rate between the system and its bath, so that “from the perspective of the computation” there is no coupling.</p>
<p><a href="http://arxiv.org/abs/2202.07122">[RC22]</a> chooses to implement such a system with <em>gradiometric flux logic cells</em>, a kind of circuit utilizing Josephson junctions designed particularly to withstand global magnetic noise fluctuations [I do not really understand GFLCs very well, that will be a topic for another day’s post].</p>
<p><img src="/images/gradiometric-flux-logic-cell.png" alt="GFLC" width="400"/></p>
<p>With suitable assumptions &amp; parametrizations [such will be the subject of yet another day’s post], the GFLCs follow “significantly underdamped Langevin dynamics”, which can be described with the following equation:
<span class="math display">\[
dv&#39; = -\lambda v&#39;dt&#39; - \theta \partial_{x&#39;}U&#39; + \nu r(t)\sqrt{2dt&#39;}
\]</span>
where the potential <span class="math inline">\(U\)</span> evolves according to
<span class="math display">\[
U&#39;(t&#39;) = (\phi-\phi_x(t&#39;))^2/2  + \gamma(\phi_{dc} - \phi_{xdc}(t&#39;))^2/2 + \beta \cos \phi \cos (\phi_{dc}/2) + \delta \beta \sin \phi \sin (\phi_{dc}/2)
\]</span>
where <span class="math inline">\(x&#39; = (\phi, \phi_{dc}), v&#39; = (\dot{\phi}, \dot{\phi_{dc}})\)</span>, <span class="math inline">\(\phi = (\phi_1 + \phi_2)/2 - \pi,\)</span> <span class="math inline">\(\phi_{dc} = (\phi_2 - \phi_1),\)</span> and <span class="math inline">\(\phi_1, \phi_2\)</span> are the phases of the individual Josephson junctions <span class="math inline">\(I_{c1}, I_{c2}\)</span> in the above figure [I think]. <span class="math inline">\(\phi_{x} = 2\pi \psi_x / \bf{\Phi}_0 - \pi\)</span> and <span class="math inline">\(\phi_{xdc} = 2\pi \psi_{xdc} / \bf{\Phi}_0\)</span> are functions of the external magnetic fluxes <span class="math inline">\(\psi_x, \psi_{xdc}\)</span> applied to the circuit.</p>
<p>The details of this are very interesting, still confusing to me, and this is by no means an exhaustive parametrization of the underlying models. However, below (Fig. 2) showcases that varying <span class="math inline">\(\phi\)</span> and <span class="math inline">\(\phi_{dc}\)</span>, the sum and difference of the Josephson phase parameters, recovers the potential geometry associated with costless bitswaps.</p>
<p><img src="/images/gflc-2.png" alt="GFLC" width="400"/></p>
<h2>
further considerations
</h2>
<ul>
<li>I really want to understand the interface between the theoretical dynamics and the physical implementation better. Why is this theory so substrate independent? Why does it matter that our memory state transitions are modeled by CTHMCs instead of CTMCs? Why are we using superconductors?</li>
<li>How do we actually get efficient circuit modeling of the kind described here? I couldn’t readily find a Github repository associated with the paper, so I want to write my own library and replicate their results. They find that the efficiency of their circuits are largely dependent on “circuit hyperparameters”, and it would be interesting to investigate their structure.</li>
<li>Benchmarks for algorithms that can be implemented with momentum computing and with typical CMOS/transistor logic, and developing simulations that can accurately predict efficiency differences. Still not sure how to think about this! Will absolutely be the topic of a later post.</li>
<li>Fermi estimates of all the physical quantities at play here. What is “one Landauer” at STP? How much does it cost to make a gradiometric flux logic cell? Etc. Etc.</li>
</ul>
<p>All credit goes to the coauthors of the two papers cited in this post.</p>
<section id="footnotes" class="footnotes footnotes-end-of-document" role="doc-endnotes">
<hr />
<ol>
<li id="fn1"><p>This is probably wrong and definitely imprecise, but it reflects my current level of understanding.<a href="#fnref1" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn2"><p>Setting taken from <a href="http://arxiv.org/abs/2010.01152">[RWBC21]</a>.<a href="#fnref2" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn3"><p>Here we describe the one-dimensional case for intuition, but the paper details the Fredkin gate implementation with this method, which requires three-dimensional potentials to encode <span class="math inline">\(101 \leftrightarrow 110\)</span> and No Change otherwise.<a href="#fnref3" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
</ol>
</section>]]></description>
    <pubDate>Mon, 18 Aug 2025 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/2025-08-18/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Notes on RFC 761</title>
    <link>https://www.yudhister.me/rfc-761/</link>
    <description><![CDATA[<blockquote>
<p>TCP implementations should follow a general principle of robustness: be conservative in what you do, be liberal in what you accept from others.</p>
</blockquote>
<p>The original TCP specification is explicitly designed to be agnostic to IP implementation. It’s only supposed to handle byte transfer from application to application, not the specifics of packet delivery between hosts. In practice, this ideal is unattainable<a href="#fn1" class="footnote-ref" id="fnref1" role="doc-noteref"><sup>1</sup></a>, but it points at a deep truth about healthy integration of parts in systems.</p>
<p>Modularity is a natural consequence of system complexification. Internal bottlenecks on information transfer necessitate internal specialization<a href="#fn2" class="footnote-ref" id="fnref2" role="doc-noteref"><sup>2</sup></a>. Dually, effective modularity requires partwise efficiency: judicious outputs and robustness to inputs, through either filtration or error-correction.</p>
<p>Cells have well-defined outputs and boundaries which protect them from harmful inputs. Organs as well. Intuitively, the “conservative output, liberal input” principle could be reformulated as a “specific function, high survivability” dogma which we find exhibited in biological systems.</p>
<p>Admittedly, TCP has more in common with the blood-brain barrier than it does with the liver. But the Internet is special in that the design of transportation organs is centralized while the design of substantive organs is not, and as a result boundary-manufacture is a centralized process. Insofar as the success of biological systems is to be attributed to organ-organ boundaries, those same properties may be reflected in TCP.</p>
<p>As the Internet scaled to tens of thousands of simultaneous hosts operating on the same network, the RFC 761 implementation could no longer support reasonable host to host communication without congestion collapse, requiring updates to the default TCP. Yet modern TCPs are backwards compatible with TCPs from 1980, in part because the abstraction was so well-designed.</p>
<section id="footnotes" class="footnotes footnotes-end-of-document" role="doc-endnotes">
<hr />
<ol>
<li id="fn1"><p>One example is TCP’s checksum operation: it relies on IP address structure, so it had to be slightly modified to accomodate IPv6.<a href="#fnref1" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn2"><p>Eukaryotic protein connectomes have higher EI than prokaryotic ones. As arbitrary protein-protein interaction takes more energy, efficient configurations will exhibit clustering of function.<a href="#fnref2" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
</ol>
</section>]]></description>
    <pubDate>Sat, 07 Jun 2025 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/rfc-761/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Paphos</title>
    <link>https://www.yudhister.me/paphos/</link>
    <description><![CDATA[<p><em>“The first thing you need to know about Cyprus is that everything is Hotel. School is Hotel. Restaurant is Hotel. Home is Hotel.”</em> <a href="#fn1" class="footnote-ref" id="fnref1" role="doc-noteref"><sup>1</sup></a></p>
<p>Leptos Estates owns everything on the island, as well as NUP, so naturally NUP is in a hotel. Because Leptos Estates is in the business of making and running hotels. Given that, it was not <em>that</em> strange to find the former CEO of Yandex giving a talk on AI and mathematics in a ramshackle, moldy hotel in Paphos, but it certainly was not expected.</p>
<p>The talk itself had relatively milquetoast content (at least by scaling standards), but the more interesting anthropological aspect of it has to do with its attendees and post-remarks. Everyone who attended (except me) was Slavic. There were no native Cypriots in the lecture hall.</p>
<p>Part of this is downstream of the ongoing Russification of Cyprus. Yet Paphos is ostensibly one of the two last Greek bastions of the country (the other being Nicosia, the capital), and given the great selection pressures on the listeners it is unlikely that this is the primary contributing factor.</p>
<p>In fact, NUP (Neapolis University Pafos) contains a contingent of self-exiled faculty members from the Steklov Mathematical Institute, who have constructed a remarkable <del>mathematics</del> computer science and AI program in the middle of touristic hell. Students live in hotels in the off-season, and in on-campus dorms during the summer.</p>
<p>I don’t really understand why the lecture was conducted English? No one spoke in anything but Russian afterwards: the Jetbrains developer contingent as well as the students were either Russian, Ukrainian, or Russian Israelis. The course itself is also taught in English, to keep up pretenses I suppose.</p>
<p>Paphos smells like India. I suspect this has to do with the marked lack of certain gasoline additives that decreases its olfactory pungency, or perhaps the shared high humidity. Its cost of living is comparable to that of Western European nations.</p>
<p>Aphrodite’s birthplace is a temple ruin. It is common to utilize the leftover limestone rubble for one’s own purposes.</p>
<section id="footnotes" class="footnotes footnotes-end-of-document" role="doc-endnotes">
<hr />
<ol>
<li id="fn1"><p>No claims are made to this quote’s veracity, although statements to similar effect have certainly been made.<a href="#fnref1" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
</ol>
</section>]]></description>
    <pubDate>Mon, 02 Jun 2025 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/paphos/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Review | Tor: From the Dark Web to the Future of Privacy</title>
    <link>https://www.yudhister.me/collier-tor/</link>
    <description><![CDATA[<p>Very good book. Key points:</p>
<ul>
<li>privacy is of a place, and information should carry the privacy norms of the place in which it was made from place to place</li>
<li>the Navy researchers who made Tor are (1) more like typical academics than we expect, and (2) were very capable of negotiating with their ostensible domestic enemies to get what they wanted</li>
<li>the Tor Project did not, in fact, realize that the Dark Web would metastasize into what it became. This really only became apparent with Chelsea Manning &amp; Wikileaks, Bitcoin, and Ross Ulbricht’s Silk Road</li>
<li>as a result, circa 2013 when various LE agencies wanted to develop “bulk traffic intercepts” (UK’s GCHQ foremost), Tor becames a scapegoat for allowing pedophiles</li>
<li>Tor was kind of dying until Snowden kicked off a new wave of grassroots anti-authoritiarian activists, who wanted to maintain Tor to maintain internet freedom worldwide</li>
<li>this increased “value-orientation” happened in conjunction with major internet outlets (BBC, Facebook, Twitter) starting to host their own onion sites
<blockquote></li>
</ul>
<ol type="1">
<li>We advance human rights by creating and deploying usable anonymity and privacy technologies.</li>
<li>Open and transparent research and tools are key to our success.</li>
<li>Our tools are free to access, use, adapt, and distribute.</li>
<li>We make Tor and related technologies ubiquitous through advocacy and education.</li>
<li>We are honest about the capabilities and limits of Tor and related technologies.</li>
<li>We will never intentionally harm our users.
Tor Social Contract (condensed), August 2016
</blockquote></li>
</ol>
<ul>
<li>Tor still is in active maintenance, and hasn’t achieved wide adoption yet.</li>
<li>they tried really hard to get it integrated in to Firefox, but this failed</li>
<li>apparently Tor is being rewritten in Rust now</li>
<li>500k individuals connected to Tor during the Iranian 2022 summer protests</li>
<li>you can view Tor as an outgrowth of American imperialism, &amp; even libertarian encroachment on the world (can you force libertarianism on other people?)</li>
<li>Tor will continue, hopefully</li>
</ul>]]></description>
    <pubDate>Mon, 12 May 2025 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/collier-tor/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Albums</title>
    <link>https://www.yudhister.me/albums/</link>
    <description><![CDATA[<ul>
<li>Astor Piazzolla, <a href="https://open.spotify.com/album/6NNvUtOmrKH7DlRUfnbx7d?si=l49CfoHlS3-hoVXrDv21VQ">Tango: Zero Hour</a></li>
<li>Javier Perianes, <a href="https://open.spotify.com/album/23tbqfAQEljnAv1QIsOupT?si=Dcg0AG45SwqkgbiL1N-TtA">Debussy: Préludes Book I; Estampes</a></li>
<li>Popol Vuh, <a href="https://open.spotify.com/album/4Gvh60nRaiZhHhlIsJlD42?si=CaqQIIh-QFem-C5wYZrL5g">Hosianna Mantra</a></li>
<li>Captain Beefheart, <a href="https://open.spotify.com/album/4dgAnIHFpnFdSBqpRZheHq?si=6Gpqq6RHROaawmHIAJDnOg">Trout Mask Replica</a></li>
<li>François-Frédéric Guy, <a href="https://open.spotify.com/album/5940qmbpthjoUESqMGuZlR?si=YyeHB4kiSPaMbpUS3y8J9w">Liszt: Harmonies poétiques et religieuses &amp; Sonata in B minor</a></li>
<li>Matti Raekallio, <a href="https://open.spotify.com/album/1AAT6tE49DkszEs1bDeskI?si=SD0wGHjpS_WTvs7GYJlNwQ">Prokofiev: Complete Piano Sonatas / Visions Fugitives</a></li>
<li>Peter Rösel, <a href="https://open.spotify.com/album/6bVmC9ZrxJMRBUEWGUC3eF?si=F0848GQdQBufeuOEwwCIMA">Bach: Busoni Transcriptions</a></li>
<li>Faust, <a href="https://open.spotify.com/album/1ZFS7XZYHmyhTTs5QoZ1xA?si=CXwu7GxNQn6w6sBwirfNMg">Faust</a></li>
<li>KASHIWA Daisuke, <a href="https://open.spotify.com/album/6Wx8t8cw8kF1P3USoiP32h?si=zFcIh-y4QtGej0QwxC-vkg">program music I</a></li>
<li>Venetian Snares, <a href="https://open.spotify.com/album/0bLh9voLnkyqeVVTcxofDd?si=iXwgGml8RHGsoFWP5EgCsA">Rossz Csillag Alatt Született</a></li>
<li>Leonard Bernstein, <a href="https://open.spotify.com/album/0Eu2XkhUwHtEzJKwzZ64D6?si=wA6kZk1_Q6G2by7ZsL0A2Q">The Complete Mahler Symphonies</a></li>
<li>Antti Siirala, <a href="https://open.spotify.com/album/5mAL60i1j6fFOIoznIlUKs?si=e4OMgZsqSnWM8n9XxKzkEw">Beethoven: Piano Sonatas Nos. 30-32</a></li>
<li>Ivo Pogorelich, <a href="https://open.spotify.com/album/5DiCgO6trcxIMjIP8mrUNS?si=k60rmnjaSTKGcOp5jtLmjQ">Ravel: Gaspard de la Nuit / Prokofiev: Piano Sonata No. 6</a></li>
<li>Kazuhito Yamashita, The Complete Suites For Solo Cello BWV 1007-1012 [Guitar Version]</li>
<li>Uncle Chris, <a href="https://open.spotify.com/album/66vV4K8eoBoAAG17iNM5IV?si=laNEvFwRSYa3p8HdxQgmkQ">Uncle Chris</a></li>
<li>Philip Glass, <a href="https://open.spotify.com/album/0I5Te5Oi0Cbes6nwEe4uFV?si=D2mP61kTSB65kf9Qp2kI8Q">Koyaanisqatsi</a></li>
<li>Arthur Rubenstein, <a href="https://open.spotify.com/album/6cWH6TbFuH2ItpQXO4SPDA?si=wTkcmj5ZSwC_8JCy1TSjuw">Chopin: Mazurkas</a></li>
</ul>
<p><em>next week, the blog shall return to its regularly scheduled technical programming</em></p>]]></description>
    <pubDate>Sun, 09 Feb 2025 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/albums/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Items Lost</title>
    <link>https://www.yudhister.me/lost/</link>
    <description><![CDATA[<ul>
<li>Copper brooch with tardigrade &amp; tesseract engravings. Gifted to me by an eco-technologist acting as an avant-garde musician at an Edge Esmeralda closing event. 500 extant copies: if you own one, I would love to meet you.</li>
<li><em>Studies in Hegelian Cosmology</em> by J. M. E. McTaggart. 1903 edition, greenbacked &amp; hardcover &amp; originally archived at Trinity College, Cambridge. “On loan” from the Rhodes Library; saddened by the likely indefinite postponement of return.</li>
<li>U.S. Passport. Visas to Turkiye, India. Entry and exit stamps from U.K., Czechia, France, Germany, Switzerland, Japan, Taiwan, India, Turkiye, Poland, Finland, Ireland, Georgia, Ukraine.</li>
<li>Turkish Antarctic expedition pin, with decorated wooden bird. 17th birthday present from a dear friend of mine.</li>
<li>Framework laptop, 13”. Ran NixOS. Was approaching a faithful representation of my own brain; I lost an extension of myself.</li>
<li>Black Leuchtterm notebook. Maths &amp; rambles &amp; private keys.</li>
<li>Silver necklace with misshapen star. Acquired in a jewelry store in the Mission, originally intended for my partner. Ultimately not for me.</li>
<li>Clothes: checkered flannel shirt, also acquired in the Mission. Partner’s beanie. Foresight hoodie, MATS jacket. Beloved boots.</li>
<li>Bike. Estimated ~$15k new, a kind mechanic gave it to me for free. Was the way I got to school for a while; suspension perfect for mountain biking. Stolen in Healdsburg.</li>
<li>Letters. From S to me, written and drawn in Prague on self-Narrativism; from me to S, written in Taiwan as poetry; from R to me, written in print English in the Queen’s College; from G to me, first on a pink sticky-note and next on a four-inch thumbpad; so, so many between L and I. ESPR/WARP/Atlas/ASPR/Rise notes.</li>
<li>My phone, twice: firstly in Warsaw airport, and secondly in a San Francisco Airbnb. The second was a replacement for the first, however, and I found the first when I went through Warsaw again. Ended up back where I started.</li>
<li>My glasses.</li>
</ul>]]></description>
    <pubDate>Sun, 02 Feb 2025 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/lost/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Review | Capitalism with Chinese Characteristics: Entrepreneurship and the State</title>
    <link>https://www.yudhister.me/capitalism-with-chinese-characteristics/</link>
    <description><![CDATA[<p>Notable:</p>
<ul>
<li>TVEs (township and village enterprises), while often nominally state-owned, were <em>de facto</em> private enterprises, and as such outcompeted SOEs (state-owned enterprises). Rural TVEs were often non-agricultural, typically in the industries of commerce and manufacturing, and survived in large part because of policies allowing for the resurgence of RCCs (rural credit cooperatives) as private lending institutions.</li>
<li>In 1985, RCCs accounted for 76.8 percent of all agricultural loans and 47.8 percent of all loans extended to TVEs. Post Tiananmen Square, RCCs were restricted to solely providing credit for agricultural purposes, curtailing entrepreneurship for the manifest reason that *most entrepreneurs started their business to get out of agriculture.</li>
<li>TVEs (in English) refer to <em>xiangzhen qiye</em> (rural and township enterprise) rather than <em>xiangcun qiye</em> (township and village enterprise). TVEs refer to the entire <em>xiangzhen qiye</em> phenomenon, which includes collective TVEs and straightforward rural private enterprises, while <em>xiangcun qiye</em> just refers to collective TVEs.</li>
<li>Wenzhou Province served as a pioneer and bellwether for the reformist orientation to the “private sector” broadly, and specifically with regards to informal finance. In Guizhou Province (the poorest), fully 68.9% of households had taken informal credit, and 81% of private credit loans were used for production.</li>
<li>Unlike other East Asian economies, the Chinese investment to GDP ratio <em>increased</em> as Chinese GDP increased, such that investment accounted for fully 50% of Chinese GDP in 2005. It can be argued that such obscene investment levels serve as a <em>substitute</em> for entrepreneurship, and would have been unnecessary only if China continued its pseudo-liberal policies of the 1980s.</li>
<li>In fact, such large investments in infrastructure came at the cost of investment in rural education and public health, directly leading to increased illiteracy rates and a marked decrease in improving infant mortality rates. Additionally, productivity growth stagnated.</li>
<li>Considering Shanghai an innovation hub is misleading. Zhejiang and Guangdong surpassed Shanghai in patent grants in the early 1990s, from 0.3x in the mid 1980s, due to their more entrepreneur-favoring policies. (This is especially striking when you note that Shanghai had between 3-6x more research scientists and R&amp;D spending).</li>
<li>Urban entrepreneurs in Yunnan and Shanghai earned similar amounts, when the GDP per capita in Yunnan is one tenth that of Shanghai.</li>
<li>Personal income per capita and GDP per capita were negatively correlated in Shanghai in the 1990s.</li>
<li>India creates (where the present tense refers to ~2008) more value per laborer than China and is better at retaining wealth.</li>
</ul>
<p>Summary of main points given by author:</p>
<blockquote>
<ul>
<li>Explicitly private entrepreneurship in the non-farm sectors developed vigorously and rapidly in rural China during the 1980s.</li>
<li>Financial reforms, again in the rural areas, were substantial in the 1980s, and the Chinese banking system channeled a surprisingly high level of credits to the private sector in the 1980s.</li>
<li>Conventional property rights security was — and still is — problematic, but the security of the proprietor — the person holding the property — increased substantially at the very onset of the economic reforms. The Chinese policy makers in the early 1980s strongly, directly, and self-consciously projected policy credibility and predictability.</li>
<li>The political system, although absent of the normal institutional constraints associated with good governance, became directionally liberal early during the reform era.</li>
</ul>
</blockquote>
On reforms:
<blockquote>
<ul>
<li>The Chinese definition of TVEs refers to their locations of establishments and registration (i.e., businesses located in the rural areas), not their ownership; Western researchers, on the other hand, have come to understand TVEs in terms of their ownership status.</li>
<li>The cognitive gap is huge: As early as 1985, of the 12 million businesses classified as TVEs, 10 million were completely and manifestly private. Almost every single net entrant in the TVE sector between the mid- 1980s and the mid-1990s was a private TVE; thus both the static and dynamic TVE phenomena were substantially private.</li>
<li>Private TVEs were most vibrant in the poorest and the most agricultural provinces of China (and this feature of private TVEs also explains the understatement of their size in the conventional reporting as well as the connections between rural private entrepreneurship and poverty alleviation).</li>
<li>There are reports of privatization of collective TVEs in the early 1980s and large-scale privatizations in the poor provinces.</li>
<li>Rural financial reforms — credit provisions to the private sector and allowing a degree of private entry into financial services — in the 1980s were endorsed by the governor of the central bank and the presidents of the major commercial banks.</li>
<li>Chinese reforms were heavily experimental in nature rather than relying on a blueprint approach, but the outcome of the experimentation was private ownership and financial liberalization.</li>
<li>By the measure of private-sector fixed-asset investments, the most liberal policy epoch, by far, was in the 1980s; in the 1990s, the policy was reversed, and many of the productive rural financial experiments were discontinued.</li>
<li>Rural administrative management was substantially centralized in the 1990s.</li>
<li>Credit constraints on rural entrepreneurship, including private TVEs, rose substantially in the 1990s.</li>
<li>Growth of rural household income in the 1990s was less than half of its growth in the 1980s, and the declining growth in the rural business income was especially pronounced.</li>
<li>The size of government — measured in terms of headcounts of officials and the value of fixed assets it controls — expanded enormously in the 1990s.</li>
<li>The directionally liberal political reforms of the 1980s were discontinued and reversed.</li>
</ul>
</blockquote>
<p>On Shanghai:</p>
<blockquote>
<ul>
<li>Although they are located in the richest market in China, indigenous private-sector businesses in Shanghai are among the smallest in the country, and self-employment business income per capita is about the same in Shanghai as it is in provinces such as Yunnan, where GDP per capita is about 10 to 15 percent of that in Shanghai. (As an illustration of how unusual the above pattern is, imagine finding that self-employment business income per capita in the United States was about the same as that in Turkey.)</li>
<li>The political, regulatory, and financial restrictions on indigenous private entrepreneurship in Shanghai were extreme, as evidenced by the fact that the fixed asset investments by the indigenous private-sector firms peaked in 1985.</li>
<li>The share of labor income — inclusive of proprietor income — to GDP is very low in Shanghai.</li>
<li>Shanghai’s GDP increased massively relative to the national mean, but the household income level relative to the national mean experienced almost no growth.</li>
<li>Although wage income is high in Shanghai, asset income is among the lowest in the country.</li>
<li>Since 2000, the poorest segment of Shanghai’s population has lost income absolutely during a period of double-digit economic growth. Although aspiring to be a high-tech hub of China, the number of annual patent grants in Shanghai decreased substantially relative to that in the more entrepreneurial provinces, such as Zhejiang and Guangdong, in the 1990s.</li>
<li>Shanghai was also corrupt.</li>
</ul>
</blockquote>
On consequences:
<blockquote>
<ul>
<li>Although GDP growth was rapid during both the 1980s and 1990s, household income growth was much faster in the 1980s.</li>
<li>The share of labor income to GDP was rising in the 1980s but declining in the 1990s.</li>
<li>Several studies on total factor productivity (TFP) converged on the finding that TFP growth since the late 1990s has either slowed down from the earlier period or has completely collapsed.</li>
<li>The majority of the much-touted poverty reduction occurred during the short 8 years of the entrepreneurial era (1980-1988) rather than during the long 13 years of the state-led era (1989-2002).</li>
<li>Income disparities worsened substantially in the 1990s, while they initially improved in the 1980s.</li>
<li>Governance problems, such as land grabs and corruption, intensified greatly in the 1990s.</li>
<li>The heavy taxation on the rural areas led to the withdrawal and rising costs of basic government services.</li>
<li>Between 2000 and 2005 the number of illiterate Chinese adults increased by 30 million, reversing decades of trend developments; this development has garnered almost no attention in the West.</li>
<li>The way the Chinese measure adult illiteracy implies that all of this increase was a product of the rural basic education in the 1990s, and this adverse development coincided closely in timing with the intensification of urban bias in the policy model.</li>
</ul>
</blockquote>
<p>misc:</p>
<ul>
<li>urbanization -&gt; centralization of power? Jane Jacobs might have something to say here?</li>
<li>much FDI just allowed for capital to be more efficiently used in China by routing through Hong Kong. See Lenovo</li>
<li>Stiglitz’s perspective on TVEs was just plain wrong?</li>
</ul>]]></description>
    <pubDate>Wed, 15 Jan 2025 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/capitalism-with-chinese-characteristics/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Review | Anglo-Saxon Magic</title>
    <link>https://www.yudhister.me/anglo-saxon-magic/</link>
    <description><![CDATA[<p>Possibly the most comprehensive extant anthology of rituals, especially Anglo-Saxon rituals. It opens with some historical notes, a discussion on the germane characteristics of magic, and applications / motivations of common ritualistic ingredients.</p>
<p>Storms notes that it is incoherent to consider magic as descending from animism, just as it is incoherent to consider religion as descending from animism. Given that magical practices were considered to have effects independent of the effects wrought on the world by spirits or phantoms, the two traditions obviously coexisted rather than being dependent on each other. Additionally:</p>
<blockquote>
<p>Another argument against animism as the explanation of all magic is that the spirits themselves are subject to the power of magic, which would be hard to account for if they were the originators of that power. . . . A form of magic that is spread all over the world is that in which a man is killed by means of an effigy. . . . There is nothing animistic in this form of magic and it is based on the principle that like influences like, and that a thing that has once had contact with another thing remains irrevocably connected with it. Its effect is probably due to suggestion and autosuggestion.</p>
</blockquote>
<p>What is magic?</p>
<blockquote>
<p>In defining magic we have to bear in mind the practical side of magic, that is, the way in which it operates, and the theoretical side, that is, the notions, conceptions and beliefs that are the basis and origin of magical practices. We define magic as the art of employing a personal power that operates in such a way as cannot be perceived by physical sense and that is carred into effect by means of a traditional ritual.</p>
<p>The underlying idea of magic is that of power, force, or strength. Primitive man does not distinguish between ordinary, normal, natural power and extraordinary, abnormal, supernatural or preternatural, magical, spiritual, or even divine power. As Graebener says: “The Australian aborigines do not regard the natural as supernatural, but the supernatural as natural.” A medicine man has not two functions but one function; he does not apply two methods but one method. Curing a patient by magic or by natural means is one and the same thing in the mind of a witch-doctor; he cures a sick man ans there is the end of it.</p>
</blockquote>
<p>It follows, then, that there was no inherent difference between the rules by which normal procedures or magical procedures were meant to work. In fact, Storms claims that originally “all magical practices were simple and straightforward”, and that their opacity was added later purely to enhance mystery amongst onlookers.</p>
<p>Anglo-Saxon magic primarily draws upon Christian and pagan influence (Icelandic, Germanic, Celtic, classical). Woden is one of the only gods frequently mentioned by name in suriving rituals, and distinguishing e.g. Germanic from classical influence is infintely harder than distinguishing Christian and pagan.</p>
<p>Rules for rituals would encompass an entire volume in and of themselves, but it is notable that the more pungent the ingredient the stronger its perceived effect was. From this, you get goat dung as a wound salve.</p>
<p>The earliest instance of an individual using a word with the function of “magic” to describe certain practices was Herodotus describing a class of Persian astronomer-priests. When you consider magic as primarily the domain of primitive peoples, it makes sense that from a civilized perspective one would want to reify it (and subsequently kill it in the process). So, the best way to study rituals is to treat them as a practice rather than the outcome of some established metaphysics.</p>
<p>His primary sources are the Leechbook and the Lacnunga.</p>]]></description>
    <pubDate>Sun, 27 Oct 2024 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/anglo-saxon-magic/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Review | Imperialism, the Highest Stage of Capitalism</title>
    <link>https://www.yudhister.me/lenin-imperialism/</link>
    <description><![CDATA[<p>Concepts featured: natural tendency towards monopolization, power-law distribution of production, virtues of vertical integration, value accretion to speculators, capital oligpolies, capital export.</p>
<p>The basic argument:</p>
<blockquote>
<p>Imperialism emerged as the development and direct continuation of the fundamental characteristics of capitalism in general. But capitalism only became capitalist imperialism at a definite and very high stage of its development, when certain of its fundamental characteristics began to change into their opposites, when the features of the epoch of transition from capitalism to a higher social and economic system had taken shape and revealed themselves in all spheres. <strong>Economically, the main thing in this process is the displacement of capitalist free competition by capitalist monopoly.</strong> Free competition is the basic feature of capitalism, and of commodity production generally; monopoly is the exact opposite of free competition, but we have seen the latter being transformed into monopoly before our eyes, creating large-scale industry and forcing out small industry, replacing large-scale by still larger-scale industry, and carrying concentration of production and capital to the point where out of it has grown and is growing monopoly: cartels, syndicates and trusts, and merging with them, the capital of a dozen or so banks, which manipulate thousands of millions. At the same time the monopolies, which have grown out of free competition, do not eliminate the latter, but exist above it and alongside it, and thereby give rise to a number of very acute, intense antagonisms, frictions and conflicts. Monopoly is the transition from capitalism to a higher system.</p>
</blockquote>
<p>Lenin is surprisingly perceptive. Or, perhaps, his ideology tended to notice inconvenient truths about the “market” economies of the Gilded Age (most of which are downstream of markets having power-law distributions in outcomes) such as the centralization of not just raw material production, but commodity production and capital itself.</p>
<p>Repeatedly, I have seen the biggest flaw of pre-WW2 Marxist analysis to be its inability to predict or even notice the effects of technological innovation on the common man.</p>
<blockquote>
<p>It goes without saying that if capitalism could develop agriculture, which today is everywhere lagging terribly behind industry, if it could raise the living standards of the masses, who in spite of the amazing technical progress are everywhere still half-starved and poverty-stricken, there could be no question of a surplus of capital. This “argument” is very often advanced by the petty-bourgeois critics of capitalism. But if capitalism did these things it would not be capitalism; for both uneven development and a semi-starvation level of existence of the masses are fundamental and inevitable conditions and constitute premises of this mode of production. <em>As long as capitalism remains what it is, surplus capital will be utilised not for the purpose of raising the standard of living of the masses in a given country, for this would mean a decline in profits for the capitalists, but for the purpose of increasing profits by exporting capital abroad to the backward countries.</em></p>
</blockquote>
<p>Sure, the Haber process was incubated and developed on the government’s dime. But BASF then matured and implemented it, massively multiplying crop yields <em>because there was money in it</em>. Only capital-rich organizations can afford to invest in 0-1 jumps, and nations happen to be capital-rich organizations which work for the public benefit. Yet the exact ills of monopolies are also boons: vertical integration and large scale production allows the 1-many innovations to be implemented.</p>
<p>Regardless, companies will take the low-hanging fruit, and the low-hanging fruit in the early 20th century was investing in colonies. Railways, oil, coal, metals, cash crops, etc.. Marx and Engels claim that this results in the “bourgeoisification” of the British working class, as the profits from such foreign investment accrue in Britain rather than South Africa, and that British labor unions were pro-imperialist. This seems to be broadly correct.</p>
<p>Capital as export is a powerful force:</p>
<blockquote>
<p>In 1904, Great Britain had 50 colonial banks with 2,279 branches (in 1910 there were 72 banks with 5,449 branches), France had 20 with 136 branches; Holland, 16 with 68 branches; and Germany had “only” 13 with 70 branches.68 The American capitalists, in their turn, are jealous of the English and German: “In South America,” they complained in 1915, “five German banks have forty branches and five British banks have seventy branches…. Britain and Germany have invested in Argentina, Brazil, and Uruguay in the last twenty-five years approximately four thousand million dollars, and as a result together enjoy <em>46 per cent of the total trade of these three countries.</em>”</p>
</blockquote>
<p>He also makes the argument that the cause of net immigration to the colonial powers rather than net emigration from them is that such profit accruement decreases the incentives to leave:</p>
<blockquote>
<p>One of the special features of imperialism connected with the facts I am describing, is the decline in emigration from imperialist countries and the increase in immigration into these countries from the more backward countries where lower wages are paid. As Hobson observes, emigration from Great Britain has been declining since 1884. In that year the number of emigrants was 242,000, while in 1900, the number was 169,000. Emigration from Germany reached the highest point between 1881 and 1890, with a total of 1,453,000 emigrants. In the course of the following two decades, it fell to 544,000 and to 341,000. On the other hand, there was an increase in the number of workers entering Germany from Austria, Italy, Russia and other countries. According to the 1907 census, there were 1,342,294 foreigners in Germany, of whom 440,800 were industrial workers and 257,329 agricultural workers. In France, the workers employed in the mining industry are, “in great part”, foreigners: Poles, Italians and Spaniards. In the United States, immigrants from Eastern and Southern Europe are engaged in the most poorly paid jobs, while American workers provide the highest percentage of overseers or of the better-paid workers. Imperialism has the tendency to create privileged sections also among the workers, and to detach them from the broad masses of the proletariat.</p>
</blockquote>
<p>Centering the <em>monopoly</em> as simultaneously alien to the free market and yet the inevitable result of a free market is particularly poignant, I feel. His other analyses are interesting from a historical perspective, but without intimate knowledge of the context they should not be wholly trusted.My translation was particularly good. Quite happy with it.</p>]]></description>
    <pubDate>Wed, 23 Oct 2024 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/lenin-imperialism/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Chemical Turing Machines</title>
    <link>https://www.yudhister.me/chemical-turing-machines/</link>
    <description><![CDATA[<p>Finite state automata (FSA) can be modeled with reactions of the form <span class="math inline">\(A + B \to C + D.\)</span> FSAs operate over regular languages, so our job is to find some reaction which corresponds to determining whether or not a given “word” (sequence of inputs to the reaction) is a member of the language.</p>
<p>Generally, we will be associating languages of various grammars in the Chomsky hierarchy to certain combinations of “aliquots” added to a one-pot reaction, and in this case we want our aliquots to be potassium iodide and silver nitride. Take the language over the alphabet <span class="math inline">\(\{a,b\}\)</span> consisting of all words with at least one <span class="math inline">\(a\)</span> and one <span class="math inline">\(b.\)</span> Now associate <span class="math inline">\(a\)</span> with some part of <span class="math inline">\(\text{KIO}_3\)</span> and <span class="math inline">\(b\)</span> with some part of <span class="math inline">\(\text{AgNO}_3.\)</span> Then, the reaction
<span class="math display">\[
\text{KIO}_3 + \text{AgNO}_3 \to \text{AgIO}_3 (\text{s}) + \text{KNO}_3
\]</span>
only occurs when both of the reactants are present in solution, so the word is in the language <em>if and only if silver iodide is present.</em> (Or, equivalently, heat is released).</p>
<p>Type-2 grammars consist of languages that can be modeled with pushdown automatas, which differ from FSAs in that they have a stack that can store strings of arbitrary sizes. We call these languages “context-free languages”, and the reactions which we associate to context-free languages are those with intermediaries. Again, because of automata equivalence, we can consider the simple case of the Dyck language: the collection of parentheses-strings that never contain more closed parentheses than open parentheses at any <span class="math inline">\(i\)</span> and contain exactly equal amounts of closed and open parentheses at <span class="math inline">\(i=n.\)</span></p>
<p>We associate this with the <span class="math inline">\(pH\)</span> reaction of sodium hydroxide and acetic acid (vinegar), with the amounts of each aliquot normalized to create identical disturbances in the <span class="math inline">\(pH\)</span> of the solution. Note that as <span class="math inline">\(pH\)</span> indicator aliquot is present at the beginning and end of the reaction (we associate it with the start-and-end token), the aliquot serves as the intermediary (the “stack”, if you will). So, if <span class="math inline">\(pH \geq \text{midpoint } pH\)</span> throughout the reaction, but is <span class="math inline">\(\text{midpoint } pH\)</span> at the end, the reactor accepts the word. If not, it does not.</p>
<p>Incidentally, you can interpret this as the <em>enthalpy yield</em> <span class="math inline">\(Y_{\Delta H} (\%)\)</span> of the computation, defined as
<span class="math display">\[
Y_{\Delta H} (\%) = \frac{\text{reaction heat during computation}}{\text{formation heat of input string}} \times 100.
\]</span>
Dyck words <em>maximize</em> the enthalpy yield, whereas all other input sequences with imbalanced numbers of parentheses have lower enthalpy yields. Implication: all PDAs are doing something like “enthalpy maximization” in their computation. Couldn’t find a good reference or exposition here, but something to look into.</p>
<p>How do we model Turing machines? You can think of a Turing machine as a “two-stack” PDA, where each stack corresponds to moving left or right on the tape. Physically, this implies that we want to model TMs with a reaction with at least two interdependent intermediaries, and we want it to be “expressive” enough to model “non-linearities”. Oscillatory redox reactions are a natural choice, of which the Belousov-Zhabotinsky (BZ) reaction is the most famous.</p>
<p>A typical BZ reaction involves the combination of sodium bromate and malonic acid, with the main structure as follows:
<span class="math display">\[
3\text{BrO}_3^- + 3\text{CH}_2(\text{COOH})_2 + 3\text{H}^+ \to 3\text{BrCH}(\text{COOH})_2 + 4\text{CO}_2 + 2\text{HCOOH} + 5\text{H}_2\text{O}.
\]</span></p>
<p>BZ reactions have <em>a ton</em> of macro-structure. Color changes as a function of the amount of oxidized catalyst, the proportions of the reactants and products fluctuate periodically, and even spatial patterns emerge from micro-heterogeneity in concentrations (e.g. reaction-diffusion waves, Pack patterns). These properties are incredibly interesting in and of themselves, but all we need for modeling TMs is that the reaction is sensitive to the addition of small amounts of aliquot.</p>
<p>Consider the language <span class="math inline">\(L_3 = \{a^nb^nc^n \mid n \geq 0\}.\)</span> Dueñas-Díez and Pérez-Mercader associate the letter <span class="math inline">\(a\)</span> with sodium bromate and <span class="math inline">\(b\)</span> with malonic acid. <span class="math inline">\(c\)</span> must somehow be dependent on the concentrations of <span class="math inline">\(a\)</span> and <span class="math inline">\(b,\)</span> so we associate <span class="math inline">\(c\)</span> with the <span class="math inline">\(pH\)</span> of the one-pot reactor, which we can read with sodium hydroxide. An aliquot of the rubidium catalyst maps to the start-and-end token.</p>
<p>Oscillation frequency <span class="math inline">\(f\)</span> is proportional to <span class="math inline">\([\text{BrO}_3]^\alpha \times [\text{CH}_2(\text{COOH})_2]^{\beta} \times [\text{NaOH}]^{-\gamma},\)</span> but it can also be modeled as a nonlinear function of the difference between the maximum redox value of the reaction and the mean redox value of a given oscillation, that is:
<span class="math display">\[
D = V_{\text{max}} + \left( V_T + \frac{V_P - V_T}{2}\right),
\]</span>
where <span class="math inline">\(V_T\)</span> and <span class="math inline">\(V_P\)</span> are the trough and peak potentials, respectively, and <span class="math inline">\(V_\text{max}\)</span> is the maximum potential. Ultimately, the final frequency of the reaction can be modeled as a quadratic in <span class="math inline">\(D_{\#}\)</span> to high-precision (<span class="math inline">\(\#\)</span> denotes the start-and-end token, so it can be taken to be the last timestep in reaction coordinates).</p>
<p>What actually allows word-by-word identification though, is the sensitivity of the oscillatory patterns to the concentrations of specific intermediaries:</p>
<blockquote>
<p>The various “out-of-order” signatures for words not in <span class="math inline">\(L_3\)</span> can be explained as follows. Each symbol has an associated distinct pathway in the reaction network. Hence, if the aliquot added is for the same symbol as the previous one, the pathway is not changed but reinforced. In contrast, when the aliquot is different, the reaction is shifted from one dominant pathway to another pathway, thus reconfiguring the key intermediate concentrations and, in turn, leading to distinctive changes in the oscillatory patterns. The change from one pathway, say 1, to say pathway 2 impacts the oscillations differently than going from pathway 2 to pathway 1. This is what allows the machine to give unique distinctive behaviors for out-of-order substrings.<a href="#fn1" class="footnote-ref" id="fnref1" role="doc-noteref"><sup>1</sup></a></p>
</blockquote>
<p>Thermodynamically, characterizing word acceptance is a little bit more involved than that of PDAs or FSAs, but it can still be done. Define the <em>area</em> of a word as
<span class="math display">\[
A^{\text{Word}} = V_{\text{max}} + \tau&#39; - \int_{t_{\#} + 30}^{t_{\#} + \tau} V_\text{osc}(t) \, dt,
\]</span>
where <span class="math inline">\(t_{\#}\)</span> is the time in reaction coordinates where the end token is added, <span class="math inline">\(\tau&#39;\)</span> is the time interval between symbols, <span class="math inline">\(V_\text{max}\)</span> is the maximum redox potential, and <span class="math inline">\(V_\text{osc}\)</span> is the measured redox potential by the Nerst equation
<span class="math display">\[
V_\text{osc} = V_0 + \frac{RT}{nF} \ln \left( \frac{[Ru(bpy)^{3+}_{3}]}{[Ru(bpy)^{2+}_{3}]} \right),
\]</span>
where <span class="math inline">\(Ru(bpy)^{3+}_{3}\)</span> and <span class="math inline">\(Ru(bpy)^{2+}_{3}\)</span> are the concentrations of the oxidized and reduced catalyst of the BZ reaction, respectively. Now, the Gibbs free energy can be related to the redox potential as so:
<span class="math display">\[
\Delta G_\text{osc} = -nFV_\text{osc},
\]</span>
so the area of a word can be rewritten in terms of the free energy as
<span class="math display">\[
A^{\text{Word}} = - \frac{1}{n_eF} \left( \Delta G &#39; \times \tau &#39; - \int_{t_{\#} + 30}^{t_{\#} + \tau} \Delta G_\text{osc}(t) dt\right).
\]</span>
Accepted words all have some constant value of <span class="math inline">\(A^{\text{Word}},\)</span> while rejected words have a value that is dependent on the word.</p>
<p><span class="math inline">\(L_3\)</span> is a context-sensitive language, so it is only a member of the Type-1 grammar not the Type-0 grammar. However, for our purposes (realizing some practical implementation of a TM) it is roughly equivalent, as any finite TM can be realized as a two-stack PDA, and this models a two-stack PDA quite well.</p>
<section id="footnotes" class="footnotes footnotes-end-of-document" role="doc-endnotes">
<hr />
<ol>
<li id="fn1"><p>Dueñas-Díez, M., &amp; Pérez-Mercader, J. (2019). How Chemistry Computes: Language Recognition by Non-Biochemical Chemical Automata. From Finite Automata to Turing Machines. iScience, 19, 514-526. <a href="https://doi.org/10.1016/j.isci.2019.08.007">https://doi.org/10.1016/j.isci.2019.08.007</a><a href="#fnref1" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
</ol>
</section>]]></description>
    <pubDate>Mon, 21 Oct 2024 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/chemical-turing-machines/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Review | The Dialectic of Sex: The Case for Feminist Revolution</title>
    <link>https://www.yudhister.me/dialectic-of-sex/</link>
    <description><![CDATA[<p>Broadly, I see three separate threads in this work: an attempt to situate second-wave feminism in a historical context, a pseudo-rehabilitation of Freudianism in service of the sexual dialectic, and an argument for the necessity of reproductive substitutes to achieve true equality.</p>
<p>The first of these, while interesting, is not something I have much to say about. The second primarily exists to justify the third—“exactly because Freud was correct in identifying the psychosexual underpinnings of society,<a href="#fn1" class="footnote-ref" id="fnref1" role="doc-noteref"><sup>1</sup></a> then freedom can only be achieved by eliminating these shackles on mankind.” The third germinated the cyberfeminist movement of the 1990s, which itself spawned CCRU and modern accelerationism (via Sadie Plant).</p>
<p>If you adopt this framing, Firestone’s choice of the dialectic as a <em>structure</em> is in large part pragmatic, given she is trying to replicate Marx’s totalizing analysis of class but as applied to sex. Adopting Freudianism is necessary to ensure that the nature of sex-oppresion <em>subsumes</em> that of class-oppression by establishing exploitation within a nuclear family as a more fundamental primitive than exploitation in the workplace. Race-oppresion is dealt with similarly.<a href="#fn2" class="footnote-ref" id="fnref2" role="doc-noteref"><sup>2</sup></a></p>
<p>She is not kind to Western family structure. In a patriarchy, she argues, oppression of women and children are fundamentally intertwined. Both are forced to be physically dependent, sexually repressed, repressed in the family, and repressed in society. Even a mother’s love is borne out of a shared helplessness. <a href="#fn3" class="footnote-ref" id="fnref3" role="doc-noteref"><sup>3</sup></a></p>
<p>She is even less kind to love. <em>“For love, perhaps even more than child-bearing, is the pivot of women’s oppression today.”</em> Why? Because love allows male culture to parasitically feed off of the emotional strength of women. What should be a love between equals is perverted by its political context and the inevitable power dynamic between husband and wife. Regardless, men can’t love. Men are <em>incapable of loving</em>.<a href="#fn4" class="footnote-ref" id="fnref4" role="doc-noteref"><sup>4</sup></a></p>
<p>The solution? Free women from the “tyranny of reproduction” with artificial wombs and joint responsibility of the sexes for child-rearing. Give women and children political autonomy via economic independence. Completely integrate women and children into society, and give women and children sexual freedom.<a href="#fn5" class="footnote-ref" id="fnref5" role="doc-noteref"><sup>5</sup></a></p>
<p>This “feminist revolution” she conceptualizes is similar in nature to the predicted uprising of the proles, but instead initialized by “cybernetic” innovation and a population explosion. “Cybernetics” (what we would today call AI and automation) would simultaneously eliminate the need for a “transient workforce” (mostly women) and the need for house-labor. The population explosion would necessitate some form of population control, which ought take the place of artificial reproduction. Ergo, the fundamentals would be in place for a feminist revolution.</p>
<p>I love this book. It bites bullets.<a href="#fn6" class="footnote-ref" id="fnref6" role="doc-noteref"><sup>6</sup></a> It has novel conceptual insights. It has truth to it. Her intellectual descendants were better off for her having written this, and it gives a transcendent vision rather than an immanent one. She even gives a blueprint for her utopia.</p>
<h2>
Quotes
</h2>
<section id="footnotes" class="footnotes footnotes-end-of-document" role="doc-endnotes">
<hr />
<ol>
<li id="fn1"><blockquote>
<p>Other such examples are abundant, but I have made my point: with a feminist analysis the whole structure of Freudianism – for the first time – makes thorough sense, clarifying such important related areas as homosexuality, even the nature of the repressive incest taboo itself – two causally related subjects which have been laboured for a long time with little unanimity. We can understand them, finally, only as symptoms of the power psychology created by the family.</p>
</blockquote>
<a href="#fnref1" class="footnote-back" role="doc-backlink">↩︎</a></li>
<li id="fn2"><blockquote>
<p>Like sexism in the individual psyche, we can fully understand racism only in terms of the power hierarchies of the family: in the Biblical sense, the races are no more than the various parents and siblings of the Family of Man; and as in the development of sexual classes, the physiological distinction of race became important culturally only due to the unequal distribution of power. <em>Thus, racism is sexism extended.</em></p>
</blockquote>
<a href="#fnref2" class="footnote-back" role="doc-backlink">↩︎</a></li>
<li id="fn3"><blockquote>
<p>The mother who wants to kill her child for what she has had to sacrifice for it (a common desire) learns to love that same child only when she understands that it is as helpless, as oppressed as she is, and by the same oppressor: then her hatred is directed outwards, and ‘mother-love’ is born.</p>
</blockquote>
<a href="#fnref3" class="footnote-back" role="doc-backlink">↩︎</a></li>
<li id="fn4"><blockquote>
<p>It is dangerous to feel sorry for one’s oppressor – women are especially prone to this failing – but I am tempted to do it in this case. Being unable to love is hell. This is the way it proceeds: as soon as the man feels any pressure from the other partner to commit himself, he panics. . .</p>
</blockquote>
<a href="#fnref4" class="footnote-back" role="doc-backlink">↩︎</a></li>
<li id="fn5"><blockquote>
<p>But in our new society, humanity could finally revert to its natural polymorphous sexuality – all forms of sexuality would be allowed and indulged. The fully sexuate mind, realized in the past in only a few individuals (survivors), would become universal. Artificial cultural achievement would no longer be the only avenue to sexuate self-realization: one could now realize oneself fully, simply in the process of being and acting.</p>
</blockquote>
<a href="#fnref5" class="footnote-back" role="doc-backlink">↩︎</a></li>
<li id="fn6"><blockquote>
<p>In this view, the later Russian reinstitution of the nuclear family system is seen as a last-ditch attempt to salvage humanist values – privacy, individualism, love, etc., by then rapidly disappearing.</p>
<p>But it is the reverse: <em>the failure of the Russian Revolution to achieve the classless society is traceable to its half-hearted attempts to eliminate the family and sexual repression.</em> This failure, in turn, was due to the limitations of a male-biased revolutionary analysis based on economic class alone, one that failed to take the family fully into account even in its function as an economic unit. By the same token, <em>all socialist revolutions to date have been or will be failures for precisely these reasons.</em></p>
</blockquote>
<a href="#fnref6" class="footnote-back" role="doc-backlink">↩︎</a></li>
</ol>
</section>]]></description>
    <pubDate>Sun, 20 Oct 2024 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/dialectic-of-sex/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Species as Canonical Referents of Super-Organisms</title>
    <link>https://www.yudhister.me/species/</link>
    <description><![CDATA[<p>A species is a reproductively isolated population. In essence, it consists of organisms which can only breed with each other, so its ability to self-replicate is entirely self-contained. In practice, the abstraction only applies well to macroflora and macrofauna, which is still enough to inform our intuitions of super-organismal interaction.</p>
<p>Interspecific interactions can frequently be modeled by considering the relevant species as agents in their own right. Agents motivated by self-sustention to acquire resources, preserve the health of their subagents, and bargain or compete with others on the same playing field as themselves. Parasitism, predation, pollination—all organismal interactions generalizable to super-organismal interactions.</p>
<p>Optimization of the genome does not occur at the level of the organism, nor does it occur at the level of the tribe. It occurs on the level of the genome, and selects for genes which encode traits which are more fit. From this perspective, it makes sense for “species” to be a natural abstraction. Yet, I claim there are properties which species have that make them particularly nice examples of super-organisms in action. Namely:</p>
<ul>
<li>Boundaries between species are clear and well-defined, due to reproductive isolation;</li>
<li>Competitive dynamics between species are natural to consider, rather than having to move up or down a vertical hierarchy;</li>
<li>The “intentional stance”, when applied to species, is simple: reproduction.</li>
</ul>
<p>However, it is precisely because species have such nice properties that we should be incredibly cautious when using them as intuition pumps for other kinds of super-organisms, such as nation-states, companies, or egregores. For instance:</p>
<ul>
<li>Boundaries between nation-states and companies are relatively straightforward to define (determined by citizenship or residency and employment, respectively). Boundaries between egregores are . . . complicated, to say the least.<a href="#fn1" class="footnote-ref" id="fnref1" role="doc-noteref"><sup>1</sup></a></li>
<li>Company competition is generally modelable with agent-agent dynamics, and so is nation-state competition. But the act of “merging” (via acquisition, immigration, etc.) is available to them in a way that it is not to species. (Again, egregores are complicated . . .)</li>
<li>The goal of a company is to maximize shareholder value. The goal of a nation-state is . . . to provide value to its citizens? The “goal” of an egregore is ostensibly to self-perpetuate and . . . fullfill whichever values it wants to fulfill.<a href="#fn2" class="footnote-ref" id="fnref2" role="doc-noteref"><sup>2</sup></a></li>
</ul>
<p>These “issues” are downstream from horizontal boundaries between other super-organisms we want to consider being less strong than the divides between idealized species. While Schelling was able to develop doctines of mutually-assured destruction for Soviet-American relations, many other nation-state interactions are heavily mediated by immigration and economic intertwinement. It makes less sense to separate China and America than it does to separate foxes and rabbits.</p>
<p>Don’t species run into the same issues as well? Humans are all members of one species, and we manage to have absurd amounts of intraspecial conflict. Similarly, tribal dynamics in various populations are often net negative for the population as a whole. Why shall we uphold species as the canonical referent for superorganisms?</p>
<p>Species are self-sustaining and isolated. The platonic ideal of a species would not only be reproductively isolated, but also resource isolated, in that the only use for the resources which organisms of a species would need to thrive were ones which were unusable for any other purpose. Horizontal differentiation is necessary to generalize agent modeling to systems larger than ourselves, and species possess a kind of horizontal differentiation which is important and powerful.</p>
<p>A corollary of this observation is that insofar as our intuitions for “superorganismal interaction” are based on species-to-species interaction, they should be tuned to the extent to which the superorganisms we have in mind are similar to species. AI-human interaction in worlds where AIs have completely different hardware substrates to humans are notably distinct from ones in which humans have high-bandwidth implants and <a href="https://www.lesswrong.com/posts/jTiSWHKAtnyA723LE/overview-of-strong-human-intelligence-amplification-methods">absurd cognitive enhancement</a>, so they can engage in <a href="https://www.alignmentforum.org/posts/bxt7uCiHam4QXrQAA/cyborgism">more symbiotic relationships</a>.</p>
<p>I would be interested in fleshing out these ideas more rigorously, either in the form of case studies or via a debate. If you are interested, feel free to reach out.</p>
<p><em>Crossposted to <a href="https://www.lesswrong.com/posts/hrcYTMyjkHzwxzPdA/species-as-canonical-referents-of-super-organisms">LessWrong</a>.</em></p>
<section id="footnotes" class="footnotes footnotes-end-of-document" role="doc-endnotes">
<hr />
<ol>
<li id="fn1"><p>One way to establish a boundary between two categories is to define properties which apply to some class of objects which could be sorted into one of the two buckets. But what is the “class of objects” which egregores encompass?! Shall we define a “unit meme” now?<a href="#fnref1" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
<li id="fn2"><p>I’m aware I’m not fully doing justice to egregores here. I still include them as an example of a “superorganism” because they do describe something incredibly powerful. E.g., explaining phenomena where individuals acting in service of an ideology collectively contravene their own interests.<a href="#fnref2" class="footnote-back" role="doc-backlink">↩︎</a></p></li>
</ol>
</section>]]></description>
    <pubDate>Thu, 17 Oct 2024 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/species/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Probabilistic Logic &lt;=&gt; Reflective Oracles?</title>
    <link>https://www.yudhister.me/fullstack-cooperation/</link>
    <description><![CDATA[<p>The Probabilistic Payor’s Lemma implies the following cooperation strategy:</p>
<p>Let <span class="math inline">\(A_{1}, \ldots, A_{n}\)</span> be agents in a multiplayer Prisoner’s Dilemma, with the ability to return either ‘Cooperate’ or ‘Defect’ (which we model as the agents being logical statements resolving to either ‘True’ or ‘False’). Each <span class="math inline">\(A_{i}\)</span> behaves as follows:</p>
<p><span class="math display">\[ 
\, \vdash \Box_{p_{i}} \left( \Box_{\max \{p_{1},\ldots, p_{n}\}}\bigwedge_{k=1}^n A_{k} \to \bigwedge_{k=1}^n A_{k} \right) \to A_{i}
\]</span></p>
<p>Where <span class="math inline">\(p_i\)</span> represents each individual agents’ threshold for cooperation (as a probability in <span class="math inline">\([0,1]\)</span>), <span class="math inline">\(\Box_p \, \phi\)</span> returns True if credence in the statement <span class="math inline">\(\phi\)</span> is greater than <span class="math inline">\(p,\)</span> and the conjunction of <span class="math inline">\(A_{1}, \ldots, A_{n}\)</span> represents ‘everyone cooperates’. Then, by the PPL, all agents cooperate, provided that all <span class="math inline">\(\mathbb{P}_{A_{i}}\)</span> give credence to the cooperation statement greater than each and every <span class="math inline">\(A_{i}\)</span>’s individual thresholds for cooperation.</p>
<p>This formulation is desirable for a number of reasons: firstly, the Payor’s Lemma is much simpler to prove than Lob’s Theorem, and doesn’t carry with it the same strange consequences as a result of asserting an arbitrary modal-fixedpoint; second, when we relax the necessitation requirement from ‘provability’ to ‘belief’, this gives us behavior much more similar to how agents actually I read it as it emphasizing the notion of ‘evidence’ being important.</p>
<p>However, the consistency of this ‘p-belief’ modal operator rests on the self-referential probabilistic logic proposed by Christiano 2012, which, while being consistent, has a few undesirable properties: the distribution over sentences automatically assigns probability 1 to all True statements and 0 to all False ones (meaning it can only really model uncertainty for statements not provable within the system).</p>
<p>I propose that we can transfer the intuitions we have from probabilistic modal logic to a setting where ‘p-belief’ is analogous to calling a ‘reflective oracle’, and this system gets us similar (or identical) properties of cooperation.</p>
<h2>
Oracles
</h2>
<p>A <em>probabilistic oracle</em> <span class="math inline">\(O\)</span> is a function from <span class="math inline">\(\mathbb{N} \to [0,1]^\mathbb{N}.\)</span> Here, its domain is meant to represent an indexing of <em>probabilistic oracle machines,</em> which are simply Turing machines allowed to call an oracle for input. An oracle can be queried with tuples of the form <span class="math inline">\((M, p),\)</span> where <span class="math inline">\(M\)</span> is a probabilistic oracle machine and <span class="math inline">\(p\)</span> is a rational number between 0 and 1. By Fallenstein et. al. 2015, there exists a <em>reflective oracle</em> on each set of queries such that <span class="math inline">\(O(M,p) = 1\)</span> if <span class="math inline">\(\mathbb{P}(M() = 1) &gt; p,\)</span> and <span class="math inline">\(O(M,p) = 0\)</span> if <span class="math inline">\(\mathbb{P}(M() = 0) &lt; 1-p\)</span> (check this).</p>
<p>Notice that a reflective oracle has similar properties to the <span class="math inline">\(Bel\)</span> operator in self-referential probabilistic logic. It has a coherent probability distribution over probabilistic oracle machines (as opposed to sentences), it only gives information about the probability to arbitrary precision via queries (<span class="math inline">\(O(M,p)\)</span> vs. <span class="math inline">\(Bel(\phi)\)</span>). So, it would be great if there was a canonical method of relating the two.</p>
<p>Peano Arithmetic is Turing-complete, there exists a method of embedding arbitrary Turing machines in statements in predicate logic and there also exist various methods for embedding Turing machines in PA. We can form a correspondence where implications are preserved: notably, <span class="math inline">\(x\to y\)</span> simply represents the program <code>if TM(x), then TM(y)</code> , and negations just make the original TM output 1 where it outputted 0 and vice versa.</p>
<p>(Specifically, we’re identifying non-halting Turing machines with propositions and operations on those propositions with different ways of composing the component associated Turing machines. Roughly, a Turing machine outputting 1 on an input is equivalent to a given sentence being true on that input)</p>
<p>CDT, expected utility maximizing agents with access to the same reflective oracle will reach Nash equilibria, because reflective oracles can <em>model other oracles</em> and <em>other oracles that are called by other probabilistic oracle machines</em>—so, at least in the unbounded setting, we don’t have to worry about infinite regresses, because the oracles are guaranteed to halt.</p>
<p>So, we can consider the following bot:
<span class="math display">\[
A_{i} := O_{i} \left( O_{\bigcap i} \left( \bigwedge_{k=1}^n A_{k}\right) \to \bigwedge_{k=1}^n A_{k}, \, p_{i}\right),
\]</span>
where <span class="math inline">\(A_i\)</span> is an agent represented by a oracle machine, <span class="math inline">\(O_i\)</span> is the probabilistic oracle affiliated with the agent, <span class="math inline">\(O_{\bigcap i}\)</span> is the closure of all agents’ oracles, and <span class="math inline">\(p_{i} \in \mathbb{Q} \cap [0,1]\)</span> is an individual probability threshold set by each agent.</p>
<p>How do we get these closures? Well, ideally <span class="math inline">\(O_{\bigcap i}\)</span> returns <span class="math inline">\(0\)</span> for queries <span class="math inline">\((M,p)\)</span> if <span class="math inline">\(p &lt; \min\{p_{M_1}, \ldots, p_{M_n}\}\)</span> and <span class="math inline">\(1\)</span> if <span class="math inline">\(p &gt; \max \{p_{M_1}, \ldots, p_{M_n}\},\)</span> and randomizes for queries in the middle—for the purposes of this cooperation strategy, this turns out to work.</p>
<p>I claim this set of agents has the same behavior as those acting in accordance with the PPL: they will all cooperate if the ‘evidence’ for cooperating is above each agents’ individual threshold <span class="math inline">\(p_i.\)</span> In the previous case, the ‘evidence’ was the statement <span class="math inline">\(\Box_{\max \{p_{1},\ldots, p_{n}\}}\bigwedge_{k=1}^n A_{k} \to \bigwedge_{k=1}^n A_{k}.\)</span> Here, the evidence is the statement <span class="math inline">\(O_{\bigcap i} \left( \bigwedge_{k=1}^n A_{k}\right) \to \bigwedge_{k=1}^n A_{k}.\)</span></p>
<p>To flesh out the correspondence further, we can show that the relevant properties of the <span class="math inline">\(p\)</span>-belief operator are found in reflective oracles as well: namely, that instances of the weak distribution axiom schema are coherent and that necessitation holds.</p>
<p>For necessitation, <span class="math inline">\(\vdash \phi \implies \vdash \Box_{p}\phi\)</span> turns into <span class="math inline">\(M_{\phi}() = 1\)</span> implying that <span class="math inline">\(O(M_{\phi},p)=1,\)</span> which is true by the properties of reflective oracles. For weak distributivity, <span class="math inline">\(\vdash \phi \to \psi \implies \vdash \Box_{p} \phi \to \Box_{p}\psi\)</span> can be analogized to ’if it is true that the Turing machine associated with <span class="math inline">\(\phi\)</span> outputs 1 implies that the Turing machine associated with <span class="math inline">\(\psi\)</span> outputs 1, then you should be at least <span class="math inline">\(\phi\)</span>-certain that <span class="math inline">\(\psi\)</span>-outputs 1, so <span class="math inline">\(O(M_{\phi},p)\)</span> should imply <span class="math inline">\(O(M_{\psi}, p)\)</span> in all cases (because oracles represent true properties of probabilistic oracle machines, which Turing machines can be embedded into).</p>
<h2>
Models
</h2>
<p>Moreover, we can consider oracles to be a rough model of the p-belief modal language in which the probabilistic Payor’s Lemma holds. We can get an explicit model to ensure consistency (see the links with Christiano’s system, as well as its interpretation in neighborhood semantics), but oracles seem like a good intuition pump because they actively admit queries of the same form as <span class="math inline">\(Bel(\phi)&gt;p,\)</span> and they are a nice computable analog.</p>
<p>They’re a bit like the probabilistic logic in the sense that a typical reflective oracle just has full information about what the output of a Turing machine will be if it halts, and the probabilistic logic gives <span class="math inline">\(\mathbb{P}(\phi)=1\)</span> to all sentences which are deducible from the set of tautologies in the language. So the correspondence has some meat.</p>
<p><em>Crossposted to <a href="https://www.lesswrong.com/posts/HZusY5jPYvpmkTkZD/probabilistic-logic-less-than-greater-than-oracles">LessWrong</a>.</em></p>]]></description>
    <pubDate>Sun, 30 Jun 2024 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/fullstack-cooperation/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Neighborhood Semantics</title>
    <link>https://www.yudhister.me/neighborhood-semantics/</link>
    <description><![CDATA[<h2 id="intro">Intro</h2>
<p>We start with a typical Kripke frame <span class="math inline">\(\mathcal{F} = (\mathcal{W}, R)\)</span> where <span class="math inline">\(W\)</span> is the set of possible worlds (think possible truth assignments to your set of propositional variables) and <span class="math inline">\(R\)</span> is a binary relation on those worlds.</p>
<p>A Kripke model is just some triple <span class="math inline">\((\mathcal{W}, R, \Vdash)\)</span> where <span class="math inline">\(\Vdash\)</span> is the forcing relation which determines the relationship between various worlds <span class="math inline">\(w\in\mathcal{W}\)</span> and modal formulas. It’s characterized by the following rules:</p>
<ul>
<li><span class="math inline">\(w \Vdash \neg A\)</span> if and only if <span class="math inline">\(w \not\Vdash A\)</span></li>
<li><span class="math inline">\(w \Vdash A \to B\)</span> if and only if <span class="math inline">\(w \Vdash \neg A\)</span> or <span class="math inline">\(w \vdash B\)</span></li>
<li><span class="math inline">\(w \Vdash \Box A\)</span> if and only if for all <span class="math inline">\(u\)</span> satisfying <span class="math inline">\(wRu\)</span> we have that <span class="math inline">\(u \Vdash A.\)</span></li>
</ul>
<p>(this also subsequently implies that <span class="math inline">\(A\)</span> is possible in world <span class="math inline">\(w\)</span> if and only if it is true in at least one world <span class="math inline">\(u\)</span> adjacent to <span class="math inline">\(w,\)</span> because it’s the dual of necessity)</p>
<p>Different modal logics are generated by changing the assumptions on <span class="math inline">\(R\)</span>. For instance, forcing <span class="math inline">\(R\)</span> to be reflexive guarantees that <span class="math inline">\(\textbf{T}: \Box A \to A\)</span> will be satisfied. However, all Kripke models satisfy axiom <span class="math inline">\(\textbf{K}: \Box (A \to B) \to (\Box A \to \Box B),\)</span> which makes Kripke models very good for representing normal modal logics and very bad at representing non-normal modal logics.</p>
<p>Necessitation as an operator has become popular in representing agents’ “beliefs”. E.g., you can take an agent, represent their policy in some modal logic, and <span class="math inline">\(\Box \phi\)</span> determines their belief in <span class="math inline">\(\phi\)</span> while <span class="math inline">\(\vdash \phi\)</span> determines whether or not <span class="math inline">\(\phi\)</span> is true in that world. And this is nice for a lot of things, and Kripke models are great for modeling provability logic, for instance.</p>
<p>But if we want necessity to be some sort of probabilistic operator—<span class="math inline">\(\mathbb{P}(\phi) &gt; p\)</span>, for instance—then this becomes unsatisfactory. Probabilities don’t distribute over conditionals like that. So we want to relax this somehow.</p>
<p>Enter neighborhood semantics. We define a neighborhood frame to be a pair <span class="math inline">\((\mathcal{W}, \mathcal{N}),\)</span> where again <span class="math inline">\(\mathcal{W}\)</span> is the set of possible worlds and <span class="math inline">\(\mathcal{N}: \mathcal{W} \to 2 ^ {2 ^ \mathcal{W}}\)</span> is a “neighborhood function” which maps each world <span class="math inline">\(w \in \mathcal{W}\)</span> to a set of their neighborhoods.</p>
<p>Necessity here is defined differently: <span class="math inline">\(w \Vdash \Box \phi\)</span> if and only if the truth set of <span class="math inline">\(\phi\)</span> is a neighborhood of <span class="math inline">\(w.\)</span> That is, there has to be a neighborhood of <span class="math inline">\(w\)</span> that contains exactly all worlds in which <span class="math inline">\(\phi\)</span> is true, and then <span class="math inline">\(w \Vdash \Box \phi.\)</span></p>
<p>It’s easy to see that this is a generalization of a Kripke frame. You can convert every Kripke frame into a neighborhood frame by making the neighborhoods of each world exactly the truth sets of all <span class="math inline">\(\phi\)</span> that are necessitated by that world.</p>
<p>However, you can’t go in reverse, because having different neighborhoods attached to the same world means that criterions for necessity can be different for each <span class="math inline">\(\phi.\)</span> For instance, <span class="math inline">\(\Box \phi\)</span> might be satisfied by a neighborhood <span class="math inline">\(U\)</span> which is disjoint from a neighborhood <span class="math inline">\(V\)</span> which satisfied <span class="math inline">\(\Box \psi.\)</span> This is not representable in Kripke models—there’s only one neighborhood for each world.</p>
<p>You can pretty easily construct a world with neighborhood semantics that doesn’t satisfy <span class="math inline">\(\mathbf{K}.\)</span> Or mainly, the neighborhood associated with <span class="math inline">\(\Box(A \to B)\)</span> doesn’t have to be the same one associated with <span class="math inline">\(\Box A,\)</span> and then as a result this correspondence no longer holds in generality.</p>
<h2 id="applications-to-mathematical-reality">Applications to Mathematical Reality</h2>
<p>Ok, so why were Kripke semantics useful in the first place? They provided a very clean structure by which they could model logics in a way that allowed one to verify properties like completeness/consistency/decidability well (all Kripke models are just graphs, in essence). Partially this is because they have some formal grounding in set theory. But also because formalizing logical structures as directed graphs is just <em>really powerful</em> and a <em>really useful abstraction</em> to reason about various systems.</p>
<p>In the same vein, reducing other systems to neighborhood semantics allows you to reason about their relevant properties simply and somewhat easily. Intuitively, we have a lot of structures that deal with collections of sets <em>cough topologies cough</em> and it’d be nice to bring some of them to the study of modal logic.</p>
<p>Then there’s the question of what modal logics can simulate. Games feature prominently. Provability logic is quite famous. But more generally, modal logics are ways of <em>modeling systems and structures</em> that allow you to abstract away a bunch of irrelevant features.</p>
<p>(They’re also all fragments of FOL (first-order-logic), and as a result don’t necessarily have the same trials and tribulations that come with additional complexity)</p>]]></description>
    <pubDate>Mon, 17 Jun 2024 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/neighborhood-semantics/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Review | The Rise of Christianity</title>
    <link>https://www.yudhister.me/rise-of-christianity/</link>
    <description><![CDATA[<p>Christianity rose because:</p>
<ul>
<li>it became popular amongst the middle &amp; upper classes,</li>
<li>it gave Hellenized Jews a chance to fuse their Hellenic and Jewish identities, and Hellenic Jews were a substantial portion of the population,</li>
<li>it was better than paganism at letting Romans cope with the epidemics of the 2nd century, and also encouraged charity that massively improved the survival rate of those with closer connection to Christians via nurisng etc.,</li>
<li>it was more popular amongst women because it discouraged abortion &amp; infanticide and promoted mutual chastity till marriage, and as a result early in the Christian movement # women &gt;&gt; # men (correlated with/caused greater freedom for women),</li>
<li>Greco-Roman cities were atrocious, horrifying, and disgusting—Christianity was primarily an urban movement, so is it really surprising that it took root where hopelessness would probably have been the highest?</li>
<li>early Christians had a lot of skin in the game (exemplified by the martyrs of the 60s), making the religion extremely potent &amp; able to give benefits exceeding that of paganism to their believers</li>
<li>above all, Christianity is virtuous, and virtue wins.</li>
</ul>
<p>Smattering of useful frames here: sect vs. cult movements (sect movements being offshoots and having a base from which to draw from, cult movements being new sprouts and fringe and ostracized in the beginning), not-very-rigorous models that involve a lot of assumptions can be surprisingly accurate (see: Fermi, see: this book’s estimation of travel distance from Jerusalem), martyrdom as central to Christian belief, and Christianity as (in some ways) this weird bastard child of Roman paganism and Jewish monotheism.</p>
<p>Apparently Roman cities were 1.5x-2x as dense as Indian cities are today, without the ability to build upwards. Also apparently, the racial mixing in the Roman empire was as if the entirety of the British empire was squashed together with freedom of movement. Strangely ancap?</p>
<p>It won because it was the better tech. Jesus was the ultimate startup founder</p>]]></description>
    <pubDate>Sat, 18 May 2024 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/rise-of-christianity/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Kolmogorov-Arnold Networks</title>
    <link>https://www.yudhister.me/kan/</link>
    <description><![CDATA[<p>tl;dr—you can improve performance (really, fitting to physics-like models) by placing your activation functions (nonlinearities) on the edges between your nodes and making them <em>learnable</em> rather than fixed. your nodes then just pool the activations from each of the edges pointing to it</p>
<p>this differs from MLPs, which have activation functions on nodes (they do the aggregation and the nonlinearity), while applying a linear transformation in between (weights and biases).</p>
<p>KANs have no such analogous linear transformation, instead, they approximate good activation functions with <a href="https://en.wikipedia.org/wiki/B-spline">B-splines</a>. Apparently, this allows them to escape the curse of dimensionality because the function can be “approximated well with a residue rate <strong>independent of the dimension</strong>” (emphasis theirs)</p>
<p>i get the vibe that this is pretty dependent on the underlying generating process being approximable by smooth functions, and I also don’t think that GPU kernels have been optimized well for KANs? plausibly we can just write better kernels in CUDA/Triton for this. I think I’ll do this</p>
<p>ah, also the reason why they work: the <a href="https://en.wikipedia.org/wiki/Kolmogorov%E2%80%93Arnold_representation_theorem">Kolmogorov-Arnold Representation theorem</a> guarantees that any multivariate continuous function can be represented as a superposition of two univariate continuous functions. MLPs satisfy a different universal approximation theorem that applies to Borel-measurable functions.</p>
<p>Readings:</p>
<ul>
<li><a href="https://arxiv.org/abs/2404.19756">KAN: Kolmogorov-Arnold Networks</a></li>
<li><a href="https://github.com/KindXiaoming/pykan">pykan</a>—Github repo</li>
</ul>]]></description>
    <pubDate>Sat, 20 Apr 2024 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/kan/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Superposition</title>
    <link>https://www.yudhister.me/superposition/</link>
    <description><![CDATA[<p>Neuron activations have a <strong>privileged basis</strong>. The residual stream does not. This is because the nonlinearities are applied to the activations on an <em>element-wise</em> basis, which means that representing the non-linear computation under a change of basis gets messy and results in the <em>element-wise</em> computation no longer acting on <em>elements independently.</em> Another way of thinking about this is that the residual stream is rotation-independent because all interventions (reading/writing) to it are done via linear maps. Multiplying the writes by some rotation matrix <span class="math inline">\(R\)</span> and the reads by some rotation matrix <span class="math inline">\(R^{-1}\)</span> will leave the info &amp; computation done by the stream unchanged. IIRC this is also empirically shown in the grokking paper, where the algorithm is found up to rotation.</p>
<p>It seems that <strong>features</strong> is just the term we use to represent the units of a transformer’s ontology. Alternative definitions include “a property of an input to a model, or some subset of it” (Neel) or “[a] scalar function of the input” (Chris Olah). Sometimes ‘meaningful feature’ is used to refer to features which are interpretable. However, Anthropic’s toy model of bottleneck superposition just takes a 5-dim input <span class="math inline">\(x\)</span> and considers each dimension a feature in and of itself. This is more in line with Olah’s definition? Maybe this confusion will resolve itself with practice.</p>
<p>Superposition itself is the phenomenon where there model <strong>represents more features than dimensions.</strong> In the Toy Models paper, Anthropic found that when features are dense models learn something like PCA, in that the two most important features have orthogonal representations and the rest are not learned. But as sparsity increases, we have the following:</p>
<p><img src="/images/superposed_features.png" width="600" /></p>
<p>Sparsity here is defined as the probability of the corresponding element in <span class="math inline">\(x\)</span> to the feature as being non-zero (e.g. is the feature represented in the input, roughly). We can also have different thresholds for sparsity that make sense, as in not nonzero but not above ~0.1. For instance, the second image has 80% sparsity because 4/5 of the features represented (and we assume that features are distributed evenly across the input set). In fact, it often makes sense (to me!) to think about sparsity as 1- feature probability rather than the other way around.</p>
<p>This is possible because sets of points in high-dimensional space can be embedded into a lower-dimension space in such a way that the distances between the points are nearly preserved by the <a href="https://transformer-circuits.pub/2022/toy_model/index.html">Johnson-Lindenstrauss lemma</a>. (I think this also implies that there can be exponentially many almost-orthogonal vectors in an n-dimensional space (exponential in the number of dimensions)).</p>
<p>Neel proposes two kinds of superposition: <strong>bottleneck superposition</strong> and <strong>neuron superposition</strong>:</p>
<ul>
<li><strong>bottleneck superposition</strong> occurs in places like keys, queries, and the residual stream—places where a linear map goes from a large dimension to a relatively smaller dimension, and therefore information <em>must</em> be stored more efficiently/compactly</li>
<li><strong>neuron superposition</strong> occurs when dim(activation_space) &lt; num_features, and is <em>computation</em> rather than <em>storage.</em> Computation occurs when info gets passed through nonlinearities, and n non-linearities attend to &gt;n features in this case.</li>
</ul>
<p>Consider a given neuron. A neuron is more likely to be <strong>polysemantic</strong> if the features it represents are sparse w.r.t. each other, and higher sparsity corresponds to more superposition in the general case. One reason we should expect superposition to be naturally occuring is that it will almost always make sense for networks to try to represent ever-more-sparse yet useful features, and these can be added to popular features at almost 0 cost.</p>
<p>Reading:</p>
<ul>
<li><a href="https://dynalist.io/d/n2ZWtnoYHrU1s4vnFSAQ519J#z=3br1psLRIjQCOv2T4RN3V6F2">Neel Nanda’s Notes on Superposition</a> - good glossary and introduction</li>
<li><a href="https://transformer-circuits.pub/2022/toy_model/index.html">Toy Models of Superposition</a> - Anthropic’s first investigations into the subject</li>
<li><a href="https://www.alignmentforum.org/posts/o6ptPu7arZrqRCxyz/200-cop-in-mi-exploring-polysemanticity-and-superposition">200 COP in MI: Exploring Polysemanticity and Superposition</a> - some concrete open problems to do with superposition</li>
<li><a href="https://arena3-chapter1-transformer-interp.streamlit.app/%5B1.4%5D_Superposition_&amp;_SAEs">ARENA 1.4: Superposition and SAEs</a> - great resource generally for hands-on learning</li>
<li><a href="https://transformer-circuits.pub/2023/toy-double-descent/index.html">Superposition, Memorization, and Double Descent</a> - to replicate</li>
</ul>]]></description>
    <pubDate>Wed, 10 Apr 2024 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/superposition/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Rome</title>
    <link>https://www.yudhister.me/rome/</link>
    <description><![CDATA[<p>A post-apocalyptic fever dream. The oldest civilized metropolis. Where sons are pathetic in the eyes of their father, and both are pathetic in the eyes of their grandfathers—all while wearing blackened sunglasses and leather jackets. Grown, not made.</p>
<p>Rome is, perhaps, the first place I recognized as solely for visiting, never living. Unlike Tokyo, one feels this immediately. Japan’s undesirability stems primarily from its inordinate, sprawling bureaucracy that is, for the most part, hidden from the typical visitor. Rome’s undesirability is apparent for all to see—it’s loud, stifling, unmaintained, and requires arduous traversals.</p>
<p>Population c. 100 C.E.: 1 million people. Population c. 1000 C.E.: 35,000. Population c. 2024 C.E.: 2.8 million people. Rebound? Not so fast—the global population in the year 100 was just 200 million.</p>
<p>And this is obvious. The city center is still dominated by the Colosseum, the Imperial fora, and Trajan’s Market. Only the Vittoriano holds a candle to their extant glory. Yet the hordes of tourists still walk down the Via dei Forti Imperiali and congregate in stupidly long lines at the ticket booth to see ruins!</p>
<p>I walked across the city from east to west, passing by a secondary school, flea market, and various patisseries (is that the correct wording?). The pastries were incredible. The flea market reminded me of Mexico, interestingly enough. Felt very Catholic.</p>
<p>(All the buses and trams run late in Rome. This too, is very Catholic, as Orwell picked up on during his time in Catalonia and as anyone visiting a Mexican house would know. Plausibly also Irish?)</p>
<p>Rome’s ivies pervade its structures. Villas, monuments, churches (all 900 of them), and fountains all fall victim to these creepers. It gives the perception of a ruined city, that Roman glory has come and gone—and when one is aware of Italian history, it is very, very hard to perceive Rome as anything else than an overgrown still-surviving bastion against the continuing spirit of the Vandals.</p>
<p>Roman pines, too, are fungiform. Respighi’s tone poem doesn’t do justice to them. Perhaps this is just a Mediterranean vibe? But amongst the monumental Classical, Romanesque, and Neoclassical structures of the Piazza Venezia, these pines are punctual. Don’t really know how else to convey it.</p>
<p>It is difficult to comprehend how the animalistic, gladitorial Roman society became the seat of the Catholic Church. This city is clearly Gaian, and clearly ruled by the very same gods their Pantheon pays homage to. The Christian God is not of nature, it is apart from nature. It is not Dionysian, it is not even Apollonian (because it cannot recognize or respect the Dionysian, and as such cannot exist in context of it, only apart from it). And yet, the Pope persists.</p>
<p>I have not seen the Vatican yet. I want to. I will be back.</p>]]></description>
    <pubDate>Wed, 20 Mar 2024 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/rome/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Self-Referential Probabilistic Logic Admits the Payor&#39;s Lemma</title>
    <link>https://www.yudhister.me/probabilistic-payor/</link>
    <description><![CDATA[<p><em>In summary: A probabilistic version of the <a href="https://www.alignmentforum.org/posts/2WpPRrqrFQa6n2x3W/modal-fixpoint-cooperation-without-loeb-s-theorem">Payor’s Lemma</a> holds under the logic proposed in the <a href="http://intelligence.org/files/DefinabilityTruthDraft.pdf">Definability of Truth in Probabilistic Logic</a>. This gives us modal fixed-point-esque group cooperation even under probabilistic guarantees.</em></p>
<h2 id="background">Background</h2>
<p><strong>Payor’s Lemma:</strong> If <span class="math inline">\(\vdash \Box (\Box x \to x) \to x,\)</span> then <span class="math inline">\(\vdash x.\)</span></p>
<p>We assume two rules of inference:</p>
<ul>
<li><strong>Necessitation:</strong> <span class="math inline">\(\vdash x \implies \vdash \Box x,\)</span></li>
<li><strong>Distributivity:</strong> <span class="math inline">\(\vdash \Box(x \to y) \implies \vdash \Box x \to \Box y.\)</span></li>
</ul>
<p><strong>Proof:</strong></p>
<ol>
<li><span class="math inline">\(\vdash x \to (\Box x \to x),\)</span> by tautology;</li>
<li><span class="math inline">\(\vdash \Box x \to \Box (\Box x \to x),\)</span> by 1 via necessitation and distributivity;</li>
<li><span class="math inline">\(\vdash \Box (\Box x \to x) \to x\)</span>, by assumption;</li>
<li><span class="math inline">\(\vdash \Box x \to x,\)</span> from 2 and 3 by modus ponens;</li>
<li><span class="math inline">\(\vdash \Box (\Box x \to x),\)</span> from 4 by necessitation;</li>
<li><span class="math inline">\(\vdash x,\)</span> from 5 and 3 by modus ponens.</li>
</ol>
<p>The Payor’s Lemma is provable in all normal modal logics (as it can be proved in <span class="math inline">\(K,\)</span> the weakest, because it only uses necessitation and distributivity). Its proof sidesteps the assertion of an arbitrary modal fixedpoint, does not require internal necessitation (<span class="math inline">\(\vdash \Box x \implies \vdash \Box \Box x\)</span>), and provides the groundwork for Lobian handshake-based cooperation without Lob’s theorem.</p>
<p>It is known that Lob’s theorem <a href="https://www.lesswrong.com/posts/oBDTMnEzptBidvmw7/probabilistic-loeb-theorem">fails to hold in reflective theories of logical uncertainty</a>. However, a <a href="https://www.alignmentforum.org/posts/ZWhJcHPmRaXAPAK5k/probabilistic-payor-lemma">proof of a probabilistic Payor’s lemma</a> has been proposed, which modifies the rules of inference necessary to be:</p>
<ul>
<li><strong>Necessitation:</strong> <span class="math inline">\(\vdash x \implies \vdash \Box_p , x,\)</span></li>
<li><strong>Weak Distributivity:</strong> <span class="math inline">\(\vdash x \to y \implies \vdash \Box_p , x \to \Box_p , y.\)</span>
where here we take <span class="math inline">\(\Box_p\)</span> to be an operator which returns True if the internal credence of <span class="math inline">\(x\)</span> is greater than <span class="math inline">\(p\)</span> and False if not. (Formalisms incoming).</li>
</ul>
<p>The question is then: does there exist a consistent formalism under which these rules of inference hold? The answer is yes, and it is provided by <a href="http://intelligence.org/files/DefinabilityTruthDraft.pdf">Christiano 2012</a>.</p>
<h2 id="setup">Setup</h2>
<p>(Regurgitation and rewording of the relevant parts of the <a href="http://intelligence.org/files/DefinabilityTruthDraft.pdf">Definability of Truth</a>)</p>
<p>Let <span class="math inline">\(L\)</span> be some language and <span class="math inline">\(T\)</span> be a theory over that language. Assume that <span class="math inline">\(L\)</span> is powerful enough to admit a Godel encoding and that it contains terms which correspond to the rational numbers <span class="math inline">\(\mathbb{Q}.\)</span> Let <span class="math inline">\(\phi_1, \phi_{2} \ldots\)</span> be some fixed enumeration of all sentences in <span class="math inline">\(L.\)</span> Let <span class="math inline">\(\ulcorner \phi \urcorner\)</span> represent the Godel encoding of <span class="math inline">\(\phi.\)</span></p>
<p>We are interested in the existence and behavior of a function <span class="math inline">\(\mathbb{P}: L \to [0,1]^L,\)</span> which assigns a real-valued probability in <span class="math inline">\([0,1]\)</span> to each well-formed sentence of <span class="math inline">\(L.\)</span> We are guaranteed the coherency of <span class="math inline">\(\mathbb{P}\)</span> with the following assumptions:</p>
<ol>
<li>For all <span class="math inline">\(\phi, \psi \in L\)</span> we have that <span class="math inline">\(\mathbb{P}(\phi) = \mathbb{P}(\phi \land \psi) + \mathbb{P}(\phi \lor \neg \psi).\)</span></li>
<li>For each tautology <span class="math inline">\(\phi,\)</span> we have <span class="math inline">\(\mathbb{P}(\phi) = 1.\)</span></li>
<li>For each contradiction <span class="math inline">\(\phi,\)</span> we have <span class="math inline">\(\mathbb{P}(\phi) = 0.\)</span></li>
</ol>
<p>Note: I think that 2 &amp; 3 are redundant (as says John Baez), and that these axioms do not necessarily constrain <span class="math inline">\(\mathbb{P}\)</span> to <span class="math inline">\([0,1]\)</span> in and of themselves (hence the extra restriction). However, neither concern is relevant to the result.</p>
<p>A coherent <span class="math inline">\(\mathbb{P}\)</span> corresponds to a distribution <span class="math inline">\(\mu\)</span> over models of <span class="math inline">\(L.\)</span> A coherent <span class="math inline">\(\mathbb{P}\)</span> which gives probability 1 to <span class="math inline">\(T\)</span> corresponds to a distribution <span class="math inline">\(\mu\)</span> over models of <span class="math inline">\(T\)</span>. We denote a function which generates a distribution over models of a given theory <span class="math inline">\(T\)</span> as <span class="math inline">\(\mathbb{P}_T.\)</span></p>
<p><strong>Syntactic-Probabilistic Correspondence:</strong> Observe that <span class="math inline">\(\mathbb{P}_T(\phi) =1 \iff T \vdash \phi.\)</span> This allows us to interchange the notions of syntactic consequence and probabilistic certainty.</p>
<p>Now, we want <span class="math inline">\(\mathbb{P}\)</span> to give sane probabilities to sentences which talk about the probability <span class="math inline">\(\mathbb{P}\)</span> gives them. This means that we need some way of giving <span class="math inline">\(L\)</span> the ability to talk about itself.</p>
<p>Consider the formula <span class="math inline">\(Bel.\)</span> <span class="math inline">\(Bel\)</span> takes as input the Godel encodings of sentences. <span class="math inline">\(Bel(\ulcorner \phi \urcorner)\)</span> contains <em>arbitrarily precise</em> information about <span class="math inline">\(\mathbb{P}(\phi).\)</span> In other words, if <span class="math inline">\(\mathbb{P}(\phi) = p,\)</span> then the statement <span class="math inline">\(Bel(\ulcorner \phi \urcorner) &gt; a\)</span> is True for all <span class="math inline">\(a &lt; p,\)</span> and the statement <span class="math inline">\(Bel(\ulcorner \phi \urcorner) &gt; b\)</span> is False for all <span class="math inline">\(b &gt; p.\)</span> <span class="math inline">\(Bel\)</span> is fundamentally <em>a part</em> of the system, as opposed to being some metalanguage concept.</p>
<p>(These are identical properties to that represented in Christiano 2012 by <span class="math inline">\(\mathbb{P}(\ulcorner \phi \urcorner).\)</span> I simply choose to represent <span class="math inline">\(\mathbb{P}(\ulcorner \phi \urcorner)\)</span> with <span class="math inline">\(Bel(\ulcorner \phi \urcorner)\)</span> as it (1) reduces notational uncertainty and (2) seems to be more in the spirit of Godel’s <span class="math inline">\(Bew\)</span> for provability logic).</p>
<p>Let <span class="math inline">\(L&#39;\)</span> denote the language created by affixing <span class="math inline">\(Bel\)</span> to <span class="math inline">\(L.\)</span> Then, there exists a coherent $\mathbb{P}<em>T$ for a given consistent theory <span class="math inline">\(T\)</span> over <span class="math inline">\(L\)</span> such that the following reflection principle is satisfied:
$$\forall \phi \in L’ , , \forall a,b, \in \mathbb{Q} : (a &lt; \mathbb{P}</em>{T}(\phi)&lt;b) \implies \mathbb{P}_{T}(a &lt; Bel(\ulcorner \phi \urcorner) &lt; b) = 1.$$
In other words, <span class="math inline">\(a  &lt; \mathbb{P}_T(\phi) &lt; b\)</span> implies <span class="math inline">\(T \vdash a &lt; Bel(\ulcorner \phi \urcorner) &lt; b.\)</span></p>
<h2 id="proof">Proof</h2>
<p>(From now, for simplicity, we use <span class="math inline">\(\mathbb{P}\)</span> to refer to <span class="math inline">\(\mathbb{P}_T\)</span> and <span class="math inline">\(\vdash\)</span> to refer to <span class="math inline">\(T \vdash.\)</span> You can think of this as fixing some theory <span class="math inline">\(T\)</span> and operating within it).</p>
<p>Let <span class="math inline">\(\Box_p , (\phi)\)</span> represent the sentence <span class="math inline">\(Bel(\ulcorner \phi \urcorner) &gt; p,\)</span> for some <span class="math inline">\(p \in \mathbb{Q}.\)</span> We abbreviate <span class="math inline">\(\Box_p , (\phi)\)</span> as <span class="math inline">\(\Box_p , \phi.\)</span> Then, we have the following:</p>
<p><strong>Probabilistic Payor’s Lemma:</strong> If <span class="math inline">\(\vdash \Box_p , (\Box_p , x \to x) \to x,\)</span> then <span class="math inline">\(\vdash x.\)</span></p>
<p><strong>Proof</strong> <a href="https://www.lesswrong.com/posts/ZWhJcHPmRaXAPAK5k/probabilistic-payor-lemma">as per Demski</a>:</p>
<ol>
<li><span class="math inline">\(\vdash x \to (\Box_{p},x \to x),\)</span> by tautology;</li>
<li><span class="math inline">\(\vdash \Box_{p}, x \to \Box_{p}, (\Box_{p}, x \to x),\)</span> by 1 via weak distributivity,</li>
<li><span class="math inline">\(\vdash \Box_{p} (\Box_{p} , x \to x) \to x\)</span>, by assumption;</li>
<li><span class="math inline">\(\vdash \Box_{p} , x \to x,\)</span> from 2 and 3 by modus ponens;</li>
<li><span class="math inline">\(\vdash \Box_{p}, (\Box_{p}, x \to x),\)</span> from 4 by necessitation;</li>
<li><span class="math inline">\(\vdash x,\)</span> from 5 and 3 by modus ponens.</li>
</ol>
<h2 id="rules-of-inference">Rules of Inference<a href="#rules-of-inference" class="zola-anchor" aria-label="Anchor link for: rules-of-inference">🔗</a></h2>
<p><strong>Necessitation:</strong> <span class="math inline">\(\vdash x \implies \vdash \Box_p , x.\)</span> If <span class="math inline">\(\vdash x,\)</span> then <span class="math inline">\(\mathbb{P}(x) = 1\)</span> by syntactic-probabilistic correspondence, so by the reflection principle we have <span class="math inline">\(\mathbb{P}(\Box_p , x) = 1,\)</span> and as such <span class="math inline">\(\vdash \Box_p , x\)</span> by syntactic-probabilistic correspondence.</p>
<p><strong>Weak Distributivity:</strong> <span class="math inline">\(\vdash x \to y \implies \vdash \Box_p , x \to \Box_p , y.\)</span> The proof of this is slightly more involved.</p>
<p>From <span class="math inline">\(\vdash x \to y\)</span> we have (via correspondence) that <span class="math inline">\(\mathbb{P}(x \to y) = 1,\)</span> so <span class="math inline">\(\mathbb{P}(\neg x \lor y) = 1.\)</span> We want to prove that <span class="math inline">\(\mathbb{P}(\Box_p , x \to \Box_p , y) = 1\)</span> from this, or <span class="math inline">\(\mathbb{P}((Bel(\ulcorner x \urcorner) \leq p) \lor (Bel(\ulcorner y \urcorner) &gt; p)) = 1.\)</span> We can do casework on <span class="math inline">\(x\)</span>. If <span class="math inline">\(\mathbb{P}(x) \leq p,\)</span> then weak distributivity follows from vacuousness. If <span class="math inline">\(\mathbb{P}(x) &gt;p,\)</span> then as
<span class="math display">\[
\begin{align*}
\mathbb{P}(\neg x \lor y) &amp;= \mathbb{P}(x \land(\neg x \lor y)) + \mathbb{P}(\neg x \land (\neg x \lor y)), \
1 &amp;= \mathbb{P}(x \land y) + \mathbb{P}(\neg x \lor (\neg x \land y)), \
1 &amp;= \mathbb{P}(x \land y) + \mathbb{P}(\neg x),
\end{align*}
\]</span>
<span class="math inline">\(\mathbb{P}(\neg x) &lt; 1-p,\)</span> so <span class="math inline">\(\mathbb{P}(x \land y) &lt; p,\)</span> and therefore <span class="math inline">\(\mathbb{P}(y) &gt; p.\)</span> Then, <span class="math inline">\(Bel(\ulcorner y \urcorner) &gt; p\)</span> is True by reflection, so by correspondence it follows that <span class="math inline">\(\vdash \Box_p , x \to \Box_p y.\)</span></p>
<p>(I’m pretty sure this modal logic, following necessitation and weak distributivity, is not normal (it’s weaker than <span class="math inline">\(K\)</span>). This may have some implications? But in the ‘agent’ context I don’t think that restricting ourselves to modal logics makes sense).</p>
<h2 id="bots">Bots</h2>
<p>Consider agents <span class="math inline">\(A,B,C\)</span> which return True to signify cooperation in a multi-agent Prisoner’s Dilemma and False to signify defection. (Similar setup to <a href="https://www.alignmentforum.org/posts/2WpPRrqrFQa6n2x3W/modal-fixpoint-cooperation-without-loeb-s-theorem">Critch’s</a> ). Each agent has ‘beliefs’ <span class="math inline">\(\mathbb{P}_A, \mathbb{P}_B, \mathbb{P}_C : L \to [0,1]^L\)</span> representing their credences over all formal statements in their respective languages (we are assuming they share the same language: this is unnecessary).</p>
<p>Each agent has the ability to reason about their own ‘beliefs’ about the world arbitrarily precisely, and this allows them full knowledge of their utility function (if they are VNM agents, and up to the complexity of the world-states they can internally represent). Then, these agents can be modeled with Christiano’s probabilistic logic! And I would argue it is natural to do so (you could easily imagine an agent having access to its own beliefs with arbitrary precision by, say, repeatedly querying its own preferences).</p>
<p>Then, if <span class="math inline">\(A,B,C\)</span> each behave in the following manner:</p>
<ul>
<li><span class="math inline">\(\vdash \Box_a , (\Box_e , E \to E) \to A,\)</span></li>
<li><span class="math inline">\(\vdash  \Box_b , (\Box_e , E \to E) \to B,\)</span></li>
<li><span class="math inline">\(\vdash \Box_c , (\Box_e , E \to E) \to C,\)</span></li>
</ul>
<p>where <span class="math inline">\(E = A \land B \land C\)</span> and <span class="math inline">\(e = \max ({ a,b,c }),\)</span> they will cooperate by the probabilistic Payor’s lemma.</p>
<p><strong>Proof:</strong></p>
<ol>
<li><span class="math inline">\(\vdash \Box_a , (\Box_e , E \to E) \land \Box_b , (\Box_e , E \to E) \land \Box_c , (\Box_e , E \to E) \to A \land B \land C,\)</span> via conjunction;</li>
<li><span class="math inline">\(\vdash \Box_e , (\Box_e , E \to E) \to E,\)</span> as if the <span class="math inline">\(e\)</span>-threshold is satisfied all others are as well;</li>
<li><span class="math inline">\(\vdash E,\)</span> by probabilistic Payor.</li>
</ol>
<p>This can be extended to arbitrarily many agents. Moreso, the valuable insight here is that cooperation is achieved <em>when the evidence that the group cooperates exceeds each and every member’s individual threshold for cooperation.</em> A formalism of the intuitive strategy ‘I will only cooperate if there are no defectors’ (or perhaps ‘we will only cooperate if there are no defectors’).</p>
<p>It is important to note that any <span class="math inline">\(\mathbb{P}\)</span> is going to be uncomputable. However, I think modeling agents as having arbitrary access to their beliefs is in line with existing ‘ideal’ models (think VNM – I suspect that this formalism closely maps to VNM agents that have access to arbitrary information about their utility function, at least in the form of preferences), and these agents play well with modal fixedpoint cooperation.</p>
<h2 id="acknowledgements">Acknowledgements</h2>
<p>This work was done while I was a 2023 Summer Research Fellow at the Center on Long-Term Risk. Many thanks to Abram Demski, my mentor who got me started on this project, as well as Sam Eisenstat for some helpful conversations. CLR was a great place to work! Would highly recommend if you’re interested in s-risk reduction.</p>
<p><em>Crossposted to the <a href="https://www.alignmentforum.org/posts/wmJT2j3rdT8ngFkPN/self-referential-probabilistic-logic-admits-the-payor-s">AI Alignment Forum</a>.</em></p>]]></description>
    <pubDate>Tue, 28 Nov 2023 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/probabilistic-payor/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Review | Invisible China</title>
    <link>https://www.yudhister.me/invisible-china/</link>
    <description><![CDATA[<p>Pretty good. Made me think, and Rozelle’s unique perspective (economist who’s spent 30+ years on the ground) adds an authentic flavor to the book.</p>
<p>He claims that the existential threat to China’s potential future growth and success is a lack of human capital: specifically, that systemic factors hinder rural Chinese children’s ability to participate effectively in the service-based, advanced economy of the 21st century, and that fixing this issue is imperative so that China does not fall into the middle income trap.</p>
<blockquote>
<p>In a 2004 article in Foreign Affairs, political scientist Geoffrey Garrett shared a startling observation. He looked at the history of recent economic development and noticed that while rich countries were continuing to do well and many poor countries were achieving strong growth rates, the countries in the middle of the global income spectrum were growing more slowly and less successfully than anyone else.</p>
</blockquote>
<blockquote>
<p>In a report that made ripples throughout the development world, economists at the World Bank demonstrated the full extent of the problem. The report showed that out of 101 countries that were middle income in 1960, only thirteen had made it to high-income status by 2008. The rest remained stuck or even ended the fifty years poorer than before.</p>
</blockquote>
<p>The middle income trap is the stagnation developing countries face when their average citizen reaches a “middle income.” An easy way for developing countries to rapidly grow their economies is to accept industrialization and foreign direct investment, shifting to a manufacturing economy reminiscent of Western nations in the 1890s. However, Rozelle makes the argument that to then shift from a middle income to high income country requires an educated populace, and the middle-income countries which have failed to continue their economic growth did not appropriately invest in the education of their citizenry.</p>
<blockquote>
<p>But with a bit of historical data, another trend emerges that is far more relevant to the question at hand: the very small number of countries that have made it out of middle-income status in recent decades—the graduates—all have very high levels of high school education. Even more surprising, they’ve had those high levels for decades. In particular, back when they were still middle income, the graduates (places like South Korea, Taiwan, and Ireland) all had high school attainment rates comparable to those of the rich countries.</p>
</blockquote>
<p>China is not appropriately investing in the necessary amounts of education to avoid the middle income trap. While they may have the necessary innovation, all the Baidus, Tencents, and Bytedances in the world wouldn’t fix the systemic issue of having nearly 70% of its population without a high school education unable to participate in the high-skilled, high-paid industries that characterize high-income countries.</p>
<p>Rural Chinese mainly work low-skilled manufacturing jobs, or jobs which don’t require a high school education. This was fine, until rising wages in mainland China started pushing manufacturing jobs overseas, leaving hundreds of thousands, if not millions of workers unemployed. Throughout the book, Rozelle includes telling anecdotes of workers who lost their job and couldn’t get a new one because they didn’t have the required skillset.</p>
<blockquote>
<p>…We fell into conversation with one man in particular. Mr. Wang was about thirty-five and had recently been laid off from his job of eighteen years as an electrician.</p>
</blockquote>
<blockquote>
<p>As we watched, Mr. Wang gamely sidled up to the first booth, which represented a bank. The man running the booth, a human resources staff member, shook his hand and asked him to read a short page of text and comment on what he understood. Mr. Wang stared hard at the piece of paper, trying to force the characters into an order he could understand. He knew all the words and could read them aloud, but many of the terms were over his head. He kept getting confused by the logic of the sentences. For several minutes he stared at it, trying to make sense of what he was seeing. At first the man running the booth was patient and seemed sympathetic, but gradually the bank representative lost interest, turned back to his desk, and started looking around for workers who might be a better bet. After a few more minutes, Mr. Wang lowered his head with a sigh: “I’m sorry, I just can’t make sense of it.”</p>
</blockquote>
<p>As it turns out, simply increasing access and/or mandating a high school education wouldn’t be enough. The rural/urban divide in China runs deep. The opportunity &amp; outcome differential comes not only from unequal access to education and other outgrowths of the <em>hukou</em> policy, but also from deep-seated systemic differences. ‘Vocational’ schooling is a joke:</p>
<blockquote>
<p>Tao’s middle school teacher suggested he check out the new vocational high school that had recently opened across town… When he arrived on campus a week later, he found himself in an unfamiliar world. Whereas his middle school had been orderly and regimented, here chaos reigned. The older students were tough-looking, with tight jeans, black pleather jackets, and spiked hair. As he walked to class on his first day, there were no adults in sight. He passed groups of kids hanging out in the courtyard, smoking cigarettes and laughing.</p>
</blockquote>
<p>Children who grow up in rural China suffer from three “invisible epidemics”, as Rozelle calls them: anemia, uncorrected myopia, and parasitic intestinal worms. Iron-deficiency anemia has been linked to dramatic decreases in IQ, myopia (for obvious reasons) impedes learning ability, and worms almost literally sap the life force from their hosts. Luckily, cheap and safe interventions can fix these issues. Iron supplements, subsidized glasses, and cheap, common medicine could easily bring the health of a Chinese kid in the country to within striking distance of one in Beijing.</p>
<p>Perhaps a harder problem to fix is that of crucial stimulation of children during their formative developmental years. Rural parenting strategies are unequipped to give a child sufficient intellectual stimulation.</p>
<blockquote>
<p>In rural China, babies are systematically missing out on the mental stimulation they need. When we asked rural families if they ever talked to their babies, we were met with blank looks or bemused smiles. “Why would I talk to my baby?” one young mother responded, giggling into her hand. “She can’t talk back!”</p>
</blockquote>
<p>Yet, this leads to delayed infant development, and the permanent stunting of a child’s ability relative to their peers. Rural chinese babies score horribly on the Bayley test, while urban Chinese children score higher than average. This seems to be much of the issue.</p>
<p>For the sake of China and the world, Rozelle hopes that China will be able to fix its human capital crisis. He is somewhat bullish: the Chinese government is beginning to recognize that this is an issue, and some sane policies have been implemented. But he wants more to be done. Maybe China can pull off an economic miracle again, but this seems to be a major roadblock.</p>]]></description>
    <pubDate>Sat, 14 Oct 2023 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/invisible-china/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Review | Radical Markets</title>
    <link>https://www.yudhister.me/radical-markets/</link>
    <description><![CDATA[<p><em>Radical Markets? More like Activist Markets</em></p>
<p>The <a href="https://www.atlasfellowship.org">Atlas Fellowship</a> partners with <a href="https://www.impactbooks.store">Impact Books</a> to give fellows access to a curated collection of books worth reading. One of these books is <em>Radical Markets</em>. The first two chapters are worth reading, the rest are not.</p>
<p>Posner &amp; Weyl make five proposals to “uproot capitalism and democracy for a just society”:</p>
<ul>
<li>partial common ownership of land, mediated by auctions,</li>
<li>quadratic voting,</li>
<li>individual visa sponsorship,</li>
<li>demonopolizing capital, but only ‘within industries’,</li>
<li>treating data as labor.</li>
</ul>
<p>Each has its own chapter, and each chapter is meant to stand alone as a defense of its policy. Yet the latter three fall flat.</p>
<p>What <em>Radical Markets</em> does well: a coherent exposition of Georgism, ‘radical’ applications of auctions to the uninitiated, and the first decent defense of quadratic voting from first principles I’ve read. What it falls victim to: left-right political reductionism, one-size-fits-all solutions to coordination problems, and hefty claims partnered with weak evidence.</p>
<h2>
Property as Monopoly
</h2>
<p>The first chapter is the best chapter. It popularizes the Common Ownership Self-assessed Tax (COST) (aka the <a href="https://en.wikipedia.org/wiki/Harberger_Tax">Harberger Tax</a>) as a plausible mechanism by which an auction-based property market could be implemented. Coupled with concrete policy proposals and effect analyses, it is a self-contained introduction to modern-day Georgism and disrupting the current ‘property monopoly’ status quo.</p>
<p>What is a COST? In Harberger’s own words:</p>
<blockquote>
<p><em>If taxes are to be levied…on…the value of … properties … it is important that assessment procedures be adopted which estimate the true economic value … The economist’s answer… is simple and essentially fool-proof: allow each…owner.. to declare the value of his own property, make the declared values … public, and require that an owner sell his property to any bidder… willing to pay… the declared value. This system is simple, self-enforcing, allows no scope for corruption, has negligible cost of administration, and creates incentives, in addition to those already present in the market, for each property to be put to that use in which it has the highest economic productivity.</em></p>
<p>- Arnold Harberger, Chile 1962</p>
</blockquote>
<p>Essentially, tax properties based on their value as assessed by the property owner. To ensure that the self-assessed values are accurate representations of the owners’ valuation, make all of the valuations public and mandate that a property be sold if someone outbids the declared value.</p>
<blockquote>
<p>While Harberger designed his scheme as a way to raise government revenue, it offers an inspired solution to the monopoly problem we highlighted above.</p>
</blockquote>
<p>Setting the tax rate requires trading off between allocative and investment efficiency w.r.t. the properties being taxed. If the COST is set at the turnover rate (the probability at which the asset changes hands) then on the margin the property owner’s gains from price increases are exactly offset by tax increases – incentivizing accurate valuations. This maximizes allocative efficiency.</p>
<p>However, such a high tax rate disincentivizes investment. Consider the case of a property owner who by investing $20,000 in his home can raise its value from $40,000 to $70,000. If this home has a turnover rate of 50%, and the COST is set to 50%, this owner will not invest in his home. A $10,000 profit combined with a $15,000 tax increase is not a good financial decision.</p>
<p>Disincentivizing property investment is bad. Private property rights are <em>meant</em> to avert the tragedy of the commons and encourage investment. Any alternative will have to do the same. As such, the socially optimal COST rate is less than the turnover rate.</p>
<p>The socially optimal property COST is non-zero though!</p>
<blockquote>
<p>One might assume that the loss in allocative efficiency would offset the gain in investment efficiency. However – and this is a key point – the opposite happens. When the tax is reduced incrementally to improve investment efficiency, the loss in allocative efficiency is less than the gain in investment efficiency… In fact, it can be shown that the size of the social loss from monopoly power grows quadratically to the extent of this power. Thus, reducing the markup by a third eliminates close to 5/9…of the allocative harm from private ownership.</p>
</blockquote>
<p>One can conceptualize higher COSTs as greater public ownership of private property, as they transfer use value to the public and increase the number of possible owners of the property. In some sense, higher COSTs mean a freer market – more participation, more competition.</p>
<p>How could COSTs be implemented? Countless details would have to be worked out, most in practice, but the salient issues seem to be setting the correct tax rates and developing the necessary infrastructure for frictionless transactions. While the latter is mostly a technological and system design issue (an engineering problem! just an engineering problem), the former is an ideological one. What is the optimal tradeoff?</p>
<blockquote>
<p>For typical assets, we estimate that turnover once every fourteen years is reasonable and thus (combined with other factors below) a 7% tax annually is a good target.</p>
</blockquote>
<p>Posner &amp; Weyl probably get their 7% from the <a href="https://archive.ph/BqOSG">median length of American homeownership</a> being 13.2 years as of 2022. Note that this is essentially setting the COST at the turnover rate, maximizing allocative efficiency at the cost of investment incentivization. They then claim that:</p>
<blockquote>
<p>At the tax rate we advocate, asset prices would fall by between a third and two-thirds from their current level. In popular and congested areas like San Francisco and Boston, where very modest houses sell for $600,000 or more, their price could fall to as low as $200,000.</p>
</blockquote>
<p>Where are these numbers coming from? It seems <em>plausible</em> that prices would fall this much, considering that a 7% COST with a 14 year turnover rate would tax the owner $588,000 and as such they would be incentivized to lower the price of their home to find other buyers faster, leading to lower turnover rates overall and higher profits for owners. Unclear what the underlying model is though.</p>
<p>An important point that they make in footnote 47 of Chapter 1:</p>
<blockquote>
<p>To make our account vivid we discuss some examples of personal possessions of individuals, like homes and cars, but the reader should keep in mind that most assets are owned by businesses and thus much of the participation and benefits from a COST would be through business assets.</p>
</blockquote>
<p>The authors propose starting with implementing COSTs for publicly held assets to enter the private market. For instance, spectrum licenses:</p>
<blockquote>
<p>…redesigning spectrum licenses to include a COST-based license fee would solve [the current misallocation of American spectrum] and could be implemented in a variety of ways consistent with existing FCC rules. This approach, which they call “depreciating licenses,” would address many recent complaints about license design for the newly available 3.5 GHz bands of the spectrum; their small geographic scope and short durations under current plans were intended to maximize flexibility but may undermine investment incentives.</p>
</blockquote>
<p>COSTs on Internet domains, grazing rights, and natural resource leases to name a few also make similar amounts of sense. But, a much broader implementation would reap much greater rewards:</p>
<blockquote>
<p>As we noted above, the economy underperforms by as much as 25% annually because of the misallocation of resources to low productivity firms. A fully implemented COST could increase social wealth by <strong>trillions of dollars</strong> [emphasis mine] every year…</p>
<p>At the rate of roughly 7% annually that we imagine being near-optimal, a COST would raise roughly 20% of national income. About half of that money would suffice to eliminate all existing taxes on capital, corporations, property, and inheritance…and to wipe out the budget deficit and significantly reduce debt, further stimulating investment.</p>
</blockquote>
<p>Where are these numbers coming from?? I don’t doubt that the gains would be large, or that this would be a more efficient taxation regime, but where is the substantiation?? The models are neither in the text of the book nor in the footnotes, and I don’t think it should be on the reader to fact check these claims?</p>
<p>Regardless of this chapter’s issues with providing evidence commensurate to its claims, the underlying proposal of a COST is innovative and, according to John Halstead, perhaps <a href="https://archive.ph/V1FxX">the most serious intellectual challenge to the idea of private property in history</a>. Worth the read.</p>
<h2>
Radical Democracy
</h2>
<p>In two words: quadratic voting.</p>
<blockquote>
<p>In this chapter, we will show that these two elements – the capacity to save up voting power, and the square root function – would be a much-needed cure to the pathologies of the traditional voting systems used in democracies.</p>
</blockquote>
<p>Why <em>quadratic</em> voting? Why not giving people votes proportional to the cube root of their credits, or the logarithm of their credits? What property does a quadratic have that no other function does?</p>
<p><em>Its derivative is linear.</em> No other function would make the <em>marginal</em> cost of casting an extra vote proportional to the number of votes cast. We make decisions <em>on the margin</em> -- if one voter cares three times as much as another voter about an issue, they will be willing to pay three times as much for an extra vote, and as such buy three times as many votes than the other. No other function would lead to the same outcome.</p>
<blockquote>
<p>QV achieves a perfect balance between the free-rider and the tyranny of the majority problems. If the cost of voting increased more steeply, say, as the fourth power of votes cast, those with strong preferences would vote too little and we would revert to a partial tyranny of the majority. If the cost of voting increased more slowly, those with intense preferences would have too much say, as a partial free-rider problem would prevail.</p>
</blockquote>
<p><em>Radical Markets</em> was my first introduction to this explanation, and for this I am grateful. I think this chapter is worth reading just for this, but your mileage may vary.</p>
<p>QV in practice has seen limited adoption. A version is in <a href="https://www.ccn.com/can-ethereum-based-akasha-revolutionize-social-networks/">Akasha</a> (a Ethereum based blockchain application) where money is the currency by which voters buy their votes. Paying for votes has obvious issues in today’s world – perhaps if the world was much more egalitarian, then this would be a better system than one person, one vote.</p>
<p>There is good reason to believe that QV mitigates polarization as a result of allowing individuals to vote more for issues they care more about. Implementation runs into a host of engineering challenges (how to make the UI easy to use &amp; not require excessive amounts of thinking) but I am optimistic that they are solvable.</p>
<p>I doubt this will gain much traction for public elections at the state and national level. It could be useful and innovative for for local and private governance. Notably, the Colorado House Democratic caucus <a href="https://www.bloomberg.com/news/articles/2019-05-01/a-new-way-of-voting-that-makes-zealotry-expensive?leadSource=uverify%20wall">used it in 2019</a> to decide on their legislative priorities, and <a href="https://www.economist.com/open-future/2019/03/12/inside-taiwans-new-digital-democracy">Taiwan has flirted with QV</a> in their digital democracy.</p>
<h2>
Uniting the World’s Workers
</h2>
<p>Subtitled: <em>REBALANCING THE INTERNATIONAL ORDER TOWARD LABOR</em></p>
<p>The basic argument: economic freedom is necessary for economic growth. Gains from trade have been the primary engine by which this occurs, but as intranational inequality is less severe than international inequality gains from migration should be considered instead. Expanding existing legal migration channels is insufficient and possibly detrimental to natives. Therefore, countries should auction visas and let individuals sponsor migrants. They dub this the Visas between Individuals Program, or VIP.</p>
<p>Bryan Caplan thinks this is his <a href="https://www.econlib.org/radical-markets-in-immigration/">open borders proposal in disguise</a>. I think it’s where the book starts going off the deep end.</p>
<p>I agree with the claim that low-skilled migrants are likely a net drain on the state. As migrants are more likely to work informally and typically send large proportions of their income outside the country, they pay less taxes and consume less than natives. Naturally, this facilitates resentment (amongst a multitude of other cultural reasons, etc.), typically in existing rural, low-income, and more conservative regions.</p>
<p>How is the VIP going to fix this issue, exactly?? Posner and Weyl think that the money generated by the visa auction system will be enough:</p>
<blockquote>
<p>Suppose that OECD countries accepted enough migration to increase their populations by a third. Suppose too that migrants on average bid $6,000 per year for a visa. This sum seems plausible that Mexican migrants to the United States gain more than $11,000 annually under the current highly inefficient system. Average GDP per capita in OECD countries is $35,000, so this proposal would boost the national income of a typical OECD country by almost 6%, comparable to their growth in real income per person in the last five years.</p>
</blockquote>
<p>This is <em>highly</em> optimistic, and assumes that both the demand and quota for visas is at least equivalent to the population of a given OECD country. For America, that’s <em>300 million</em> migrants willing to pay <em>$6,000</em> for a visa <em>per year.</em> This won’t even give you 6% income growth because the GDP per capita in America is so high.</p>
<p>The population of Mexico isn’t even 300 million! The likelihood of most migrants having $6,000 on hand is almost nil! And this money goes to the government, not to private individuals directly – many individuals will not make the connection between increased funding for public services and the <em>massive, massive</em> amounts of migrants this proposal would apparently bring.</p>
<p>Even if migrants would arrive in the numbers that the authors propose, it would utterly, completely, irreversibly change the cultural landscape of the developed world. We are considering migration in numbers such that for every native American there would be a non-native migrant – statistically low-skilled and with poor English. All the typical conservative arguments migration would be multiplied ten-fold, and they would have a point.</p>
<p>But individuals can sponsor visas! Moreso, they can sponsor migrants and get a cut of their earnings such that the migrant earns less than minimum wage! And this isn’t wage slavery because the migrant would be making more than he would have in his home country, so it makes sense!</p>
<blockquote>
<p>The risk of exploitation is minimal because foreign workers are protected by the same health, safety, labor, and employment laws that Americans benefit from, and foreign workers can return to their home country if the employer mistreats them.</p>
</blockquote>
<p>Who <em>enforces</em> these health and safety laws? Americans. What are the economic benefits from arriving from, say, Haiti to the United States? About thirty-fold? What is the likelihood that the system would be abused, ala the Jim Crow South? And even then, what is the likelihood that the migrant would <em>voluntarily return to their home country??</em></p>
<blockquote>
<p>Many people may object to this system. Perhaps to some readers it is uncomfortably similar to indentured servitude, <strong>even though migrants would be free to leave at any time.</strong> Or perhaps it just seems exploitative.</p>
</blockquote>
<p>YES.</p>
<p>Oh, but don’t worry about any of this, because 100 million people will want to sponsor visas.</p>
<blockquote>
<p>Imagine then, that 100 million people sponsor migrant workers. Currently, there are about 45 million foreign-born people in the United States. Of those, about 13 million are legal noncitizens, and 11 million are illegal aliens. If our program replaced existing migrant worker visas [which it wouldn’t], the number of migrant workers would increase dramatically, from 24 million to 100 million, but <strong>not in a way that would disrupt society and overwhelm public services.</strong> [sure] It would leave the ratio of foreign-born to natives in the United States below the numbers in even the most restrictive GCC countries.</p>
</blockquote>
<p>To be clear, 22.7% of Americans would be foreign born, or a little bit less than one in every four American residents would be migrants. Yes, this is a <em>potentially sustainable</em> foreign population, but at once? These GCC countries being used as a reference class are members of the <em>Gulf Cooperation Council.</em> Members include the UAE, Qatar, Kuwait, Bahrain, Oman, and Saudi Arabia. Countries positively praised for their labor rights record.</p>
<p>A more sane reference class would be Australia and New Zealand, which have about one foreigner for every two natives (admittedly, which are mentioned as examples). Where did they come from? According to <a href="https://en.wikipedia.org/wiki/Immigration_to_Australia">Wikipedia</a>:</p>
<blockquote>
<p>After World War II Australia launched a massive immigration program, believing that having narrowly avoided a Japanese invasion, Australia must “populate or perish”. Hundreds of thousands of displaced Europeans migrated to Australia and over 1,000,000 British subjects immigrated under the Assisted Passage Migration Scheme… The scheme initially targeted citizens of all Commonwealth countries; after the war it gradually extended to other countries such as the Netherlands and Italy.</p>
</blockquote>
<p>In other words, Australia heavily enouraged white immigration (see the <a href="https://en.wikipedia.org/wiki/White_Australia_policy">White Australia policy</a>) until the early 1970s, at which point it was comfortable accepting large amounts of migrants. <em>Skilled</em> migrants, I might add. There are only about 1.5 million temporary migrants in Australia (compared to about 7.5 million total foreign-born Australian residents), which is an imperfect yet decent upper bound on the number of low-skilled Australian migrants.</p>
<p>There is no developed country which has managed to have a large foreign-born low-skilled migrant population enter over a short period of time and provide them the same standard of living or the same rights as natives. The GCC has similar proportions of low-skilled workers and an atrocious human rights record; Australia and New Zealand manage to treat migrants decently but with a predominantly high-skilled population.</p>
<p>These are arguments against any open-borders policy that advocates for a large influx of low-skilled immigrants over a short period of time. But the VIP is <em>doubly</em> stupid because it places the liability of migrant well-being on <em>low-skilled natives,</em> the very same people who are the least well equipped to handle it.</p>
<p>Anthony is a native Ohioan, Bishal is a hypothetical migrant under the VIP:</p>
<blockquote>
<p>In our case, Anthony will be required to obtain basic health insurance for Bishal before he arrives (though this would come out of Bishal’s earnings). If Bishal is unable to find work, Anthony must support him for as long as he remains in the country…If Bishal commits a crime, he will be deported after serving his sentence; Anthony will be required to pay a fine. If Bishal disappears, Anthony will also be fined. We do not think that the fine needs to be large, but it should sting.</p>
</blockquote>
<p><em>100 million Americans</em> are supposed to sign up for this??</p>
<p>If you want a defense of open borders &amp; greatly expanded immigration, you can read Caplan’s comic book. Not this.</p>
<h2>
Dismembering the Octopus
</h2>
<p>This chapter advocates for letting BlackRock invest in Uber but not Lyft, Coca-Cola but not Pepsi, and McDonald’s but not KFC. Anti-trust for institutional capital. A good idea in theory, but I have doubts about the practical implementation.</p>
<blockquote>
<p>Who are the institutional investors, anyway? They include companies that manage mutual funds and index funds, asset managers, and other firms that buy and hold equities on behalf of their customers. The largest names are those we mentioned above: Vanguard, BlackRock, State Street, and Fidelity.</p>
</blockquote>
<p>26% of the public American stock market is held by institutional investors. As institutional investors are the only single entities with large enough amounts of capital to own significant portions of centibillion dollar companies, they have an outsized influence on industry policy. And because they own significant portions of companies which are nominally supposed to be competing in the same industries, it is in their interest to stifle competition within those industries, creating pseudo-cartels negatively affecting consumers.</p>
<p>As an example, look at banking. BlackRock, Vanguard, State Street, and Fidelity are in the top five largest shareholders of JP Morgan Chase, Bank of America, Citigroup, Wells Fargo, U.S. Bank, <em>and</em> PNC Bank. If the same entities own the companies that are nominally supposed to be competing, the incentives to compete are diminished &amp; monopolistic tendencies being to crop up. Think of Rockefeller after Standard Oil broke up – he still was the owner of the subsidiary companies in each state, and this allowed him to multiply his wealth far beyond what would have been possible if Standard Oil stayed as one company.</p>
<p>Monopolies are bad for consumers! This is what anti-trust law was made to combat! We already bring anti-trust litigation against firm mergers which will increase market concentration, why not do the same for capital investments?</p>
<blockquote>
<p>A simple but Radical reform can prevent this dystopia: ban institutional investors from diversifying their holdings within industries while allowing them to diversity <em>across</em> industries. BlackRock would own as much as it wants of (say) United Airlines, but it would own no stake in Delta, Southwest, and the others. It would also own as much as it wants of Pepsi, but not Coca-Cola and Dr. Pepper. And it would own as much as it wants of JP Morgan, but none of Citigroup and the other banks…</p>
<p>Our approach can be stated as a simple rule:</p>
<p>No investor holding shares of more than a single effective firm in an oligopoly and participating in corporate governance may own more than 1% of the market.</p>
</blockquote>
<p>I agree with this policy, in principle. However, it seems difficult to disambiguate industries cleanly. In today’s world, where a relatively small number of massive corporations control disproportionate amounts of the economy, it seems at least somewhat viable. But what of venture capital firms investing in multiple competing startups? Would they be required to divest from one of them if both become unicorns? How big would an industry have to be for the FTC to care about regulating it?</p>
<p>The authors raise the issue of the lack of usage of anti-trust in local markets. For instance:</p>
<blockquote>
<p>…sociologist Matthew Desmond suggests that landlords in poor neighborhoods often buy up enough housing to have substantial power to drive up rents by holding units vacant and artificially depressing supply. Yet as far as we know, no antitrust case has ever been brought against such local but potentially devastating attempts at monpolization.</p>
</blockquote>
<p>Yes, property is easy to point to as an instance of monopolistic behavior ruining lives. I am wary, however, of giving regulators even more power than they currently have. Property market regulations seem to be, on the whole, good and necessary (or at least, good regulation has the potential to have a large positive impact). But letting regulators control the behaviors of small businesses seems bad? Perhaps giving business owners more leeway to bring civil suits against others engaging in anti-competitive practices is the way to go.</p>
<p>Finally, the authors address the digital economy:</p>
<blockquote>
<p>Antitrust authorities, who are accustomed to worrying about competition within existing, well-defined, and easily measurable markets, have allowed most mergers between dominant tech firms and younger potential disrupters to proceed. Google was allowed to buy mapping startup Waze and artificial intelligence powerhouse DeepMind; Facebook to buy Instagram and WhatsApp; and Microsoft to buy Skype and Linkedin.</p>
</blockquote>
<p>Their solution:</p>
<blockquote>
<p>To prevent this dampening of innovation and competition, antitrust authorities must learn to think more like entrepreneurs and venture capitalists, seeing possibilities beyond existing market structures to the potential markets and technologies of the future, even if these are highly uncertain.</p>
</blockquote>
<p>Much easier said than done. The day a government regulating body has the same market foresight as the entrepreneurs and investors in the market, I will eat my hat.</p>
<p>Meh. Not as groundbreaking as the first two proposals, and not as patently idiotic as the third. It is surprising that they advocate for a drastic expansion in market regulation in a book nominally focused on relying on free market forces to bring about good, but oh well.</p>
<p>(this is where the <em>Activist Markets</em> label came from)</p>
<h2>
Data as Labor
</h2>
<p><em>Pay people for their data.</em> Never mind that the marginal benefit of your data to any given firm is negligble. Because machine learning systems need large amounts of data and have spiky loss curves, diminishing marginal returns for data doesn’t count here!</p>
<p>(I am not joking, this is the argument Posner &amp; Weyl make)</p>
<blockquote>
<p>However, if later, harder problems are more valuable than earlier, easier ones, then data’s marginal value may increase as more data become available. A classic example of this is speech recognition. Early ML systems for speech recognition achieved gains in accuracy more quickly than did later systems. However, a speech recognition system with all but very high accuracy is mostly useless, as it takes so much time for the user to correct the errors it makes. This means that the last few percentage points of accuracy may make a bigger difference for the value of the system than the first 90% does. The marginal value grows to the extent that it allows this last gap to be filled.</p>
</blockquote>
<p>Maybe the concept of <em>scale, scale, scale</em> wasn’t as prominent in their time as it is nowadays? Two issues: model capabilities grow logarithmically with the amount of data they are trained on, and oftentimes getting from 99% to 99.9% requires as much data as getting from 0% to 99%. The idea that the marginal datapoint has anything but negligible value is absurd.</p>
<p>Paying people for data that’s used to finetune models, sure. Paying people to RLHF models, sure. Paying people for data that’s used in massive datasets – in principle, this should probably happen, but this will come <em>nowhere near</em> to providing individuals with an income equivalent to their job that has just been automated.</p>
<blockquote>
<p>To make a ballpark estimate of what gains we might expect, we suppose that over the next twenty years, AI that would (absent our proposal) not pay data providers comes to represent 10% of the economy. We further assume that the true share of labor if paid in this area of the economy is two-thirds, as in the rest of the economy; and that paying labor fairly expands the output of this sector by 30%, as seems quite reasonable given productivity gains accompanying fairer labor practices in the early twentieth century. Then our proposal would increase the size of the economy by 3% and transfer about 9% of the economy from the owners of capital to those of labor.</p>
</blockquote>
<p>Fundamentally, the authors miss the point that AI will make labor substitutable with non-human entities. The world in five years will likely use datasets generated by AI systems, simply because the Internet is too small for the capabilities of the models we want to build. Paying people for their data is not an alternative to UBI in an increasingly automated economy.</p>
<p>I would critique this chapter more, but it seems like a reasonable proposal to make in the world before ChatGPT and before people realized that scaling laws held to this extent. Still not worth reading in 2023.</p>]]></description>
    <pubDate>Sat, 14 Oct 2023 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/radical-markets/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Geneva</title>
    <link>https://www.yudhister.me/geneva/</link>
    <description><![CDATA[<p>Geneva is evil.</p>
<p>It’s overpriced, loud, and dirty. Paying ten francs for a medicore street taco is no way to live life. God forbid you visit the city center during the day, and stay as far away from Geneva station as you can. I thought the air was supposed to be good in the Alps?</p>
<p>But above all, it reeks of fakeness.</p>
<p>It calls itself the “Peace Capital”, claims it’s too good to have twin cities, and prides itself on its cosmopolitanism. On what grounds? Before Hitler’s fall, Geneva’s only claim to facilitating international diplomacy was hosting the League of Nations – admittedly the best international governing body we’ve had thus far, but still. After, every international organization and their shadow backers clamored to have their headquarters (or at least their European headquarters) in Geneva. The UN, WHO, UNHCR, Red Cross, WTO, WIPO, WMO, ILO, …</p>
<p>Did you know that the largest non-financial services industry in Geneva is watchmaking? Rolex, Patek Philippe, etc. have factories just outside of Geneva proper. To be fair, ‘financial services’ also excludes commodity trading, of which Geneva is to oil, sugar, grains, and coffee as Rotterdam is to metals. Vitol &amp; Trafigura both have their headquarters in Geneva (and one must wonder whether or not this is for convenience or to take advantage of lax Swiss banking laws…remember Marc Rich?)</p>
<p>Two-thirds of the corporate tax in Geneva comes from commodity trading, banking, and watchmaking. These international organizations? Don’t contribute to the economy. (Yes, they bring people &amp; these people use services &amp; this allows Geneva natives to benefit from the overwhelming amount of NGOs and international bodies in their city. Still.)</p>
<p>Tragically, Geneva once had a soul. The ‘Protestant Rome’ which once served as the birthplace of the Calvinist Revolution was annexed by Catholic France &amp; revolted as a response. The city had opinions that informed its identity – not a pseudo-identity formed from undeserved arrogance &amp; globalism.</p>
<p>Demographic shifts (mostly French immigration to French-speaking Switzerland) led to Catholics forming the largest religious group in Geneva today, followed by atheists. (I am not blaming immigration for Geneva’s soullessness! it is just another piece of the puzzle). This, along with its absurd emphasis on being a truly international city, undergird the sense that Geneve has lost its way.</p>
<p>And the Jet d’Eau… really? Geneva really had to take the self-masturbatory imagery to another level…</p>]]></description>
    <pubDate>Wed, 13 Sep 2023 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/geneva/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Toledo</title>
    <link>https://www.yudhister.me/toledo/</link>
    <description><![CDATA[<blockquote>
<p>One recounts that Washington Irving, who was traveling in Spain at the time, suggested the name to his brother, a local resident; this explanation ignores the fact that Irving returned to the United States in 1832. Others award the honor to Two Stickney, son of the major who quaintly numbered his sons and named his daughters after States. The most popular version attributes the naming to Willard J. Daniels, a merchant, who reportedly suggested Toledo because it ‘is easy to pronounce, is pleasant in sound, and there is no other city of that name on the American continent.’</p>
<p>- <em>The Ohio Guide</em> on the naming of Toledo, Ohio</p>
</blockquote>
<p>I found myself in Toledo one night.</p>
<p>I was trying to get from Ann Arbor to Boston via Amtrak (I had no working photo ID, and at the time I didn’t realize that TSA takes IDs up to one year expired as valid for domestic travel) and for some reason my connection was in Toledo. Bus from Ann Arbor to Toledo, train from Toledo to Boston. Simple.</p>
<p>(it actually was quite simple — this won’t be some sort of beginning to a trashy horror story. Pinky promise)</p>
<p>Abandoned Factories
1967: Super Bowl 1, Apollo 1 blows up, Ali fights the draft, Thurgood Marshall rises to the court, and Detroit dies.</p>
<p>Woe befell America’s automotive capital with the long, hot summer of ’67 and some of the bloodiest race riots in American history. Eventually LBJ used the Insurrection Act to send the National Guard to quell the riots, but it left the west of Lake Erie a shell of its former self.</p>
<p>Today, Detroit is almost a ghost town. It’s defaulted on its debt (and gone bankrupt!), has the 4th highest murder rate in major cities in the USA, and its former mayor was convicted on 24 felony counts and sentenced to 28 years in prison.</p>
<p>Luckily, I wasn’t in Detroit! So you can imagine how surprised I was to find a ramshackle paper mill right next to the train station. And next to that was a junkyard, and next to that was another unused factory, and next to that was… you get the picture.</p>
<p>If you were in front of an abandoned factory at 3AM I would certainly hope you at least took a look around inside. Not that I would ever do such a thing, but it seems like such a missed opportunity…</p>
<p>[pictures incoming! in future updates :D]</p>
<p>Apparently the dereliction of Detroit’s manufacturing capacity took Toledo (and eventually, the rest of the Midwest) with it.</p>
<p>Fellow Travelers
Mainstays on the Amtrak: Mennonites, punks, and wannabe vagabonds.</p>
<p>Mennonites &amp; the Amish are often mistaken for each other. Both practice a certain amount of technological ascetism (more extreme in the conservative branches), both are Anabaptist derived, and both use the Amtrak as a form of transportation. But you probably see the conservative Mennonites (given their distinctive dress – 1850s cowboy vibes), especially given that large numbers of them settled in the Midwest.</p>
<p>Punks are interchangeable. Spiky pink hair, silver chains, black skinny jeans, relationships with inappropriate age gaps – always the same. Entertaining, in small doses.</p>
<p>Wannabe vagabonds: me! :D</p>
<p>Highly, highly recommend talking to the person sitting next to (or in front of, or behind) you on the train. Americans like talking to people, and you probably have nothing better to do. The WiFi is atrocious.</p>
<p>Why Is The Station So BIG
MLK Plaza is Toledo’s station. It is massive.</p>
<p>Four floors. Gothic. Nearly a century and a half old. A multimillion dollar investment in the mid-20th century. To serve an area that is now dead.</p>
<p>At least National Train Day is a week early in Toledo. The city probably needs the consolation.</p>
<p>Microcosm
Walk around Toledo at night. See the emptiness. Feel the emptiness. Get in touch with the dying Rust Belt. And maybe visit the first ever hippoquarium exhibit in a zoo.</p>
<p>Would rec.</p>]]></description>
    <pubDate>Tue, 12 Sep 2023 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/toledo/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Hyperreals in a Nutshell</title>
    <link>https://www.yudhister.me/hyperreals-in-a-nutshell/</link>
    <description><![CDATA[<p><em>Epistemic status: Vaguely confused and probably lacking a sufficient technical background to get all the terms right. Is very cool though, so I figured I’d write this.</em></p>
<blockquote>
<p>And what are these Fluxions? The Velocities of evanescent Increments? And what are these same evanescent Increments? They are neither finite Quantities nor Quantities infinitely small, nor yet nothing. May we not call them the ghosts of departed quantities?</p>
<p>George Berkeley, <em>The Analyst</em></p>
</blockquote>
<p>When calculus was invented, it didn’t make sense. Newton and Leibniz played fast and dirty with mathematical rigor to develop methods that arrived at the correct answers, but no one knew why. It took another one and a half centuries for Cauchy and Weierstrass develop analysis, and in the meantime people like Berkeley refused to accept the methods utilizing these “ghosts of departed quantities.”</p>
<p>Cauchy’s and Weierstrass’s solution to the crisis of calculus was to define infinitesimals in terms of limits. In other words, to not describe the behavior of functions directly acting on infinitesimals, but rather to frame the the entire endeavour as studying the behaviors of certain operations in the limit, in that weird superposition of being arbitrarily close to something yet not it.</p>
<p>(And here I realize that math is better shown, not told)</p>
<p>The limit of a function <span class="math inline">\(f(x)\)</span>at <span class="math inline">\(x=a\)</span> is <span class="math inline">\(L\)</span> if for any <span class="math inline">\(\epsilon&gt;0\)</span> there exists some <span class="math inline">\(\delta &gt; 0\)</span> such that if </p>
<p><span class="math display">\[|x-a|&lt;\delta,\]</span></p>
<p> then </p>
<p><span class="math display">\[|f(x)-L|&lt;\epsilon.\]</span></p>
<p>Essentially, the limit exists if there’s some value <span class="math inline">\(\delta\)</span> that forces <span class="math inline">\(f(x)\)</span> to be within <span class="math inline">\(\epsilon\)</span> of <span class="math inline">\(L\)</span> if <span class="math inline">\(x\)</span> is within <span class="math inline">\(\delta\)</span> of <span class="math inline">\(a\)</span>. Note that this has to hold true for all <span class="math inline">\(\epsilon\)</span>, and you choose <span class="math inline">\(\epsilon\)</span> first!</p>
<p>From this we get the well-known definition of the derivative: </p>
<p><span class="math display">\[f&#39;(x) = \lim_{h \to 0} \frac{f(x+h)-f(x)}{h}\]</span></p>
<p> and you can define the integral similarly.</p>
<p>The limit solved calculus’s rigor problem. From the limit the entire field of analysis was invented and placed on solid ground, and this foundation has stood to this day.</p>
<p>Yet, it seems like we lose something important when we replace the idea of the “infinitesimally small” with the “arbitrarily close to.” Could we actually make numbers that were <em>infinitely small?</em></p>
<h2 id="the-sequence-construction">The Sequence Construction</h2>
<p>Imagine some mathematical object that had all the relevant properties of the real numbers (addition, multiplication are associative and commutative, is closed, etc.) but had infinitely small and infinitely large numbers. What does this object look like?</p>
<p>We can take the set of all infinite sequences of real numbers <span class="math inline">\(\mathbb{R}^\mathbb{N}\)</span> as a starting point. A typical element <span class="math inline">\(a\in\mathbb{R}^\mathbb{N}\)</span> would be </p>
<p><span class="math display">\[a = (a_0, , a_1, , a_2, \ldots)\]</span></p>
<p> where <span class="math inline">\(a_0, a_1, a_2, \ldots\)</span> is some infinite sequence of real numbers.</p>
<p>We can define addition and multiplication element-wise as: </p>
<p><span class="math display">\[a + b = (a_{0} + b_{0}, , a_{1} + b_{1}, a_{2} + b_{2}, \ldots),\]</span></p>
<p><span class="math display">\[a \cdot b = (a_0 \cdot b_0, a_1 \cdot b_1, a_2 \cdot b_2, \ldots).\]</span></p>
<p>You can verify that this is a commutative ring, which means that these operations behave nicely. Yet, being a commutative ring is not the same thing as being an ordered field, which is what we eventually want if our desired object is to have the same properties as the reals.</p>
<p>To get from <span class="math inline">\(\mathbb{R}^\mathbb{N}\)</span> to a field structure, we have to modify it to accommodate well-defined division. The typical way of doing this is looking at how to introduce the zero product property: i.e. ensuring that if <span class="math inline">\(a,b \in \mathbb{R}^\mathbb{N}\)</span> then if <span class="math inline">\(ab = 0\)</span> either one of <span class="math inline">\(a,b\)</span> is <span class="math inline">\(0\)</span>.</p>
<p>If we let <span class="math inline">\(0\)</span> be the sequence of all zeros <span class="math inline">\((0,0,0,\ldots)\)</span> in <span class="math inline">\(\mathbb{R}^\mathbb{N},\)</span> then it is clear that we can have two non-zero elements multiply to get zero. If we have </p>
<p><span class="math display">\[a = (a, 0, 0, 0, \ldots),\]</span></p>
<p> and </p>
<p><span class="math display">\[b = (0,b,b,b, \ldots),\]</span></p>
<p> then neither of these are the zero element, yet their product is zero.</p>
<p>How do we fix this? Equivalence classes!</p>
<p>Our problem is that there are too many distinct “zero-like” things in the ring of real numbered sequences. Intuitively, we should expect the sequence <span class="math inline">\((0,1,0,0,\ldots)\)</span> to be <em>basically</em> zero, and we want to find a good condensation of <span class="math inline">\(\mathbb{R}^\mathbb{N}\)</span> that allows for this.</p>
<p>In other words, how do we make all the sequences with ”<a href="https://www.ykumar.org/almost-always/">almost all</a>” their elements as zero to be equal to zero?</p>
<h2 id="almost-all-agreement-ft.-ultrafilters">Almost All Agreement ft. Ultrafilters</h2>
<p>Taken from ”<a href="https://www.ykumar.org/almost-always/">five ways to say “Almost Always” and actually mean it</a>“:</p>
<blockquote>
<p>A <em>filter</em> <span class="math inline">\(\mathcal{F}\)</span> on an arbitrary set <span class="math inline">\(I\)</span> is a collection of subsets of <span class="math inline">\(I\)</span> that is closed under set intersections and supersets. (Note that this means that the smallest filter on <span class="math inline">\(I\)</span> is <span class="math inline">\(I\)</span> itself).</p>
<p>An <em>ultrafilter</em> is a filter which, for every <span class="math inline">\(A \subseteq I\)</span>, contains either <span class="math inline">\(A\)</span> or its complement. A <em>principal</em> ultrafilter contains a finite set.</p>
<p>A <em>nonprincipal ultrafilter</em> does not.</p>
<p>This turns out to be an incredibly powerful mathematical tool, and can be used to generalize the concept of “almost all” to esoteric mathematical objects that might not have well-defined or intuitive properties.</p>
</blockquote>
<p>Let’s say we define some nonprincipal ultrafilter <span class="math inline">\(\mathcal{U}\)</span> on the natural numbers. This will contain all cofinite sets, and will exclude all finite sets. Now, let’s take two sequences <span class="math inline">\(a,b \in \mathbb{R}^\mathbb{N},\)</span> and define their <em>agreement set</em> <span class="math inline">\(I\)</span> to be the indices on which <span class="math inline">\(a,b\)</span> are identical (have the same real number in the same position).</p>
<p>Observe that <span class="math inline">\(I\)</span> is a set of natural numbers. If <span class="math inline">\(I \in \mathcal{U},\)</span> then <span class="math inline">\(I\)</span> cannot be finite, and it seems pretty obvious that almost all the elements in <span class="math inline">\(a,b\)</span> are the same (they only disagree at a finite number of places after all). Conversely, if <span class="math inline">\(I \not\in \mathcal{U},\)</span> this implies that <span class="math inline">\(\mathbb{N}/I \in \mathcal{U}\)</span>, which means that <span class="math inline">\(a,b\)</span> disagree at almost all positions, so they probably shouldn’t be equal.</p>
<p>Voila! We have a suitable definition of “almost all agreement”: if the agreement set <span class="math inline">\(I\)</span> is contained in some arbitrary nonprincipal ultrafilter <span class="math inline">\(\mathcal{U}\)</span>.</p>
<p>Let <span class="math inline">\(^*\mathbb{R}\)</span> be the quotient set of <span class="math inline">\(\mathbb{R}^\mathbb{N}\)</span> under this equivalence relation (essentially, the set of all distinct equivalence classes of <span class="math inline">\(\mathbb{R}^\mathbb{N}\)</span>). Does this satisfy the zero product property?</p>
<p>(Notation note: we will let <span class="math inline">\((a)\)</span> denote the infinite sequence of the real number <span class="math inline">\(a\)</span>, and <span class="math inline">\([a]\)</span> the equivalence class of the sequence <span class="math inline">\((a)\)</span> in <span class="math inline">\(^* \mathbb{R}\)</span>.)</p>
<h2 id="yes-this-behaves-like-the-real-numbers">Yes, This Behaves Like The Real Numbers</h2>
<p>Let <span class="math inline">\(a,b \in \mathbb{R}^\mathbb{N}\)</span> such that <span class="math inline">\(ab = (0)\)</span>. Let’s break this down element-wise: either <span class="math inline">\(a_n, b_n\)</span> must be zero for all <span class="math inline">\(n \in \mathbb{N}.\)</span> As one of the ultrafilter axioms is that it must contain a set or its complement, either the index set of the zero elements in <span class="math inline">\(a\)</span> or the index set of the zero elements in <span class="math inline">\(b\)</span> will be in any nonprincipal ultrafilter on <span class="math inline">\(\mathbb{N}.\)</span> Therefore, either <span class="math inline">\(a\)</span> or <span class="math inline">\(b\)</span> is equivalent to <span class="math inline">\((0)\)</span> in <span class="math inline">\(^* \mathbb{R},\)</span> so <span class="math inline">\(^* \mathbb{R}\)</span> satisfies the zero product property.</p>
<p>Therefore, division is well defined on $^<em>\mathbb{R}<span class="math inline">\(! Now all we need is an ordering, and luckily almost all agreement saves the day again. We can say for \)</span>a,b \in ^</em>\mathbb{R}$ that <span class="math inline">\(a&gt;b\)</span> if almost all elements in <span class="math inline">\(a\)</span> are greater than the elements in <span class="math inline">\(b\)</span> at the same positions (using the same ultrafilter equivalence).</p>
<p>So, <span class="math inline">\(^*\mathbb{R}\)</span> is an ordered field!</p>
<h2 id="infinitesimals-and-infinitely-large-numbers">Infinitesimals and Infinitely Large Numbers</h2>
<p>We have the following hyperreal:</p>
<p><span class="math display">\[\epsilon = \left( 1, \frac{1}{2}, \frac{1}{3}, \ldots, \frac{1}{n}, \ldots \right).\]</span></p>
<p>Recall that we embed the real numbers into the hyperreals by assigning every real number <span class="math inline">\(a\)</span> to the equivalence class <span class="math inline">\([a]\)</span>. Now observe that <span class="math inline">\(\epsilon\)</span> <em>is smaller than every real number embedded into the hyperreals this way.</em></p>
<p>Pick some arbitrary real number <span class="math inline">\(a\)</span>. There exists <span class="math inline">\(p \in \mathbb{N}\)</span> such that <span class="math inline">\(\frac{1}{p}&lt; a\)</span>. There are infinitely many fractions of the form <span class="math inline">\(\frac{1}{n}\)</span>, where <span class="math inline">\(n\)</span> is a natural number greater than <span class="math inline">\(p\)</span>, so <span class="math inline">\(\epsilon\)</span> is smaller than <span class="math inline">\((a)\)</span> at almost all positions, so it is smaller than <span class="math inline">\(a\)</span>.</p>
<p>This is an infinitesimal! This is a rigorously defined, coherently defined, <em>infinitesimal number</em> smaller than all real numbers! In a number system which shares all of the important properties of the real numbers! (except the Archimedean one, as we will shortly see, but that doesn’t really matter).</p>
<p>Consider the following</p>
<p><span class="math display">\[\Omega = (1,2,3, \ldots).\]</span></p>
<p>By a similar argument this is larger than all possible real numbers. I encourage you to try to prove this for yourself!</p>
<p>(The Archimedean principle is that which guarantees that if you have any two real numbers, you can multiply the smaller by some natural number to become greater than the other. This is not true in the hyperreals. Why? (Hint: <span class="math inline">\(\Omega\)</span> breaks this if you consider a real number.))</p>
<h2 id="how-does-this-tie-into-calculus-exactly">How does this tie into calculus, exactly?</h2>
<p>Well, we have a coherent way of defining infinitesimals!</p>
<p>The short answer is that we can define the <em>star</em> operator (also called the <em>standard part</em> operator) <span class="math inline">\(\text{st}(x)\)</span> as that which maps any hyperreal to its closest real counterpart. Then, the definition of a derivative becomes </p>
<p><span class="math display">\[f&#39;(x) = \text{st}\left( \frac{^*f(x+\Delta x)- ^*f(x)}{\Delta x}\right)\]</span></p>
<p> where <span class="math inline">\(\Delta x\)</span> is some infinitesimal, and <span class="math inline">\(^*f\)</span> is the natural extension of <span class="math inline">\(f\)</span> to the hyperreals. More on this in a future blog post!</p>
<p>It also turns out the hyperreals have a bunch of really cool applications in fields far removed from analysis. Check out my expository paper on <a href="https://ykumar.org/files/Nonstandard_Methods_and_Applications_in_Ramsey_Theory.pdf">the intersection of nonstandard analysis and Ramsey theory</a> for an example!</p>
<p>Yet, the biggest effect I think this will have is pedadogical. I’ve always found the definition of a limit kind of unintuitive, and it was specifically invented to add <em>post hoc</em> coherence to calculus after it had been invented and used widely. I suspect that formulating calculus via infinitesimals in introductory calculus classes would go a long way to making it more intuitive.</p>]]></description>
    <pubDate>Wed, 10 May 2023 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/hyperreals-in-a-nutshell/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>five ways to say &#39;Almost Always&#39;</title>
    <link>https://www.yudhister.me/almost-always/</link>
    <description><![CDATA[<h2 id="in-english">In English</h2>
<p>A boring, colloquial way.</p>
<blockquote>
<p>”<em>Almost all the eggs are gone!” (as half a dozen remain)</em></p>
</blockquote>
<h2 id="not-finite-ness">Not-Finite-ness</h2>
<p>A slightly-less-boring mathy way.</p>
<blockquote>
<p>”<em>Almost all prime numbers are odd!</em>”</p>
</blockquote>
<p>There are infinitely many primes. There is exactly one even prime number (2). Infinity minus one is… infinity.</p>
<blockquote>
<p>”<em>Almost all natural numbers are larger than one-hundred thousand quadrillion quadrillion vigintillion! (10^83)</em>”</p>
</blockquote>
<p>There are infinitely many natural numbers. There are infinitely many natural numbers larger than one-hundred thousand quadrillion quadrillion vigintillion. No practical difference between 10^83 and 1 (other than that one is an upper bound on the number of atoms in the universe).</p>
<p>You formalize this with sets: if you have some (infinite) set, a subset whose complement has a finite cardinality encompasses almost everything in the set. We call this <em>cofiniteness.</em></p>
<h2 id="probability-one">Probability ~One</h2>
<p>A way to quantify surety.</p>
<blockquote>
<p>”<em>Almost all the people will lose money at the casino!</em>”</p>
</blockquote>
<p>I’m not sure what the exact rates are, but I’d bet money on this being true.</p>
<blockquote>
<p>”<em>Almost all numbers are composite!</em>”</p>
</blockquote>
<p>It is well known that the number of prime numbers below <span class="math inline">\(N\)</span>is approximately <span class="math inline">\(N / \ln N\)</span>. In the limit as <span class="math inline">\(N\)</span> goes to infinity, the ratio of primes to non-primes numbers goes to approximately zero. So if you choose a random positive integer, I would bet my life savings that it’s composite.</p>
<blockquote>
<p>”<em>Almost all graphs are</em> <a href="https://en.wikipedia.org//wiki/Asymmetric_graph"><em>asymmetric</em></a><em>.</em>”</p>
</blockquote>
<p>An intuitive explanation: if you take all possible combinations of nodes and vertices and let the number of each tend towards infinity, you should expect chaos to triumph over order. (sorry Ramsey). This does depend on a certain definition of symmetry, however, and a clearer statement would be ”<em>almost all graphs have only one automorphism.</em>”</p>
<h2 id="the-lebesgue-measure-is-not-zero">The Lebesgue Measure is Not-Zero</h2>
<p>A straightforward-yet-strange way for real numbers.</p>
<p>The <a href="https://en.wikipedia.org/wiki/Lebesgue_measure">Lebesgue measure</a> is what you get when you try to generalize length, area, and volume to <span class="math inline">\(n\)</span>-dimensions. It forms the basis for our current understanding of integration, and helps us figure out how big stuff is.</p>
<p>Something with zero volume basically doesn’t exist anyway.</p>
<blockquote>
<p>”<em>Almost all real numbers are irrational!</em>”</p>
</blockquote>
<p>Well yes, all the rationals have measure zero. All countable sets have measure zero, and the rationals are countable.</p>
<p>(Measures are nice: they’re a neat generalization of physical scales (mass, volume, etc.) to arbitrary mathematical objects. They’re particularly useful for dealing with continuous things ~we love Lebesgue measures~)</p>
<blockquote>
<p>”<em>Almost all real numbers are noncomputable!</em>”</p>
</blockquote>
<p>Well yes? Of course an arbitrary real number can’t be computed to arbitrary precision by a finite algorithm? <a href="https://en.wikipedia.org/wiki/Computable_number">Computable numbers</a> are <em>countable,</em> remember? Nevermind that <em>basically all the numbers we deal with are computable,</em> this is <em>obvious.</em></p>
<p>(Measure zero stuff basically doesn’t exist, even if they’re the only things we use on a daily basis)</p>
<blockquote>
<p>”<em>Almost all real numbers aren’t in the Cantor set!</em>”</p>
</blockquote>
<p>Well yes, of course! Even though the <a href="https://en.wikipedia.org/wiki/Cantor_set">Cantor set</a> is uncountably infinite, it still has measure zero! It’s a weird pseudo-fractal embedding of the real line that somehow manages to lose everything in translation but still keep all the relevant information.</p>
<p>(Idk, the Cantor set is weird)</p>
<h2 id="it-is-contained-in-a-nonprincipal-ultrafilter">It is Contained in a Nonprincipal Ultrafilter</h2>
<p>A <em>filter</em> <span class="math inline">\(\mathcal{F}\)</span> on an arbitrary set <span class="math inline">\(I\)</span> is a collection of subsets of <span class="math inline">\(I\)</span> that is closed under set intersections and supersets. (Note that this means that the smallest filter on <span class="math inline">\(I\)</span> is <span class="math inline">\(I\)</span> itself).</p>
<p>An <em>ultrafilter</em> is a filter which, for every <span class="math inline">\(A \subseteq I\)</span>, contains either <span class="math inline">\(A\)</span> or its complement. A <em>principal</em> ultrafilter contains a finite set.</p>
<p>A <em>nonprincipal ultrafilter</em> does not.</p>
<p>This turns out to be an incredibly powerful mathematical tool, and can be used to generalize the concept of “almost all” to esoteric mathematical objects that might not have well-defined or intuitive properties.</p>
<p>(One of the coolest uses of nonprincipal ultrafilters is in the construction of the hyperreals, post forthcoming).</p>
<p>Let <span class="math inline">\(\mathcal{U}\)</span> be a nonprincipal ultrafilter over the natural numbers. It obviously contains no finite sets, but we run into a slight issue when we take the set</p>
<p><span class="math display">\[E = \{2,4,6,8, \ldots \}\]</span></p>
<p>and its complement</p>
<p><span class="math display">\[O = \{1,3,5,7, \ldots \}.\]</span></p>
<p>By the filter axioms, only one of these can be in <span class="math inline">\(\mathcal{U}\)</span>, and one of them <em>has</em> to be in <span class="math inline">\(\mathcal{U}\)</span>. And thus, we can safely say:</p>
<blockquote>
<p>”<em>Almost all natural numbers are <strong>even</strong>.</em>”</p>
</blockquote>]]></description>
    <pubDate>Sun, 23 Apr 2023 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/almost-always/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Review | The Romantic Enlightenment</title>
    <link>https://www.yudhister.me/romantic-enlightenment/</link>
    <description><![CDATA[<p><em>by Geoffrey Clive</em></p>
Well. I am definitely rereading this in a year. <br/><br/>Clive has a style of writing in which reference is made to numerous sources casually and without introduction throughout the book. He makes reference to Mozart, Hume, Schopenhauer, Kierkegaard, Melville, Shakespeare, Dostoyevsky, Socrates, Marx, Kant, and others constantly, and keeping up with the fruits of his obvious hyperlexity is quite difficult without the necessary prerequisites. As I am unfamiliar with many of these works, I can’t particularly comment on much of the book (specifically the sections dedicated to Hume and William James, and to a lesser extent Dostoyevsky and Kafka). <br/><br/>His thesis is as follows: the union of Romanticism and Empiricism from the time of Bach to Kafka gave rise to greatness, and its breakdown has occurred (really from the time of Nietzsche’s insanity, but only readily apparent in the 20th century). Examples include the rise of “scientism” and of modernity more generally (he views modern science as an outgrowth of the Renaissance, which in and of itself was an overreaction to the repressive nature of the Middle Ages). <br/><br/>(his takes on the modern scientific approach seem to be superficially Feyerabendian. I will compare this to Against Method)<br/><br/>The ancients (Socrates, Plato, Aristotle) maintained a level of mystery about the world, walking the careful line between <i>espirit de geometrie</i> and the <i>espirit de finesse</i> such that they could create a more perfect union. However, in modernity, the “daemonic” has been rejected by the thinkers of today (he blames Rousseau &amp; Voltaire for this). Empiricism has no room for the supernatural.<br/><br/>He also uses this framing to explain Robespierre’s excesses in the French Revolution as a blinding worship of the virtues of the man-made state and belief that perfect systems could be created from first principles without reference to the past (lacking in common sense). The “daemonic” is described as the explicit divorce of feeling and reason, the natural extension of the separation of lust and love, and the distortion of an act into its opposite. It was the impetus for the Reformation, when Christians could no longer differentiate between the voices of God and Satan, and could explain other political movements as well (fascism was the cult of Hitler, communism was the cult of the Party, liberalism was the cult of good intentions, and socialism was the cult of the masses) as one of the manifestations of the daemonic was idolatry. And yet, it is necessary to accept and understand the daemonic, rather than excise it. <br/><br/>It is peculiar that Clive chooses Mozart as the composer who correctly integrated the daemonic into their masterpieces. Perhaps because he wrote this during the time of Mozart’s intellectual revival, but he uses Bach and Mozart as a counterpoint to Haydn as Christian (or Christian influenced) composers who managed to convey the heights of joy and the depths of despair in the same works. I only consider Mozart’s darkness to come to light as he aged, with his Grand Mass in C Major, his Fantasia, and of course his famous Requiem, and Beethoven seems like the more obvious choice of champion? Bach is perhaps more suited to be the standard-bearer of the wedding of reason and faith, with his contrapuntal fugues and the sweeping glory of his passions. But on the point that music handles this dichotomy-not-dichotomy perfectly, I agree.
<blockquote>
For modern Western man it often seems that the only conditions under which religion can be existentially illuminating are those of absurdity where religion is existentially denied. Goethe’s Faust, Dostoyevsky’s Underground Man, Melville’s Captain Ahab, Kierkegaard’s Seducer, Kafka’s K. - these, not the insipid moralizers of so-called religious fiction, testify to the glory of God, even in hell. (pg 105-106)
</blockquote>
The entire work thrives in ambiguity, and excels at identifying dichotomies where the existence of the dichotomy is the problem.
<blockquote>
There is a genuine sense, as it were, in which Hitler’s supporters were much guiltier than their idol. The Underground Man, this much must be said for him, would not have stood on his “ignorance” or his right of security. He despaired “bravely.” (pg 127)
</blockquote>
Worthiness pops up once again as a moral “virtue” - where does this come from?
<blockquote>
The best known type of offense in the modern world is not that of the Cross, but of capitalism. (pg 133)
</blockquote>
<p>A section is dedicated to man’s relationship to “offense”: the offense taken when one has unsatisfied desires (unrequited love), a lack of meaning, has been excluded from a group, meets someone who is virtuous, confronted with mortality, or has faith. Dostoyevsky’s Underground Man, Shakespeare’s Macbeth, Melville’s Captain Ahab, and Milton’s Satan are prime examples of characters who have embodied offense (and despair as a result).<br/><br/>I suspect Clive’s sweeping analysis of the Romantic Enlightenment will become more clear to me once I can understand most of the references the work makes. At the moment, much is inscrutable. Very interesting takes however.</p>]]></description>
    <pubDate>Sun, 12 Mar 2023 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/romantic-enlightenment/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>Directed Babbling</title>
    <link>https://www.yudhister.me/directed-babbling/</link>
    <description><![CDATA[<p>At a rationality workshop I ran an activity called “A Thing.” Not only because I didn’t know what to call it, but because I didn’t know what to expect. In retrospect, I’ve decided to christen it “Directed Babbling.”</p>
<p>It was borne out of a naive hope that if two individuals trusted each other enough, they’d be able to lower their social inhibitions enough to have a conversation with zero brain-to-mouth filter. I thought this would lead to great conversations, and perhaps act as a pseudo-therapeutic tool to resolve disputes, disagreements over emotionally charged topics, and the like. However, it turns out this isn’t necessarily the best use case for a conversation where you simply say the first thing that comes into your head.</p>
<p>As with any writing trying to describe social dynamics, this may be somewhat inscrutable. However, I will try my best to explain exactly what I claim to be a useful conversational tool, for use-cases from “solving hard technical problems with a partner”, to “diving off the insanity deep end”.</p>
<p>Background
Alice and Bob are having a conversation. Alice says X, which Bob responds to with Y, in the context of the conversation (the previous things that Alice and Bob have said to each other) and the context of the world (Bob’s priors). Typically, Bob’s System 1 formulates Y and Bob’s System 2 “edits” it (for lack of a better term) - in most cases, the final output has more to do with System 1 than System 2. However, most of the time in discussion is spent with these System 2 “add-ons” - formulating ideas into sentences, making sure that the vocabulary is appropriate for the conversation, etc.</p>
<p>Hypothesis: if you intentionally remove the System 2 filters from the conversation between Alice and Bob, then you get a rapid feedback loop where the System 1 responses are simultaneously much faster and shorter than the original, which lets the conversation have a much higher idea density.</p>
<p>Setup
We paired participants and asked them to come up with a topic to start their conversation on. Following that, their instructions were to say “the first thing that came into their head” after hearing their partner, and see where this led. After fifteen minutes of this, we checked in and had a discussion on how this went. Repeat about 6 times.</p>
<p>Observations
Individuals did not report a loss in the ease of communication or a lack of nuance - rather, they reported being much more tired than normal and that their perception of time was quite dilated. Someone likened it to “having a 40 minute conversation but feeling that only five minutes had passed.” Generally, sentiment was extremely positive at this being an alternative method of communication.</p>
<p>A few concrete things that some individuals did:</p>
<p>Consciously refused to talk in sentences, and only in key words Chose a “spiciness” level before hand (think hotseat 1-10) Other variations included choosing to talk about either technical or emotional topics, focusing on responding to the last thing the person said vs. the first thing that came into their head, etc.</p>
<p>Use Cases
The most surprising outcome was that this method of conversation seems to be quite useful for technical discussions when both individuals have similar levels of intuition on the subject. It was counterintuitive for me when I tried this: I expected technical conversations to be driven much more by System 2 than System 1, especially when compared to other types of conversations. But when discussing some mathematical proof, it turns out the System 1 responses represent much more the motivations for certain logic than the actual logic itself, and this is what allows for the partner to understand better. See here.</p>
<p>As an introspection tool, it also seems quite useful. If both you and your partner are interested or confused by some social phenomenon, lowering your System 2 filters removes a lot of the implicit restrictions we place on our speech with regards to social contexts, and it opens the door for more valuable conversations.</p>
<p>Failure Modes
The obvious failure mode is a conversation in which Alice and Bob decide on a topic they both feel strongly about, disagree, and then one or both leaves feeling hurt/ having a worse opinion of the other. While you can’t eliminate this risk entirely, some safeguards make it much less likely:</p>
<p>Setting a “spiciness” level for the conversation before it begins. Mutually arriving at what exactly a level “7” means is probably necessary. Only talking about emotionally charged topics with individuals you trust to handle it maturely. Having extremely low barriers to exit the conversation. Making it a social norm to get up and leave one of these at any moment is the bare minimum. A subtler failure mode is a conversation which waffles between topics without any substance being exchanged between the participants. Such as:</p>
<p>Alice: “Do you prefer London or New York?”</p>
<p>Bob: “Purple.”</p>
<p>Alice: “Clouds.”</p>
<p>Bob: “Steak.”</p>
<p>… and so on. I personally find these to be very entertaining, but it is a good idea to set expectations beforehand of exactly how unhinged you would like the conversation to be (some calibration is necessary).</p>
<p>Directed Babbling seems to have much higher idea density and not much information loss compared to typical conversation. I would recommend that you try this with someone sometime, especially if you’re stuck on a technical problem with a partner. If you do end up trying this, please let me know how it went! My sample size currently is quite small, and more data is always great!</p>
<p><em>Crossposted to <a href="https://www.lesswrong.com/posts/KYbr42thX6aJwA49i/directed-babbling">LessWrong</a>.</em></p>]]></description>
    <pubDate>Wed, 01 Feb 2023 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/directed-babbling/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>
<item>
    <title>The Hidden Perils of Hydrogen</title>
    <link>https://www.yudhister.me/hidden-perils-of-hydrogen/</link>
    <description><![CDATA[<p>Hydrogen is the fuel of the future. It’s the most abundant element in the universe, is incredibly mass-efficient, and can be produced without much fuss. It can be used for both large and small scale energy production (think fusion and fuel cells respectively), and has virtually no emissions, carbon or otherwise. However, there’s just one problem.</p>
<p>It’s absurdly volume-inefficient.</p>
<p>One liter of hydrogen can produce 0.01 MJ of energy at STP (standard temperature and pressure, 273K and 1 atm) compared to 34 MJ/L for gasoline. That’s 0.02% of the energy output for liter. Granted, things improve drastically for liquid hydrogen, where the comparison is 8 MJ/L vs 34, but this requires maintenance of temperatures below −252.8°C, only a few degrees above absolute zero.</p>
<p>Gaseous hydrogen isn’t that easy to store either: it requires containers pressurizable up to 700 bar (700x atmospheric pressure). That’s 10,000 PSI. And even then, it takes 5L of hydrogen to match up to 1L of gasoline. The Department of Energy estimates that to meet most lightweight vehicular driving ranges, between 5-13 kg of hydrogen need to be carried onboard the vehicle. If we do some quick calculations, that means that vehicles need to carry between 85 - 294 L of liquid hydrogen (some multiple of this for gaseous hydrogen) to go anywhere. For all you Americans, this is roughly between 22-77 gallons.</p>
<p>(For reference, 5-13kg of hydrogen converts to 20-70 liters of gasoline, in terms of energy efficiency. I also make no claim as to the specific accuracy of the numbers, these are napkin calculations, and this doesn’t take into account energy efficiencies created by recycling hydrogen or fuel cells being more efficient than combustion engines, etc.)</p>
<p>It would not be feasible to have stereotypical sedans with fifty gallon gas tanks in a world of solely hydrogen fuel. Additionally, the extreme conditions liquid hydrogen must be stored as bottlenecks its production and transportation.</p>
<p>The Department of Energy set standards for hydrogen storage to be met by 2020 in order for hydrogen fuel to become feasible for portable power and light-duty vehicular applications. These were:</p>
<p>1.5 kWh/kg (overall system performance) 1.0 kWh/L (overall system performance) $10/kWh (translates to $333/kg for stored hydrogen) So far, none of these goals have been met, and I have doubts about the scalability of present research (although I’m open to criticism on this take). Let’s take a look at what’s being done to fix the issue.</p>
<h2 id="short-term-solutions">Short-term Solutions</h2>
<p>The majority of short-term solutions to hydrogen’s issues as a widespread fuel consist of creating inexpensive, high pressure storage solutions for H2 gas. From the Department of Energy’s website again, this means developing fiber-reinforced composites that can be produced cheaply and withstand 700 bar pressures. As these don’t necessarily address the underlying volume-inefficiency problem, we can move on to the long-term solutions.</p>
<h2 id="long-term-solutions">Long-term Solutions</h2>
<p>Long-term solutions take two forms: higher-density gaseous storage and materials-based hydrogen storage. The former develops vessels that can compress H2 gas more, while the latter seeks to manufacture materials that have better volumetric hydrogen ratios. This will mainly focus on the materials based approach.</p>
<p>The main research avenues for materials-based hydrogen storage are metal hydrides, adsorbents, and chemical hydrogen storage materials. Let’s look at each.</p>
<h2 id="metal-hydrides">Metal Hydrides</h2>
<p>Metal hydrides are compounds in which metal atoms form ligands with hydrogen. The strength and nature of these bonds vary widely with the metal, but they allow compounds to act as hydrogen carriers without getting decomposed themselves, which is useful for materials cycling (and drastically improves efficiency).</p>
<p>The issue is, the sorts of complex hydrides that have the most promising properties cannot be produced at scale cheaply in any amount, let alone the quantities required for hydrogen to become a serious competitor to gasoline. However, if these compounds were able to scale, then I would be very excited about our energy futures.</p>
<h2 id="adsorbents">Adsorbents</h2>
<p>Adsorption is the process by which molecules stick to the internal or external surface of something. Attaching hydrogen gas to some compound would allow it to retain its original molecular form and simultaneously compress it (by virtue of gases being quite volume inefficient). The issue with these is that they don’t compress from the original that much, and are expensive to make.</p>
<h2 id="chemical-hydrogen-storage-materials">Chemical Hydrogen Storage Materials</h2>
<p>These are perhaps the most straightfoward: find materials that you can either hydrolyze or pyrolyze to release hydrogen, and hope that they have less volume than liquid hydrogen and that they’re easier to store. Well, lo and behold, it turns out there’s an entire class of molecules like this: Amine-boranes.</p>
<p>Amine-boranes are essentially ammonia molecules complexed to boron with extra hydrogen thrown in. The simplest amine-borane is ammonia borane, or borazane, with the chemical formula NH3BH3. It hydrolyzes and pyrolyzes well, has a higher molar density of hydrogen than hydrogen itself, and is a stable solid at room temperature. What more could you ask for?</p>
<p>Well, it’s absurdly expensive to synthesize. I suspect the cost can be reduced at scale, but it does not seem feasible at the moment.</p>]]></description>
    <pubDate>Thu, 05 Jan 2023 00:00:00 UT</pubDate>
    <guid>https://www.yudhister.me/hidden-perils-of-hydrogen/</guid>
    <dc:creator>Yudhister Kumar</dc:creator>
</item>

    </channel>
</rss>
