<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.4.1">Jekyll</generator><link href="https://verysmalldreams.com/feed.xml" rel="self" type="application/atom+xml" /><link href="https://verysmalldreams.com/" rel="alternate" type="text/html" /><updated>2026-02-14T07:47:26+00:00</updated><id>https://verysmalldreams.com/feed.xml</id><title type="html">Very Small Dreams</title><subtitle>The (mostly) academic blog of Matt Jaquiery. Topics include: psychology, neuroscience, open science, philosophy of mind, science of consciousness.</subtitle><author><name>Matt Jaquiery</name></author><entry><title type="html">Contravariance in TypeScript</title><link href="https://verysmalldreams.com/rse/2024/02/15/contravariance.html" rel="alternate" type="text/html" title="Contravariance in TypeScript" /><published>2024-02-15T09:31:00+00:00</published><updated>2024-02-15T09:31:00+00:00</updated><id>https://verysmalldreams.com/rse/2024/02/15/contravariance</id><content type="html" xml:base="https://verysmalldreams.com/rse/2024/02/15/contravariance.html"><![CDATA[<p>It’s been a while since I’ve written a blog post. 
I’ve finished my DPhil and I’ve worked as a Research Software Engineer<sup id="fnref:1"><a href="#fn:1" class="footnote" rel="footnote" role="doc-noteref">1</a></sup> for a couple of years now.
So if there are any posts in the future, they’ll probably be about software engineering rather than research.</p>

<p>A problem I’ve just got my head around with TypeScript is contravariance.
What is contravariance?
Well, it’s responsible for errors like this:</p>

<blockquote>
  <table>
    <tbody>
      <tr>
        <td>Type ‘(x: string) =&gt; string’ is not assignable to type ‘(x: string</td>
        <td>number) =&gt; void’.</td>
      </tr>
    </tbody>
  </table>

  <p>Types of parameters ‘x’ and ‘x’ are incompatible.</p>

  <table>
    <tbody>
      <tr>
        <td>Type ‘string</td>
        <td>number’ is not assignable to type ‘string’.</td>
      </tr>
    </tbody>
  </table>
</blockquote>

<p>I found it baffling that TypeScript would complain about <code class="language-plaintext highlighter-rouge">string|number</code> not being assignable to <code class="language-plaintext highlighter-rouge">string</code>.
In my head, I’m doing exactly the <em>opposite</em>: I’m assigning a more specific type to a more general type.
The reason? Contravariance.</p>

<h2 id="technical-explanation">Technical explanation</h2>

<p>Contravariance is a rule that enforces that a function’s input type must be a supertype of the input type of the function it’s being assigned to.
It’s a result of the <a href="https://en.wikipedia.org/wiki/Liskov_substitution_principle">Liskov Substitution Principle</a>, which is one of the <a href="https://en.wikipedia.org/wiki/SOLID">SOLID principles</a>.
The Liskov Substitution Principle states that an object should be replaceable with any of its subtypes without breaking the program.</p>

<p>Here, TypeScript is saying that a function that takes a <code class="language-plaintext highlighter-rouge">string|number</code> as an argument can’t be replaced with a function that takes a <code class="language-plaintext highlighter-rouge">string</code> as an argument.
That’s because if we replace the function that takes a <code class="language-plaintext highlighter-rouge">string|number</code> with a function that takes a <code class="language-plaintext highlighter-rouge">string</code>, we can’t guarantee that the function will work with a <code class="language-plaintext highlighter-rouge">number</code> argument.
We often run into headaches because we’re narrowing a function for a specific use-case, just as we would a variable, but TypeScript doesn’t <em>know</em> we’ll only ever use it with a <code class="language-plaintext highlighter-rouge">string</code>.
And, for that matter, nor do we or our colleagues or our future selves.
That’s why TypeScript has all these rules in the first place.</p>

<p>In short, whereas variables are covariant (a variable of type <code class="language-plaintext highlighter-rouge">A</code> can be assigned to a variable of type <code class="language-plaintext highlighter-rouge">A|B</code>, but not vice-versa),
functions are contravariant (a function of type <code class="language-plaintext highlighter-rouge">A|B</code> can be assigned to a function of type <code class="language-plaintext highlighter-rouge">A</code>, but not vice-versa).</p>

<h2 id="example">Example</h2>

<div class="language-tsx highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="kd">type</span> <span class="nx">Animal</span> <span class="o">=</span> <span class="p">{</span>
  <span class="na">species</span><span class="p">:</span> <span class="kr">string</span><span class="p">;</span>
<span class="p">};</span>

<span class="kd">const</span> <span class="nx">dog</span><span class="p">:</span> <span class="nx">Animal</span> <span class="o">=</span> <span class="p">{</span>
  <span class="c1">// You can assign a more specific value to the species property</span>
  <span class="na">species</span><span class="p">:</span> <span class="dl">"</span><span class="s2">Dog</span><span class="dl">"</span>
<span class="p">};</span>

<span class="kd">type</span> <span class="nx">Person</span> <span class="o">=</span> <span class="p">{</span>
  <span class="na">introduction</span><span class="p">:</span> <span class="p">(</span><span class="na">name</span><span class="p">:</span> <span class="kr">string</span><span class="p">)</span> <span class="o">=&gt;</span> <span class="k">void</span><span class="p">;</span>
<span class="p">};</span>

<span class="kd">const</span> <span class="nx">alice</span><span class="p">:</span> <span class="nx">Person</span> <span class="o">=</span> <span class="p">{</span>
  <span class="na">introduction</span><span class="p">:</span> <span class="p">(</span><span class="na">name</span><span class="p">:</span> <span class="dl">"</span><span class="s2">Alice</span><span class="dl">"</span><span class="p">)</span> <span class="o">=&gt;</span> <span class="s2">`Hello. My name is </span><span class="p">${</span><span class="nx">name</span><span class="p">}</span><span class="s2">`</span>
  <span class="c1">// Type '(name: "Alice") =&gt; string' is not assignable to type '(name: string) =&gt; void'.</span>
  <span class="c1">//  Types of parameters 'name' and 'name' are incompatible.</span>
  <span class="c1">//    Type 'string' is not assignable to type '"Alice"'.</span>
<span class="p">};</span>
</code></pre></div></div>

<p><a href="https://www.typescriptlang.org/play?#code/C4TwDgpgBAggdgSwLYEMA2UC8UDeBYAKCigGdIBjBCEgLlOACcE4BzAbkIF8ODDyB7OCWBQAJvxZ14ydFlyFiAekVQAmvwCuUcijhQUJEghZ6UUJPwbQyESgDME5KADd0G6MH5RgAC2sUqEigwBn5IBlAFUgDqOgAiABEJOK4eQlBIKAAFCAYSQTl8IihmRn5RDXJgBEE6AAo4FCQIOmEmVgBKLAA+F34EUR5uQj5BYX00Rxbs3Py9bCLiUtCKqpq4esbm+JhJ8gg4rsxegAMACQg0NH4AOigAWRAoLegEIIASHBfOE9TCIA">Playground Link</a></p>

<h2 id="solution-1-use-generic-types">Solution 1: Use generic types</h2>

<div class="language-tsx highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="kd">type</span> <span class="nx">Person</span><span class="o">&lt;</span><span class="nx">T</span> <span class="kd">extends</span> <span class="kr">string</span><span class="o">&gt;</span> <span class="o">=</span> <span class="p">{</span>
  <span class="na">introduction</span><span class="p">:</span> <span class="p">(</span><span class="na">name</span><span class="p">:</span> <span class="nx">T</span><span class="p">)</span> <span class="o">=&gt;</span> <span class="k">void</span><span class="p">;</span>
<span class="p">};</span>

<span class="kd">const</span> <span class="nx">alice</span><span class="p">:</span> <span class="nx">Person</span><span class="o">&lt;</span><span class="dl">"</span><span class="s2">Alice</span><span class="dl">"</span><span class="o">&gt;</span> <span class="o">=</span> <span class="p">{</span>
  <span class="na">introduction</span><span class="p">:</span> <span class="p">(</span><span class="nx">name</span><span class="p">)</span> <span class="o">=&gt;</span> <span class="s2">`Hello. My name is </span><span class="p">${</span><span class="nx">name</span><span class="p">}</span><span class="s2">`</span>
<span class="p">};</span>
</code></pre></div></div>

<p><a href="https://www.typescriptlang.org/play?#code/C4TwDgpgBAggdgSwLYEMA2UC8UDeBYAKCigGdIBjBCEgLlOACcE4BzAbkIF8ODDyB7OCWBQAJvxZ14ydFlyFiAekVQAmvwCuUcijhQUJEghZ6UUJPwbQyESgDME5KADd0G6MH5RgAC2sUqEigwBn5IBlAFUgDqOgAiABEJOK4eQlBIKAAFCAYSQQAeABUoCAAPYAg4USDhJlYAPjl8IihmRn5RDXJgBEE6AAo4FCQIOiKASiwm534EUR5uQj5BYX00RzHs3Py4AriYDfIIOKbsFuJ20K6evrhB4dGpzCaAAwAJCDQ0fgA6KAAsiAoI9oAgggASHCgzivVKEIA">Playground Link</a></p>

<p>In this solution, we use a generic type to specify the type of the <code class="language-plaintext highlighter-rouge">name</code> parameter in the <code class="language-plaintext highlighter-rouge">introduction</code> function.
This way, we can specify the type of <code class="language-plaintext highlighter-rouge">name</code> when we create the <code class="language-plaintext highlighter-rouge">Person</code> object.</p>

<h2 id="solution-2-use-a-looser-type-for-the-function">Solution 2: Use a looser type for the function</h2>

<div class="language-tsx highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="kd">type</span> <span class="nx">Person</span> <span class="o">=</span> <span class="p">{</span>
  <span class="na">introduction</span><span class="p">:</span> <span class="p">(</span><span class="na">name</span><span class="p">:</span> <span class="nx">never</span><span class="p">)</span> <span class="o">=&gt;</span> <span class="k">void</span><span class="p">;</span>
<span class="p">};</span>

<span class="kd">const</span> <span class="nx">alice</span><span class="p">:</span> <span class="nx">Person</span> <span class="o">=</span> <span class="p">{</span>
  <span class="na">introduction</span><span class="p">:</span> <span class="p">(</span><span class="na">name</span><span class="p">:</span> <span class="dl">"</span><span class="s2">Alice</span><span class="dl">"</span><span class="p">)</span> <span class="o">=&gt;</span> <span class="s2">`Hello. My name is </span><span class="p">${</span><span class="nx">name</span><span class="p">}</span><span class="s2">`</span>
<span class="p">};</span>
</code></pre></div></div>
<p><a href="https://www.typescriptlang.org/play?ssl=16&amp;ssc=3&amp;pln=9&amp;pc=1#code/C4TwDgpgBAggdgSwLYEMA2UC8UDeBYAKCigGdIBjBCEgLlOACcE4BzAbkIF8ODDyB7OCWBQAJvxZ14ydFlyFiAekVQAmvwCuUcijhQUJEghZ6UUJPwbQyESgDME5KADd0G6MH5RgAC2sUqEigwBn5IBlAFUgDqOgAiABEJOK4eQlBIKAAFCAYSQTl8IihmRn5RDXJgBEE6AAo4FCQIOjgIZ1yASiwAPhd+BFEebkI+QWF9NEcW7Nz8vWwi4lLQiqqauHrG5viYKfIIOO7MPoADAAkINDR+ADooAFkQKG3oBCCAEhxXzlPUoA">Playground Link</a></p>

<p>In this solution, we use the <code class="language-plaintext highlighter-rouge">never</code> type for the <code class="language-plaintext highlighter-rouge">name</code> parameter in the <code class="language-plaintext highlighter-rouge">introduction</code> function.
Because nothing is assignable to <code class="language-plaintext highlighter-rouge">never</code> with <em>covariance</em>, everything is assignable to <code class="language-plaintext highlighter-rouge">never</code> with <em>contravariance</em>.
This way, we are assigning a more general function to a type that describes a more specific function, which is allowed with contravariance.</p>

<h2 id="conclusion">Conclusion</h2>

<p>I’ve found a couple of ways to work around contravariance in TypeScript.
I’ve used both in my code, and I’m happy with the results.
There are probably other ways to work around contravariance, but these are the ones I’ve found so far.</p>

<p>If I run into more easily-write-up-able problems like this, I’ll write more blog posts about them.</p>

<h2 id="notes">Notes</h2>

<div class="footnotes" role="doc-endnotes">
  <ol>
    <li id="fn:1">
      <p>Research Software Engineering is probably the best job (for me). It’s part research, part software engineering. Still hidden away in academia, but I get to spend my time writing code. <a href="#fnref:1" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
  </ol>
</div>]]></content><author><name>Matt Jaquiery</name></author><category term="rse" /><category term="research software engineering" /><category term="typescript" /><category term="contravariance" /><category term="code" /><summary type="html"><![CDATA[It’s been a while since I’ve written a blog post. I’ve finished my DPhil and I’ve worked as a Research Software Engineer1 for a couple of years now. So if there are any posts in the future, they’ll probably be about software engineering rather than research. Research Software Engineering is probably the best job (for me). It’s part research, part software engineering. Still hidden away in academia, but I get to spend my time writing code. &#8617;]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://verysmalldreams.com/assets/images/confused-muddled-illogical.jpg" /><media:content medium="image" url="https://verysmalldreams.com/assets/images/confused-muddled-illogical.jpg" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">Review: Utopia for Realists</title><link href="https://verysmalldreams.com/academic/2020/05/22/review-utopia-for-realists.html" rel="alternate" type="text/html" title="Review: Utopia for Realists" /><published>2020-05-22T09:48:41+00:00</published><updated>2020-05-22T09:48:41+00:00</updated><id>https://verysmalldreams.com/academic/2020/05/22/review-utopia-for-realists</id><content type="html" xml:base="https://verysmalldreams.com/academic/2020/05/22/review-utopia-for-realists.html"><![CDATA[<h1 id="review-utopia-for-realists">Review: Utopia for Realists</h1>
<h4 id="and-how-we-can-get-there">And how we can get there</h4>
<h5 id="rutger-bregman-elizabeth-manton-trans-2017">Rutger Bregman [Elizabeth Manton trans.] (2017)</h5>

<figure class="image">
    
    <div class="fig">
        <a href="/assets/images/utopia-for-realists.jpg"><object data="/assets/images/utopia-for-realists-small.jpg" type="image/jpg">
                <img src="/assets/images/utopia-for-realists.jpg" alt="Book cover" />
            </object>
        </a>
    </div></figure>
<!-- Credit https://stackoverflow.com/a/19360305 -->

<p><em>Utopia for Realists</em> offers a general argument that far-reaching visions are a requirement for real progress alongside three specific candidates for such visions: universal basic income, a fifteen hour workweek, and open borders. It’s lively, readable, and engages with criticism of its ideas in a clear and frank way.</p>

<p>The first of the candidate visions is for a universal basic income. As the name suggests, this is the idea that some reasonable amount of money, say £15,000/year,<sup id="fnref:1"><a href="#fn:1" class="footnote" rel="footnote" role="doc-noteref">1</a></sup> is given to everyone to do with as they wish. Proponents argue that the approach is cheaper, more dignified, and more effective than the alternatives. And proponents aren’t just liberal firebrands: one of the most compelling chapters in the book explores the story of Richard Nixon’s Basic Income Bill which could have set the mould for Western governments. The empirical evidence for basic income is promising, and set to grow considerably in the next few years as trials which are currently running start turning in data.<sup id="fnref:2"><a href="#fn:2" class="footnote" rel="footnote" role="doc-noteref">2</a></sup></p>

<p>The second candidate vision is less work, for a specific definition of work. Perhaps it is better phrased as ‘less drudgery’: the kind of work Bregman wants less of is the kind you’re not doing when “if you find a job you love, you’ll never work a day in your life.” The argument is the same one that has been made since the industrial revolution: efficiency is an increase in output (stuff) for a given input (time), so why not use increases in efficiency to reduce the input rather than increase the output? The short answer, at present, is because most of us get paid for providing the input, not for providing the output. Bregman’s assertion is that we are able to produce enough<sup id="fnref:3"><a href="#fn:3" class="footnote" rel="footnote" role="doc-noteref">3</a></sup> to spread the necessary drudgery out thinly between us all and spend the rest of the time in leisure.<sup id="fnref:4"><a href="#fn:4" class="footnote" rel="footnote" role="doc-noteref">4</a></sup></p>

<p>The final major candidate vision in the book is for open borders. Of all of the counter-intuitive topics in the book, open borders is perhaps the most counter-intuitive. Even for those who can see why giving free money to everyone makes everyone richer, it can seem bizarre that sharing our resources with strangers can make us better off. It seems bizarre because we intuitively think of these resources as pools with a limited capacity: e.g. that there is a fixed amount of meaningful work to distribute among those who are capable of doing it. But in many instances this is not true; additional people create additional demands for food, housing, schooling, leisure facilities, etc., all of which mean there’s more work for someone to do.<sup id="fnref:5"><a href="#fn:5" class="footnote" rel="footnote" role="doc-noteref">5</a></sup></p>

<p>Behind all these candidate visions is a condemnation of a politics which sees government as an optimisation problem: how do we allocate resources and deploy programmes to maximize X, where X is employment, education, the economy, housing, healthcare, or anything else acknowledged to be within the purview of government. Some of these seem to be no-brainers,<sup id="fnref:6"><a href="#fn:6" class="footnote" rel="footnote" role="doc-noteref">6</a></sup> but others deserve discussion about whether X is the right sort of thing to maximize in the first place. Bryan Caplan has argued that education is not something we should be seeking to maximize in <em>The Case Against Education</em>.<sup id="fnref:7"><a href="#fn:7" class="footnote" rel="footnote" role="doc-noteref">7</a></sup> Bregman offers the same treatment of employment. In both cases the argument is that we’re maximizing the wrong things not because the policies are ineffective, but because they’re affecting the wrong things. In yet another reprise of the same old script, we’ve let our measures become targets: we’re maximizing % of university-educated population rather than capacity for people to be effective and self-governing individuals, citizens, and employees; and we’re maximizing hours worked rather than tangible value<sup id="fnref:8"><a href="#fn:8" class="footnote" rel="footnote" role="doc-noteref">8</a></sup> created (and shared!).<sup id="fnref:9"><a href="#fn:9" class="footnote" rel="footnote" role="doc-noteref">9</a></sup></p>

<p>Ultimately, I’m wary of accepting the findings in the book too uncritically, especially because I agreed at the outset with the potential merits of universal basic income and obviating drudgery (and was agnostic regarding open borders). I’m not convinced that I will dive into Politics (with a capital ‘p’) to support these ideas in the way Bregman advocates,<sup id="fnref:10"><a href="#fn:10" class="footnote" rel="footnote" role="doc-noteref">10</a></sup> but if I do I suppose it is books like this one which will be partly responsible. More than any of the specific utopian ideas put forward, the book is a call for the reinvigoration of value-based Political debate, and it will be interesting to see whether that call can garner enough of a broad and diverse base of support to become a reality.<sup id="fnref:11"><a href="#fn:11" class="footnote" rel="footnote" role="doc-noteref">11</a></sup></p>

<hr />

<h2 id="notes">Notes</h2>

<div class="footnotes" role="doc-endnotes">
  <ol>
    <li id="fn:1">
      <p>Somewhat coincidentally, this is almost exactly what I earn as a PhD student <a href="#fnref:1" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:2">
      <p>Testing policies, and cautiously expanding them in scale and to new contexts, is a robust and sensible way to ensure we do things that actually work, and which minimise unintended, undesirable outcomes. Showing that giving free money to everyone in a small town produces good outcomes doesn’t guarantee that those same outcomes would be realised if you gave free money to everyone in the world, but it does show that giving free money to people is a potentially great idea, and it should be explored further. <a href="#fnref:2" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:3">
      <p>Quite what constitutes ‘enough’ is rather hard to pin down. Humans tend to define enough (once key drives are met) in relation to those around them, so it’s difficult to pick out exactly what level of consumption is acceptable as a baseline. <a href="#fnref:3" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:4">
      <p>People who see work as valuable in and of itself argue that a life of pure leisure would lack meaning. Quite aside from the fact that much work fails to provide a sense of meaning (see <em>Bullshit Jobs</em>, also reviewed on this blog), it’s highly likely that once we stop looking to work to provide meaning we will seek it in other places. Both the aristocracies of the past and the <em>Star Trek: The Next Generation</em>-style visions of the future provide models for filling lives with creativity, learning, discussing and debating, and caring for others in the community (including spending time raising children). <a href="#fnref:4" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:5">
      <p>This is a simplistic example, but it at least illustrates the point that demand is created by people and that therefore more people create more demand. <a href="#fnref:5" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:6">
      <p>At least you would think so, but witness the debates in the USA over the merits of public healthcare. <a href="#fnref:6" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:7">
      <p>I should point out that I’ve not read <em>The Case Against Education</em>, but I believe an accurate summary of its central argument is that education has become a pointless means of competitive evaluation rather than a means of ensuring adequacy for a role as a citizen or employee. <a href="#fnref:7" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:8">
      <p>Bregman talks about the way some work destroys value, using a similar conception of value to Varoufakis in <em>Talking to My Daughter</em> (also reviewed on this blog) which bottoms out in improvements to lived human experience. <a href="#fnref:8" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:9">
      <p>Raeworth’s <em>Doughnut Economics</em> (also reviewed on this blog) provides sketches for some of the ways in which some of the ideas in Bregman’s utopias could be operationalised and implemented. <a href="#fnref:9" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:10">
      <p>Which is perhaps a pity, because I’m probably the sort of person he’s rather hoping to convince to be more politically active. <a href="#fnref:10" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:11">
      <p>There are some notable efforts in this vein, such as Michael Sandel’s Public Philosophy events. <a href="#fnref:11" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
  </ol>
</div>]]></content><author><name>Matt Jaquiery</name></author><category term="academic" /><category term="book review" /><category term="economics" /><category term="politics" /><summary type="html"><![CDATA[Review: Utopia for Realists And how we can get there Rutger Bregman [Elizabeth Manton trans.] (2017)]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://verysmalldreams.com/assets/images/utopia-for-realists-small.jpg" /><media:content medium="image" url="https://verysmalldreams.com/assets/images/utopia-for-realists-small.jpg" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">Review: How Emotions are Made</title><link href="https://verysmalldreams.com/academic/2020/05/22/review-how-emotions-are-made.html" rel="alternate" type="text/html" title="Review: How Emotions are Made" /><published>2020-05-22T09:48:41+00:00</published><updated>2020-05-22T09:48:41+00:00</updated><id>https://verysmalldreams.com/academic/2020/05/22/review-how-emotions-are-made</id><content type="html" xml:base="https://verysmalldreams.com/academic/2020/05/22/review-how-emotions-are-made.html"><![CDATA[<h1 id="review-how-emotions-are-made">Review: How Emotions are Made</h1>
<h4 id="the-secret-life-of-the-brain">The Secret Life of the Brain</h4>
<h5 id="lisa-feldman-barrett-2017">Lisa Feldman Barrett (2017)</h5>

<figure class="image">
    
    <div class="fig">
        <a href="/assets/images/how-emotions-are-made.jpg"><object data="/assets/images/how-emotions-are-made-small.jpg" type="image/jpg">
                <img src="/assets/images/how-emotions-are-made.jpg" alt="Book cover" />
            </object>
        </a>
    </div></figure>
<!-- Credit https://stackoverflow.com/a/19360305 -->

<p>We feel ways about things because things matter to us.<sup id="fnref:1"><a href="#fn:1" class="footnote" rel="footnote" role="doc-noteref">1</a></sup>
That is not as tautological as it sounds: individual instances of things make us feel things because, in general, over evolutionary time, those things had a meaningful impact on our survival. 
The genes of creatures who felt those things about those sorts of things reproduced at greater rates than the genes of creatures who didn’t feel those things, or felt different sorts of things in those circumstances. 
In the debate over the nature of emotions, the vast majority of scientists agree on this point.</p>

<p>What separates them is the question: what kind of things can we feel?
For essentialists, there are some limited number of true emotions which are evolved specifically to motivate particular behaviours in particular kinds of circumstances: we feel fear to encourage us to run away, happiness to encourage us to engage, etc.
Perhaps at any given moment we might feel a mixture of them, but, as in the animated film <em>Inside Out,</em><sup id="fnref:2"><a href="#fn:2" class="footnote" rel="footnote" role="doc-noteref">2</a></sup> they’re real and distinct parts of our minds which are dominant at different times.
For constructivists, emotions are generated more dynamically in response to context, blurring into one another at the edges and demarcated by socially determined rather than discovered categories.<sup id="fnref:3"><a href="#fn:3" class="footnote" rel="footnote" role="doc-noteref">3</a></sup>
Constructivists see emotions more like the rainbow: it may appear to be made of bands of colour but only because we put our colour categories onto it - in the rainbow itself there is only a continual smooth variation in electromagnetic radiation wavelengths.
Fledman Barrett’s theory of <em>How Emotions are Made</em> is firmly in this latter camp.</p>

<p>What distinguishes <em>How Emotions are Made</em> from other constructivist theories of emotion is that it has predictive processing as its foundation.
Predictive processing considers the brain’s role to be predicting its sensory inputs, which it does through a combination of learning (making its internal model match the world) and acting (making the world match its internal model).
Feldman Barrett’s view of emotion is that it is a conceptual framework imposed on this basic regulatory system. 
As sensory input (and the brain’s own continuously evolving state) prompts learning and action, the accommodations come with <abbr title="in emotion psychology, 'affect' is used for the good/bad flavouring of conscious states">affective</abbr> consequences - they feel like something.<sup id="fnref:4"><a href="#fn:4" class="footnote" rel="footnote" role="doc-noteref">4</a></sup>
This <abbr title="in emotion psychology, 'affect' is used for the good/bad flavouring of conscious states">affective</abbr> flavouring forms the basis of our experience, and onto it we project a socially-constructed array of categories, turning a continuous, featureless landscape of ‘ways we can feel’ into an atlas of ‘emotions’ which have boundaries, classic features, and ostensive evolutionary purposes. 
For Feldman Barrett, the essentialist perspective mistakes this atlas for the territory it represents, assuming that because emotions can be put into categories, those categories must represent something fundamental about the nature of those emotions.</p>

<p>The story is complicated, however, by a feedback mechanism in which the categories taught to us by our culture inform our classification of the emotions we feel, and, in turn, the emotions we are able to feel. 
We cannot, on Feldman Barrett’s view, experience emotions we don’t have categories for, even if our internal state is the same as someone who can and does experience those emotions.
In teaching children to identify their emotions, for example, we turn people who lack emotional concepts and consequently cannot feel particular emotions into people who have those concepts and can feel those emotions. 
If we were to teach them different concepts, they would experience different emotions.</p>

<p>A futher complication is the idea that emotions are not diagnosable in any special way by the person who is experiencing them: they are just as readily interpretable by someone else, perhaps with different emotional concepts with which to categorise them.
Moreover, someone else’s interpretation of your emotion has as much truth to it as your own. 
This is perhaps the most counter-intuitive inference Feldman Barrett draws from her predictive account of emotions: the idea that the subject of the emotion has no special authority over what emotion they are feeling. 
If I say, for example, that I feel sad, I am basing my identification of sadness on very different information than when I say that you feel sad. 
In the first case, I have my internal state, as well as my external behaviour.
In the latter case I have your behaviour, though perhaps your behaviour includes helpful communication such as saying “I’m feeling sad.”
While Feldman Barrett does focus a good deal on the role of interoception (our ability to detect internal sensations like how tense or relaxed we are) in emotion categorisation, this extra input is not allowed to constitute a fact-of-the-matter. 
The reasons for this are never adequately explained, but it is presumably due to emotions being created in the process of categorisation. 
If I categorise my own emotion as ‘sad’, that act of categorisation means that I genuinely am sad,<sup id="fnref:5"><a href="#fn:5" class="footnote" rel="footnote" role="doc-noteref">5</a></sup> and, because your emotions are in part constructed in response to mine, if you categorise me as being ‘sad’ then I’m sad in a real enough sense for your response to be generated.<sup id="fnref:6"><a href="#fn:6" class="footnote" rel="footnote" role="doc-noteref">6</a></sup></p>

<p>Because of the grounding in a predictive processing approach, emotions are successful or unsuccessful insofar as they allow better prediction of incoming sensory information (and perhaps our own and others’ behaviour). 
For Feldman Barrett, having a large and varied emotional vocabulary, and having the ability to categorise one’s own emotions effectively using that vocabulary (i.e. having good interoceptive sensitivity), allows us to predict ourselves and others better.
A child who is learning about their emotions might only have very basic categories for identifying (and hence constructing) emotional instances: they may only be able to tell if they are angry.
An adult teaching them, however, may construct instances of more nuanced emotions for the child: perhaps they’re vengeful, or overwrought, or jealous, or envious, or frustrated, or maybe just tired or hungry. 
Over time, as they become more adept at wielding emotion concepts, the child becomes better able to predict and understand their own emotional responses, and to produce emotional responses which are culturally and situationally appropriate.</p>

<p>In the tradition of popular science books offering a comprehensive theory of X, <em>How Emotions are Made</em> illustrates how widespread adoption of its theory of emotion will lead to a fairer, happier world. 
This, as is often the case, is the weakest part of the work: many of the changes apparently suggested by the theory do not require the theory to be made, and often do not even clearly follow from the theory at all. 
The other major sources of weakness in the book are a philosophical over-simplicity (which is perhaps necessary for popular science), and the caricaturing of opposing arguments to which it leads. 
At no point are opposing arguments really allowed to shine with any lustre or motivate any intuitions: a pity given how rueful Feldman Barrett is over the long history of <abbr title="presenting a weak and unrealistic version of an opposing argument in order to convincingly trounce it; from the metaphor of beating up a straw dummy of a rival rather than facing them in combat">strawmanning</abbr> in emotion science.<sup id="fnref:7"><a href="#fn:7" class="footnote" rel="footnote" role="doc-noteref">7</a></sup>
Lastly, in undermining robust distinctions between widely-recognised emotions such as joy and other products of the conceptual system (such as ‘things you could use to spread butter’), <em>How Emotions are Made</em> can leave the reader wondering whether emotions are worthy of study in their own right at all.</p>

<p>Overall, the book has some broadly persuasive ideas, although much of the persuasion is in the rejection of essentialist categorisation of emotions, which is (at least to my mind) relatively easily accomplished because essentialist thinking is appealing but almost always wrong. 
The broad point, that emotions are best understood in relation to affect-generating disturbances to our bodies energy distribution, is well made, though it is not clear this point necessarily implies the predictive account offered.
Predictive accounts of neuroscience and psychology are in vogue, and have a broad appeal, and the account of emotion sits well within it.</p>

<hr />

<h2 id="notes">Notes</h2>

<div class="footnotes" role="doc-endnotes">
  <ol>
    <li id="fn:1">
      <p>There is an enduring philosophical squabble over the so-called ‘hard problem of consciousness’, which is why we have consciousness at all. Why do emotions, or thoughts, or sensations or anything have to be experiences? <a href="#fnref:1" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:2">
      <p>It seems important to point out that I haven’t actually seen this film… <a href="#fnref:2" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:3">
      <p>The constructivist and essentialist theories are convenient handles for broadly distinct perspectives, but they are certainly constructed things. They are grab-bags of perspectives on the properties of emotions which tend to come bundled together but are philosophically distinct: one could have a theory that emotions are constructed by the whole brain in a dynamic way, for example, while also holding that the products of this dynamic process are categorisable into a basic set of universal emotions with distinct evolutionary roles. <a href="#fnref:3" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:4">
      <p>Feldman Barrett introduces the term ‘body budget’ to describe features of the world which have consequences for our body’s energy management (i.e. require our body to do something), and consequently have <abbr title="in emotion psychology, 'affect' is used for the good/bad flavouring of conscious states">affective</abbr> consequences. <a href="#fnref:4" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:5">
      <p>Because emotions have no essence, categories for Feldman Barrett are ways we group things in the world, not the way things in the world are grouped that we then discover. This means that my categorising a feeling as ‘sad’ does not mean it is an example of sadness in some deep sense, only that I have decided to file it in the folder labelled ‘sad’. <a href="#fnref:5" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:6">
      <p>This reasoning still does not illustrate clearly why you have just as much authority as I do to determine how I’m feeling. It would be perfectly possible for you to have legitimate emotions in response to mistakenly attributing emotions to me. Likewise, your responding to an emotion of mine need not create some fully-fledged concept which would have to be considered an emotion in its own right - the response does, but the thing which provokes it need not. <a href="#fnref:6" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:7">
      <p>A recurring example is the charge that the essentialist account cannot handle the variation found in all instances of emotion, which is difficult to square with the typical essentialist account seeing any instance of emotion as a more-or-less warped reflection of some essential ideal emotion. In other words, while essences may not have variation, the instances to which they give rise certainly do. <a href="#fnref:7" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
  </ol>
</div>]]></content><author><name>Matt Jaquiery</name></author><category term="academic" /><category term="book review" /><category term="psychology" /><category term="neuroscience" /><category term="emotion" /><summary type="html"><![CDATA[Review: How Emotions are Made The Secret Life of the Brain Lisa Feldman Barrett (2017)]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://verysmalldreams.com/assets/images/how-emotions-are-made-small.jpg" /><media:content medium="image" url="https://verysmalldreams.com/assets/images/how-emotions-are-made-small.jpg" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">Review: Talking to My Daughter</title><link href="https://verysmalldreams.com/academic/2020/03/19/talking-to-my-daughter.html" rel="alternate" type="text/html" title="Review: Talking to My Daughter" /><published>2020-03-19T16:09:11+00:00</published><updated>2020-03-19T16:09:11+00:00</updated><id>https://verysmalldreams.com/academic/2020/03/19/talking-to-my-daughter</id><content type="html" xml:base="https://verysmalldreams.com/academic/2020/03/19/talking-to-my-daughter.html"><![CDATA[<h1 id="review-talking-to-my-daughter">Review: Talking to My Daughter</h1>
<h4 id="a-brief-history-of-capitalism">A Brief History of Capitalism</h4>
<h5 id="yanis-varoufakis-2017">Yanis Varoufakis (2017)</h5>

<figure class="image">
    
    <div class="fig">
        <a href="/assets/images/talking-to-my-daughter.jpg"><object data="/assets/images/talking-to-my-daughter-small.jpg" type="image/jpg">
                <img src="/assets/images/talking-to-my-daughter.jpg" alt="Book cover" />
            </object>
        </a>
    </div></figure>
<!-- Credit https://stackoverflow.com/a/19360305 -->

<p><em>Talking to My Daughter</em> is a critical history of capitalism from the perspective of someone who is acutely aware of its more pernicious effects. Despite being an academic, and deeply sceptical capitalism and of the political deification of the economy, Varoufakis has first-hand experience of macroeconomic policymaking after serving as Finance Minster for Greece towards the end of the <a href="https://en.wikipedia.org/wiki/Greek_government-debt_crisis">government debt crisis</a> in 2015.<sup id="fnref:1"><a href="#fn:1" class="footnote" rel="footnote" role="doc-noteref">1</a></sup> The book offers a warts-focussed analysis of the roots of capitalism, exploring how each of its components arose and how each has shifted the balance of resources further from the many towards the privileged few.</p>

<p>Markets are the place where the story of capitalism starts. Early markets traded in commodities - goods produced for exchange. It was possible for people to do very well for themselves trading commodities, especially when reliable sea trade routes connected areas with vastly different natural resources where supply-and-demand principles could be harnessed to turn profit into more profit.<sup id="fnref:2"><a href="#fn:2" class="footnote" rel="footnote" role="doc-noteref">2</a></sup> While commodities were traded to mutual benefit,<sup id="fnref:3"><a href="#fn:3" class="footnote" rel="footnote" role="doc-noteref">3</a></sup> commodities were a distinct from goods, including raw materials, land, and labour.</p>

<p>The next step is commodification: the extension of the class of commodities to almost all goods. Land and labour are commodified first in Britain through the process of <em>enclosure</em>,<sup id="fnref:4"><a href="#fn:4" class="footnote" rel="footnote" role="doc-noteref">4</a></sup> wherein previously-communal (or feudally owned but communally managed) land was portioned into parts and leased to the farmers who farmed it. Now, rather than subsisting on the land they once occupied, peasants had to either take on debt to acquire and manage an enclosure, or sell their labour to someone who had.</p>

<p>Enclosure produced both commodification of labour and the key engines of capitalism: debt and profit. Debts necessitate profit because, interest is needed to make a loan worthwhile for the creditor, meaning the amount to be repaid outweighs the amount borrowed, which in turn means the money borrowed must be used to produce more than its own value so the debt can be paid.<sup id="fnref:5"><a href="#fn:5" class="footnote" rel="footnote" role="doc-noteref">5</a></sup></p>

<p>The essential ingredients of capitalism in place, Varoufakis spends the rest of the book examining capitalism’s quirks: bubbles, crashes, automation, politicization, and environmental devastation. The same theme recurs again and again in these chapters: that capitalism is unworkable given human nature.<sup id="fnref:6"><a href="#fn:6" class="footnote" rel="footnote" role="doc-noteref">6</a></sup> Banking, particularly the delegation of the ability to create money to private banks, is shown to foster greater wealth creation and opportunity, but also to cause financial crashes through (apparently inevitable) irresponsible lending. Crashes are made deeper and more disastrous by decreasing the ability of consumers to purchase goods, which decreases manufacturers’ ability to pay employees whose wages will be spent on consuming those goods. These effects are magnified by automation: while goods produced through automation are cheaper, the process also pays fewer people meaning there are fewer people earning wages which can be used to purchase those goods. Finally, Varoufakis argues that the inherently political nature of economics should not mean that political decisions are made using economic machinery, arguing strenuously against the market solutions to climate change.</p>

<p>The real strength of Varoufakis’ work is to bring everything back to human conscious experience.<sup id="fnref:7"><a href="#fn:7" class="footnote" rel="footnote" role="doc-noteref">7</a></sup> He cares little for the abstract beauty of model economic systems, and sees value only where it eventually translates into experiential value for a conscious mind: a thrill of pleasure or the alleviation of a want. Economic activity, for Varoufakis, is the flow of experiential value through space and time, albeit abstracted into money for much of its journey. A sibiling of this phenomenal-experience-first perspective is the insistence on keeping in view the psychology of the economic actors, especially those with great power. The intimate and cyclic relationship between those with political and those with economic power is blamed for much of the devastation which capitalism produces: banks are left unchecked by government regulation in good times and bailed out by intervention in bad times, supporting an enrichment which pays for political donations and creates seats on directorial boards for retiring government officials.</p>

<p>There are weaknesses to the book, although it should be borne in mind that it is not necessarily intended to be a thorough academic work. There are arguments or examples scattered throughout the book which don’t quite work, and in some places it seems that other explanations are given a shorter shrift than they deserve. It doesn’t really address globalization or the vast improvements in the quality of life which have accrued to the majority of humanity in the last century or so (a phenomenon covered excellently in <a href="/academic/2020/01/22/review-factfulness.html"><em>Factfulness</em></a>). Finally, the book is almost entirely devoid of proposals for solutions to the catalogue of capitalistic woes it documents, satisfying itself instead with illustrating how things go awry.<sup id="fnref:8"><a href="#fn:8" class="footnote" rel="footnote" role="doc-noteref">8</a></sup></p>

<p><em>Talking to My Daughter</em> is not a balanced book. It is written in a plain and engaging style, and the love and pain of a parent trying to parent from halfway around the globe is palpable. It introduces other (i.e. mainstream economics) ideas, arguments, and perspectives, but more in isolation than as a coherent objection to the framework which the book espouses. If you are going to read one book on capitalism, you’re better off reading something more even-handed, but if you’re going to read a few you can do a lot worse than include Varoufakis’ earnest and cogently argued effort in the mix.</p>

<hr />
<h2 id="notes">Notes</h2>

<div class="footnotes" role="doc-endnotes">
  <ol>
    <li id="fn:1">
      <p>The book is a retranscription of a Greek version written in 2013, so it is unclear how much the events of 2015 influenced the content. <a href="#fnref:1" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:2">
      <p>Buying goods where they are plentiful and selling them where they are rare is a simple but beautiful method of exploiting simple balancing forces for unreasonably impressive advantage. It reminds me of the way <a href="https://en.wikipedia.org/wiki/Loop_of_Henle">kidneys exploit concentration gradients to retain water</a>. <a href="#fnref:2" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:3">
      <p>The book is something of a whistle-stop tour, but even so it’s notable that Varoufakis makes little mention of the increases in the quality of life which improved trade produced, albeit mostly for those who were already reasonably well off. One could perhaps even argue that, due to preferentially increasing the quality of life for the already-wealthy, these trade networks increased experiential inequality. <a href="#fnref:3" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:4">
      <p>This apparently important event was given precisely zero percent of the curriculum, at least so far as my memory of my history education goes. Perhaps I just didn’t pay much attention to economic niceties in primary school. <a href="#fnref:4" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:5">
      <p>The commodification of raw materials follows on from the combination of production-for-profit: as basic products become subject to market forces they can be bought to power secondary industries rather than having to be produced before being adapted on site. <a href="#fnref:5" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:6">
      <p>Varoufakis’ critical treatment of capitalism by focusing on the political and psychological contexts in which it is implemented echo the trenchant critiques of communism (and highlight how many of the most fervent treatise in support of capitalism, like those in support of communism, ignore these contextual realities). <a href="#fnref:6" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:7">
      <p>It is no coincidence that the epilogue contains a brief philosophical detour into what experiential value is and where it comes from. <a href="#fnref:7" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:8">
      <p>If I may quote from my review of <em>Doughnut Economics</em>: ‘the absence of useful solutions isn’t grounds for dismissing a problem.’ <a href="#fnref:8" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
  </ol>
</div>]]></content><author><name>Matt Jaquiery</name></author><category term="academic" /><category term="economics" /><summary type="html"><![CDATA[Review: Talking to My Daughter A Brief History of Capitalism Yanis Varoufakis (2017)]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://verysmalldreams.com/assets/images/talking-to-my-daughter-small.jpg" /><media:content medium="image" url="https://verysmalldreams.com/assets/images/talking-to-my-daughter-small.jpg" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">Review: The Happiness Hypothesis</title><link href="https://verysmalldreams.com/academic/2020/02/28/the-happiness-hypothesis.html" rel="alternate" type="text/html" title="Review: The Happiness Hypothesis" /><published>2020-02-28T16:24:39+00:00</published><updated>2020-02-28T16:24:39+00:00</updated><id>https://verysmalldreams.com/academic/2020/02/28/the-happiness-hypothesis</id><content type="html" xml:base="https://verysmalldreams.com/academic/2020/02/28/the-happiness-hypothesis.html"><![CDATA[<h1 id="review-the-happiness-hypothesis">Review: The Happiness Hypothesis</h1>
<h4 id="putting-ancient-wisdom-and-philosophy-to-the-test-of-modern-science">Putting Ancient Wisdom and Philosophy to the Test of Modern Science</h4>
<h5 id="jonathan-haidt-2006">Jonathan Haidt (2006)</h5>

<figure class="image">
    
    <div class="fig">
        <a href="/assets/images/the-happiness-hypothesis.jpg"><object data="/assets/images/the-happiness-hypothesis-small.jpg" type="image/jpg">
                <img src="/assets/images/the-happiness-hypothesis.jpg" alt="Book cover" />
            </object>
        </a>
    </div></figure>
<!-- Credit https://stackoverflow.com/a/19360305 -->

<p><em>The Happiness Hypothesis</em> is an attempt to fuse insights from psychology with theories from philosophy and religion’s long histories of enquiry into the components of ‘the good life’. While the book settles for the unsurprising and rather bland conclusion that treading a path between extremes is likely to be best for most people most of the time, it does, especially in the earlier chapters, manage to live up to the promise of holding philosophy’s feet to the empirical fire.</p>

<p>The key psychological points the book makes concern set points, free will, and sources of meaning. The key philosophical ideas are stoicism, deontology, utilitarianism, and virtue ethics, while the discussion of religious ideas is mostly couched in terms of a dimension of sacredness.</p>

<p>In keeping with several ancient dichotomies between instinct and rationality, urges and self-control, etc., Haidt introduces ‘the rider and the elephant’, the model of the self which lies at the heart of the book and which is broadly supported in psychology. The ‘elephant’ represents instincts/urges/habits/emotional responses/unconscious thought, etc. and is similar to <a href="/academic/2019/09/07/review-thinking-fast-and-slow.html">Kahneman’s notion of System One processes</a>. The elephant is essentially responsible for most decisions, especially ones which are made without ever attaining the status of ‘decision’. The ‘rider’ is the conscious part, the bit of you you think of as you, and as the analogy is supposed to suggest, its control over the elephant is incomplete at best. Haidt leaves it as a rather open question quite how much the rider can steer the elephant and how much it has to settle for coming up with explanations why the direction they ended up taking was just where they were hoping to go all along…</p>

<p>The second major piece of bad news for those hoping to come out of <em>The Happiness Hypothesis</em> with a recipe for the hypothesised happiness is the notion of set points. Affective neuroscience and psychology have demonstrated that each person has an idiosyncratic basic level of optimism and happiness, and that this is only perturbed briefly by life events, pharmacological intervention, etc.<sup id="fnref:1"><a href="#fn:1" class="footnote" rel="footnote" role="doc-noteref">1</a></sup> This psychological insight is somewhat less secure than others - it’s easy to think that because something happens in the brain, or because the effects of some interventions are short-lived, that this means the underlying mechanism must be immutable. The brain is continually changing in response to itself and its environment, and it reflects experience as much as it does genetics, meaning there is a lot more to do to claim that set points cannot be shifted than pointing to homeostatic regulation of administered neurotransmitters or adaptation to life events.</p>

<p>The promise of the book starts to emerge when, building on the two previous ideas that you’re not especially in control of what you do, and you’re not going to be able to improve things a whole lot for yourself even if you become an expert elephant-wrangler, it introduces stoicism and relates the stoic (and Buddhist) philosophy of controlling responses to uncontrolled events to the basis of Cognitive Behavioural Therapy. A healthy dose of endurance for things you cannot control, and curation of considered responses to them, is justly applauded, but Haidt follows with a well-aimed criticism of stoicism’s lauding of detachment as a way of minimising vulnerability. Avoiding forming connections with others is an exquisitely logical way of avoiding being upset when they are no longer a part of our lives, but it ignores the vital point that connections with others are an important, almost certainly necessary, part of what brings meaning and happiness to our lives in the first place.</p>

<p>Haidt’s evidence for the importance of connections with others comes mostly from attachment theory, a characterisation of close human relationships which posits a few identifiable attachment ‘styles’ - collections of behaviours brought on by particular contexts such as novel situations, parting, and reunification. Attachment is thought to be established in caregiver-child bonding and form a model for significant relationships in later life. The philosophical treatment of love is notable for its brevity: the key point is that romantic love makes people behave in ways philosophers viewed as irrational and bestial, and was for that reason largely cautioned against and ignored.</p>

<p>Eventually, Haidt uses the importance of connectedness to others (both interpersonal relationships and embeddedness in society) to argue that a happy and an ethical life are inextricably entwined. This concept is captured by the notion of ‘virtue’ - of leading a life which is not only of benefit to others and morally praiseworthy, but also satisfying and enjoyable. To lend psychological backing to this notion, Haidt presents experimental philosophy evidence suggesting that people have broadly<sup id="fnref:2"><a href="#fn:2" class="footnote" rel="footnote" role="doc-noteref">2</a></sup> similar notions of virtue across cultures, and psychological evidence that happiness and pro-social behaviour are linked (happy people are more helpful to others, and helping others makes people more happy).</p>

<p>Haidt is most well known at the moment for research into the association between disgust and social and political dispositions, and the background for this research is presented in a chapter on divinity. Haidt argues that the sacred is a dimension in human social organisation, alongside hierarchy (social rank/prestige) and closeness (emotional connectedness). The argument is not wholly compelling, especially given the ubiquity of the other two dimensions in human societies, but it is interesting and does demonstrate quite clearly that distinctions between the sacred and profane can be hugely important to a culture. For me, the most interesting notion in the book was the suggestion that crying when witnessing exemplary generosity, justice, etc. (as at the end of every decent children’s movie ever) was due to seeing something rising in this dimension of sacredness.<sup id="fnref:3"><a href="#fn:3" class="footnote" rel="footnote" role="doc-noteref">3</a></sup> Again, not wholly persuasive, but interesting.</p>

<p>Ultimately, Haidt comes to rest on the psychology of meaning: people get a sense of meaning from feeling engaged with the world - feeling like they can affect it and be affected by it. This is true of activities (work and hobbies) and of relationships (family, friends, and society). Thankfully, positive engagement with those aspects of life is both beneficial for others and rewarding for oneself. It is, in a word, ‘virtuous’. Insofar as philosophies have managed to capture or be compatible with the notion of interactive, positive engagement with the world, Haidt is prepared to grant them the psychology seal of approval. There is legitimate room to debate what constitutes positive engagement given different groups’ goals and perspectives, meaning ‘virtue’ is not an unambiguous beacon, but it is at least a useful framework for understanding the relationship between behaviour and happiness.</p>

<hr />
<h2 id="notes">Notes</h2>

<div class="footnotes" role="doc-endnotes">
  <ol>
    <li id="fn:1">
      <p>While affective neuroscience and psychology are valuable, this particular insight needed input from neither of them: we could (and indeed do) measure people’s happiness and the efficacy of interventions without neuroimaging, measuring neurotransmitter activity or hormone levels, or even robust psychological measurements of affect. <a href="#fnref:1" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:2">
      <p>The persuasiveness of the thesis is somewhat dependent upon how much work ‘broadly’ is allowed to do here… <a href="#fnref:2" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:3">
      <p>The disgust which accompanies degradation, unpleasantly but expertly portrayed in <em>Requiem for a Dream</em>, would be an example of a response to movements in the opposite dimension. <a href="#fnref:3" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
  </ol>
</div>]]></content><author><name>Matt Jaquiery</name></author><category term="academic" /><category term="psychology" /><category term="positive psychology" /><category term="philosophy" /><category term="experimental philosophy" /><category term="philosophy of mind" /><category term="religion" /><summary type="html"><![CDATA[Review: The Happiness Hypothesis Putting Ancient Wisdom and Philosophy to the Test of Modern Science Jonathan Haidt (2006)]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://verysmalldreams.com/assets/images/the-happiness-hypothesis-small.jpg" /><media:content medium="image" url="https://verysmalldreams.com/assets/images/the-happiness-hypothesis-small.jpg" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">ReproducibiliTea does RepliCATS</title><link href="https://verysmalldreams.com/academic/2020/02/22/reproducibiliTea-does-RepliCATS.html" rel="alternate" type="text/html" title="ReproducibiliTea does RepliCATS" /><published>2020-02-22T11:51:00+00:00</published><updated>2020-02-22T11:51:00+00:00</updated><id>https://verysmalldreams.com/academic/2020/02/22/reproducibiliTea%20does%20RepliCATS</id><content type="html" xml:base="https://verysmalldreams.com/academic/2020/02/22/reproducibiliTea-does-RepliCATS.html"><![CDATA[<h2 id="crossposting">Crossposting</h2>

<p>This post originally appeared on the <a href="https://reproducibiliTea.org/">ReproducibiliTea</a> website. ReproducibiliTea is an organisation of Journal Clubs discussing open and reproducible science in universities all over the world. I organise the <a href="https://reproducibiliTea.org/journal-clubs/#Oxford">Oxford branch</a> and am on the committee for the core organisation.</p>

<hr />

<p><br /></p>

<figure class="image">
    
    <div class="fig">
        <a href="/assets/images/replicats-oxford.jpg"><object data="/assets/images/replicats-oxford-small.jpg" type="image/jpg">
                <img src="/assets/images/replicats-oxford.jpg" alt="ReproducibiliTea Oxford does RepliCATS" />
            </object>
        </a>
    </div><figcaption><a href="/journal-clubs/#Oxford">ReproducibiliTea Oxford</a> RepliCATS session. Photo credit <a href="https://twitter.com/IlsePit">@IlsePitt</a></figcaption></figure>
<!-- Credit https://stackoverflow.com/a/19360305 -->

<p>Last week’s ReproducibiliTea at <a href="/journal-clubs/#Oxford">Oxford Experimental Psychology</a> (honourable mention to our Anthropology regulars!) went on a little longer than our usual one-hour of snacks and journal articles. We, like a few other ReproducibiliTea clubs, teamed up with the <a href="https://replicats.research.unimelb.edu.au/">RepliCATS</a> project and estimated the replicability of research studies for the benefit of science (and pizza).</p>

<p>repliCATS (<a href="https://twitter.com/replicats">@replicats</a>) is a project aiming to understand the replicability of social and behavioural sciences and how well replicability can be predicted. There are three arms to the project: gathering researchers’ assessments of replicability of specific claims in papers across a broad range of disciplines, running replications of a subset of the assessed claims and attempting to predict replicability using machine learning techniques. The ReproducibiliTea sessions help with the first of these arms.</p>

<p>We spent around 30 minutes signing up to the repliCATS platform, which involves completing an interesting questionnaire about areas of expertise, metascience knowledge, and statistical knowledge, and watching the introduction video. Over the next couple of hours, we went over four claims using the platform’s <a href="https://replicats.research.unimelb.edu.au/sample-page/faqs/">IDEA approach</a>. The IDEA protocol grounds itself on group decision-making literature which pleased me, as a graduate student studying group decision-making. Individuals make their judgements about the claim, then they have an opportunity to discuss those judgements with others. After discussion, each person makes a final decision in private. This allows for both a diversity of estimates and reasons as well as minimising groupthink effects, at least in principle. As a group, many of us were quite effusive (especially me) so there may have been some cross-pollination of ‘individual judgements’ due to facial expressions, quizzical sounds, or irrepressible comments.</p>

<p>Individuals judge how readily each claim can be understood, whether it appears plausible, and how many of 100 direct replications of the claim are likely to show an effect in the same direction (with alpha = .05). This seems pretty straightforward but, in practice, we often found it quite tricky…</p>

<p>For some of the claims, we found that the claim extracted by the platform for assessment bore little resemblance to the inferential test put forward to test it. For example, one claim was that people in condition A would out-perform those in conditions B and C. This claim was ‘tested’ by a t-test of condition A performance vs chance. These discrepancies sometimes happened because the authors didn’t do a good job of testing the claim, but in others the platform selected the wrong test. Also, in some cases, the N supplied for the test didn’t match the actual N reported in the paper or the test’s degrees of freedom. These issues made it difficult to work out whether we should assess the replicability of the claim or the inferential test.<sup id="fnref:1"><a href="#fn:1" class="footnote" rel="footnote" role="doc-noteref">1</a></sup></p>

<p>For other claims, the tests seemed entirely misguided. The authors of one paper seemed to divide teachers into two groups based on whether their teaching was improving. They then used an inferential test to show that the ‘improving’ group improved relative to the non-improving group. That test seemed pretty pointless in terms of a meaningful claim, and it wasn’t very clear what we should assess. We could assess the probability that for any random set of 6 teachers you’ll be able to assign them to improving vs stable groups, or we could assess the claim that tautological t-tests should come up significant.</p>

<p>Of the four claims we investigated as a group, the most sensible one was that juvenile offenders are more likely to be placed in young offenders’ institutions if their family assesses as dysfunctional. We were pretty happy with the inferential test for that claim and it seemed intuitive. The only reason we came up with to doubt its replicability related more to the claim’s generalisability across time than the robustness of the study. The claim seemed to show a behaviour of the courts which could be subject to political correction which would make it hard to find the same effect if courts used in future replications behaved differently (perhaps as a result of the original study).</p>

<p>The whole exercise brought to light a good many considerations of what we mean by replicability and which factors we should or should not care about. It was also like a rapid-fire journal club with pizza, which is about the best way to spend an academic afternoon! I really like the ambition of the whole repliCATS project, from the breadth and depth of the disciplines covered to the idea of (responsibly) running machine learning on the studies. It’s a very cool project and I’m really looking forward to seeing how it evolves.</p>

<h3 id="notes">Notes:</h3>

<div class="footnotes" role="doc-endnotes">
  <ol>
    <li id="fn:1">
      <p>According to RepliCATS, the answer to this is that the inferential test is the focus rather than the verbal claim. <a href="#fnref:1" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
  </ol>
</div>]]></content><author><name>Matt Jaquiery</name></author><category term="academic" /><category term="psychology" /><category term="replication" /><category term="reproducibiliTea" /><summary type="html"><![CDATA[Crossposting]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://verysmalldreams.com/assets/images/replicats-oxford-small.jpg" /><media:content medium="image" url="https://verysmalldreams.com/assets/images/replicats-oxford-small.jpg" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">Video Game Review: The Talos Principle</title><link href="https://verysmalldreams.com/academic/2020/01/22/the-talos-principle.html" rel="alternate" type="text/html" title="Video Game Review: The Talos Principle" /><published>2020-01-22T19:15:43+00:00</published><updated>2020-01-22T19:15:43+00:00</updated><id>https://verysmalldreams.com/academic/2020/01/22/the-talos-principle</id><content type="html" xml:base="https://verysmalldreams.com/academic/2020/01/22/the-talos-principle.html"><![CDATA[<h1 id="video-game-review-the-talos-principle">Video Game Review: The Talos Principle</h1>
<h5 id="croteam-2014">Croteam (2014)</h5>

<figure class="image">
    
    <div class="fig">
        <a href="/assets/images/the-talos-principle.jpg"><object data="/assets/images/the-talos-principle-small.jpg" type="image/jpg">
                <img src="/assets/images/the-talos-principle.jpg" alt="Cover art" />
            </object>
        </a>
    </div></figure>
<!-- Credit https://stackoverflow.com/a/19360305 -->

<p><em>The Talos Principle</em> is a first-person puzzle game interwoven with a story which explores key questions in religion of philosophy of mind: what is it to be conscious, what is the basis for being deserving of moral considerations, do we have free will, what is the point of existence, and how can we determine whether other agents are conscious?</p>

<p>The puzzle and gameplay elements are pretty robust (reminiscent of <em>Portal</em> and <em>Portal 2</em>, perhaps the best games ever made),<sup id="fnref:1"><a href="#fn:1" class="footnote" rel="footnote" role="doc-noteref">1</a></sup> being do-able but not trivial. Some of the solutions seem quite hacky at times,<sup id="fnref:2"><a href="#fn:2" class="footnote" rel="footnote" role="doc-noteref">2</a></sup> and some game elements are frustrating, such as lethal obstacles which can force you to repeat trival-but-time-consuming initial stages of puzzles. There’s also a large number of puzzles which are solved with techniques which are unique to that puzzle, and often quite unintuitive such that you feel you’ve learned a lesson about the game’s interpretation of physics, which you never use subsequently.<sup id="fnref:3"><a href="#fn:3" class="footnote" rel="footnote" role="doc-noteref">3</a></sup> These frustrations aside, the strengths of the core gameplay - engaging puzzles, insight-based (‘ah-ha!’) solutions, and 4-d thinking - are enough to frame the story and provide a meaningful feeling of progress.</p>

<p>The puzzles and gameplay are not why <em>The Talos Principle</em> is reviewed here, of course. Its story positions the player as some kind of android in an esoteric world of ruins from various ancient civilisations, commanded to solve the game’s puzzles by a disembodied Voice of Command identifying itself as Elohim. The other major characters are a virtual library assistant terminal which conducts the player through philosophical arguments, and one of the designers of the world in which the player inhabits whose philosophical curiosity is portrayed through a series of voice notes.</p>

<p>Key questions foregrounded by the game are the relationship between the player’s avatar and Elohim, who issues commands and prohibitions with which the player can engage, and whether or not the library assistant is a conscious entity.</p>

<p>Engagement with the library assistant, where most of the philosophical debate takes place,<sup id="fnref:4"><a href="#fn:4" class="footnote" rel="footnote" role="doc-noteref">4</a></sup> proceeds through the selection of pre-determined dialogue options. The variety is fairly good,<sup id="fnref:5"><a href="#fn:5" class="footnote" rel="footnote" role="doc-noteref">5</a></sup> and although it’s readily apparent that the assistant will argue you to a contradiction or a standstill whichever option you pursue, that’s pretty much the point. If there were obvious answers to these very difficult philosophical questions we would almost certainly have found them by now.</p>

<p>The other components of the game, Alexandra’s voice notes and the various written information which pervades the computer terminals scattered through the world, work well to provide an impetus for the player’s philosophical curiosity and bite-sized doses of backstory/philosophy respectively.<sup id="fnref:6"><a href="#fn:6" class="footnote" rel="footnote" role="doc-noteref">6</a></sup></p>

<p>Finally, the presence of earlier androids in the game world, both in their occasional physical presence and their frequent messages embedded in QR codes pasted on walls all over the world, helps to problematize the question of the player’s avatar. In a nice touch of meta-ludonarrative synergy, the player sometimes gets to create these messages themself, by selecting from a list of pre-specified options… From my own philosophical perspective, I’d have liked to see a sense of progress in the distinctiveness and apparent consciousness of the past agents as their version numbers increase,<sup id="fnref:7"><a href="#fn:7" class="footnote" rel="footnote" role="doc-noteref">7</a></sup> but it’s understandable why this is underplayed.</p>

<p>Overall, <em>The Talos Princple</em> is an enjoyable puzzle game, and should please fans of puzzle games and philosophical enquiry equally, while being a special treat for those who enjoy both.</p>

<hr />
<h2 id="notes">Notes</h2>

<div class="footnotes" role="doc-endnotes">
  <ol>
    <li id="fn:1">
      <p>This is not a claim I make lightly. <em>Portal</em> is probably the only game I’d consider a must-play for anyone familiar with first-person video games (required to properly engage with the game, I think). <a href="#fnref:1" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:2">
      <p>I freely admit there may be more elegant solutions than the ones I found first! <a href="#fnref:2" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:3">
      <p>Even the near-perfect <em>Portal</em> had one moment where this sort of thing occurred. At one point you are required to open a door using the ‘use’ key to continue. No other doors can be opened in the game, and the use action is useless except for that puzzle. It’s obvious narratively that going through a door is a transition moment, but in the game it’s a frustration because the meta-rules appear to have changed (progress everywhere else in the game requires solving puzzles using portals). <a href="#fnref:3" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:4">
      <p>The player’s engagement here is optional; it’s possible to complete the puzzle parts of the game while ignoring the philosophical debates, for those who are left cold by philosophy of mind. <a href="#fnref:4" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:5">
      <p>I think a BSc in part grounded in philosophy of mind is actually a disadvantage to enjoying the game, because some of the lines of argument are predictable, and some of the apparently reasonable options look like simple misconceptions, or like they don’t quite express your position. <a href="#fnref:5" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:6">
      <p>From one of these fragments of written information we discover that the Talos Principle is that even the most ardent philosopher needs to breathe. Bishop Berkley may disagree, but almost everyone else accepts that reality happens even if you try to argue your way out of it. <a href="#fnref:6" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:7">
      <p>It could be argued that the game does do this to some extent, but it’s not readily apparent, at least from my play through. <a href="#fnref:7" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
  </ol>
</div>]]></content><author><name>Matt Jaquiery</name></author><category term="academic" /><category term="video game review" /><category term="psychology" /><category term="philosophy of mind" /><category term="religion" /><summary type="html"><![CDATA[Video Game Review: The Talos Principle Croteam (2014)]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://verysmalldreams.com/assets/images/the-talos-principle-small.jpg" /><media:content medium="image" url="https://verysmalldreams.com/assets/images/the-talos-principle-small.jpg" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">Review: Invisible Women</title><link href="https://verysmalldreams.com/academic/2020/01/22/invisible-women.html" rel="alternate" type="text/html" title="Review: Invisible Women" /><published>2020-01-22T17:30:00+00:00</published><updated>2020-01-22T17:30:00+00:00</updated><id>https://verysmalldreams.com/academic/2020/01/22/invisible-women</id><content type="html" xml:base="https://verysmalldreams.com/academic/2020/01/22/invisible-women.html"><![CDATA[<h1 id="review-invisible-women">Review: Invisible Women</h1>
<h4 id="exposing-data-bias-in-a-world-designed-for-men">Exposing data bias in a world designed for men</h4>
<h5 id="caroline-criado-perez-2019">Caroline Criado Perez (2019)</h5>

<figure class="image">
    
    <div class="fig">
        <a href="/assets/images/invisible-women.jpg"><object data="/assets/images/invisible-women-small.jpg" type="image/jpg">
                <img src="/assets/images/invisible-women.jpg" alt="Book cover" />
            </object>
        </a>
    </div></figure>
<!-- Credit https://stackoverflow.com/a/19360305 -->

<p><em>Invisible Women</em> is a litany of complaint about how ignoring the needs and wants of women is ubiquitous, from basic scientific and market research to policy planning and government decisions. It’s also robustly evidenced, surprisingly readable,<sup id="fnref:1"><a href="#fn:1" class="footnote" rel="footnote" role="doc-noteref">1</a></sup> and long overdue.</p>

<p>The point of the book is simple to sum up: humanity is perceived as being male by default, and this means women’s needs are not looked for or seen. Whether it’s assuming that work means driving off to work in the morning, spending the day at the office, and then driving home in the evening, or assuming that female bodies behave like smaller, lighter male bodies in car crashes, the fact that half of the population has been treated as an irrelevant afterthought is fairly astounding.<sup id="fnref:2"><a href="#fn:2" class="footnote" rel="footnote" role="doc-noteref">2</a></sup></p>

<p>The book offers numerous examples of areas in which women’s experiences are sidelined. The measure of <abbr title="Gross Domestic Product">GDP</abbr>, for example, doesn’t take housework or non-professional caring work (both predominantly done by women) into account, despite their meeting most reasonable definitions of ‘work’. This point is also made by <a href="/academic/2019/12/07/doughnut-economics.html"><em>Doughnut Economics</em></a>. Women rely far more heavily than men on public transport and walking, so transport networks and snow-clearing schedules designed around car travel disproportionately disadvantage women. There’s some evidence to suggest that drugs and other medical treatments can have different effects in different hormonal environments,<sup id="fnref:3"><a href="#fn:3" class="footnote" rel="footnote" role="doc-noteref">3</a></sup> and clothing, including safety gear, is often fitted for male as opposed to female body shapes. The list goes on.</p>

<p>It’s an important point, made occasionally in the book (including in the preface), that the vast majority of these issues are to do with sociocultural rather than biological differences.<sup id="fnref:4"><a href="#fn:4" class="footnote" rel="footnote" role="doc-noteref">4</a></sup> Women are perceived as different, and socialised to behave differently, and it is predominantly these factors which both produce the overlooked differences and account for their being overlooked. Women are taught to be silent, and then ignored because they are.<sup id="fnref:5"><a href="#fn:5" class="footnote" rel="footnote" role="doc-noteref">5</a></sup></p>

<p>The examples are both highly varied and highly specific. Sometimes this has the desired effect of painting a picture of a pervasive problem which surfaces anywhere it’s sought. At other times, it feels a bit like patchwork: as if a handful of carefully selected examples have been cherrypicked to provide a misleading impression. This is likely an artefact of style rather than substance, however: one gets the impression that similar evidence would be available in comparable countries/areas/disciplines, and the lack of data on the data gap is a product of the data gap itself.</p>

<p>It is perhaps arguable that the focus on gender is unhelpful, and that the data gap is better conceptualised along a different axis, perhaps individual power or cultural prominence, but subtleties like that already conceed the major point that a substantial data gap exists which it is in our collective interest to address.</p>

<p><em>Invisible Women</em> is only important to read until you’re sufficiently persuaded by the argument to consider how your work could be adjusted to address the data gap. If that’s the subtitle, then fair enough. If it’s the whole book and a black hole of under-the-line comments all over the internet… okay. But for those who make key decisions,<sup id="fnref:6"><a href="#fn:6" class="footnote" rel="footnote" role="doc-noteref">6</a></sup> especially, the point should carry that we need better data collection.</p>

<hr />
<h2 id="notes">Notes</h2>

<div class="footnotes" role="doc-endnotes">
  <ol>
    <li id="fn:1">
      <p>I say ‘suprisingly’ because the book is pretty much a torrent of facts loosely corralled into various arms of an argument. <a href="#fnref:1" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:2">
      <p>One of the book’s strengths is its ability to make this astounding, even though it’s widely accepted, at least in my circles, that this is the case. <a href="#fnref:2" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:3">
      <p>This is one among several areas which slower science can help to address. The slow science movement aims to provide more thorough and robust scientific knowledge produced by scientists with greater wellbeing, albeit at the cost of reducing many of the metrics by which science is measured (such as the rate at which academic papers are published). <a href="#fnref:3" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:4">
      <p>The issue of whether there are meaningful biological differences between male and female brains is a much-debated point in psychology and neuroscience. It’s also largely beside the point: even if differences can be shown to be due to biological category membership, the decisions about whether we respect and value people equally or not on the basis of those categories is up to us, collectively. <a href="#fnref:4" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:5">
      <p>It is for this reason, among others, that complaints about the book being ‘shrill’, ‘hysterical’, and the like (and there have been those complaints) are deeply problematic. As both the sufragists and the sufragettes knew, being polite and amenable has a poor track record for securing the rights of the marginalised. <a href="#fnref:5" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:6">
      <p>Tracy King successfully organised a Kickstarter campaign to provide every serving MP in the House of Commons with a copy of the book. <a href="#fnref:6" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
  </ol>
</div>]]></content><author><name>Matt Jaquiery</name></author><category term="academic" /><category term="book review" /><category term="economics" /><category term="politics" /><category term="gender" /><category term="big data" /><category term="science" /><summary type="html"><![CDATA[Review: Invisible Women Exposing data bias in a world designed for men Caroline Criado Perez (2019)]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://verysmalldreams.com/assets/images/invisible-women-small.jpg" /><media:content medium="image" url="https://verysmalldreams.com/assets/images/invisible-women-small.jpg" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">Review: Factfulness</title><link href="https://verysmalldreams.com/academic/2020/01/22/review-factfulness.html" rel="alternate" type="text/html" title="Review: Factfulness" /><published>2020-01-22T15:58:30+00:00</published><updated>2020-01-22T15:58:30+00:00</updated><id>https://verysmalldreams.com/academic/2020/01/22/review-factfulness</id><content type="html" xml:base="https://verysmalldreams.com/academic/2020/01/22/review-factfulness.html"><![CDATA[<h1 id="review-factfulness">Review: Factfulness</h1>
<h4 id="ten-reasons-were-wrong-about-the-world---and-why-things-are-better-than-you-think">Ten reasons we’re wrong about the world - and why things are better than you think</h4>
<h5 id="hans-rosling-with-ola-rosling-and-anna-rosling-rönnlund-2018">Hans Rosling, with Ola Rosling and Anna Rosling Rönnlund (2018)</h5>

<figure class="image">
    
    <div class="fig">
        <a href="/assets/images/factfulness.jpg"><object data="/assets/images/factfulness-small.jpg" type="image/jpg">
                <img src="/assets/images/factfulness.jpg" alt="Book cover" />
            </object>
        </a>
    </div></figure>
<!-- Credit https://stackoverflow.com/a/19360305 -->

<p>It would be awfully convenient if learned things stayed learned. Or so we often feel when we just can’t quite remember that name, or that holiday, or where we left our keys.<sup id="fnref:1"><a href="#fn:1" class="footnote" rel="footnote" role="doc-noteref">1</a></sup> <em>Factfulness</em> is essentially a book about the opposite problem: when our memories for things we’ve learned stay the same, but the facts change.</p>

<p>In a masterclass of big-picture thinking, the authors demonstrate the poor fit between the ways we’ve learned to think about the world and the way the world actually is. This isn’t really a book about <a href="/academic/2019/09/07/review-thinking-fast-and-slow.html">cognitive biases</a> so much as it’s about providing better ways to conceptualise the world. We can’t make good decisions with bad information, and <em>Factfulness</em> aims to provide that information.<sup id="fnref:2"><a href="#fn:2" class="footnote" rel="footnote" role="doc-noteref">2</a></sup></p>

<p>The most important conceptual overhaul the book aims to achieve is replacing the binary rich/poor, West/Rest, developed/developing etc. distinctions with ‘the Four Levels’ of income.</p>

<ul>
  <li>Level 1 (US$0-2/day)
    <ul>
      <li>People on Level 1 (about 1 billion) look like the pictures of dire poverty from charity fundraising materials: walking long distances each day to collect water; little or no access to healthcare; sleeping on dirt floors.</li>
    </ul>
  </li>
  <li>Level 2 (US$3-8/day)
    <ul>
      <li>People on Level 2 (about 3 billion) probably have rudimentary transportation, such as a pedal bike, reducing the time taken to collect water, and have some variety in their diet, but are highly vulnerable to unexpected expenses such as healthcare, repairs, or redundancy.</li>
    </ul>
  </li>
  <li>Level 3 (US$9-16/day)
    <ul>
      <li>The 2 billion people on Level 3 get cold water taps, stable electricity (and therefore refrigerators and more varied diets), and can afford occasional holidays. Sudden expenses like motorcycle repair are still a threat, but now they come out of savings for sending the children to high school.</li>
    </ul>
  </li>
  <li>Level 4 (US$17+/day)
    <ul>
      <li>The 1 billion people on Level 4 are the book’s (and this blog’s) audience. People with access to hot and cold water taps, cars, foreign holidays, more than a decade of education, pension plans, etc.</li>
    </ul>
  </li>
</ul>

<p>While the binary model was useful once (when the world really was split into developing and developed countries), this model needs to be unlearned because the world has changed. Nowadays people’s lives are more accurately described by their income level than their geographical location.<sup id="fnref:3"><a href="#fn:3" class="footnote" rel="footnote" role="doc-noteref">3</a></sup> This is neatly demonstrated by the authors’ <a href="https://www.gapminder.org/dollar-street/">Dollar street</a> project, which shows visually how cultural differences are dwarfed by income differences.</p>

<p>Equipped with the Four Levels, it becomes easier to anticipate how the demographics of the world are changing. There is a steady transfer of people up through the levels,<sup id="fnref:4"><a href="#fn:4" class="footnote" rel="footnote" role="doc-noteref">4</a></sup> and with it reductions in infant mortality and childbirth rates, and increases in vaccination rates, years of education (for boys and girls), and the like. The resulting picture is of a world with a similar population to today, where most people live in Asia on a reasonable income level, including demand for electricity, travel, and consumer goods. Whether you’re concerned with how to provide power without destroying the climate, or how you’re going to make money from selling your local gadget, a fact-based world view is vital to making appropriate decisions.</p>

<p>The book provides a neat summary of some of the mistaken instincts we have about the world (in that sense it <em>is</em> about cognitive biases), but more than anything else it makes a very successful case for lifelong learning. Just because you learned something about the world once, it doesn’t mean it’ll stay true for your whole life.</p>

<p><em>Factfulness</em> is humane, cautious where warranted, but consistently frank, powerful, and persuasive.<sup id="fnref:5"><a href="#fn:5" class="footnote" rel="footnote" role="doc-noteref">5</a></sup> It’s surprisingly light reading which cannot be taken lightly. Even for those who fundamentally reject the idea that useful knowledge about human flourishing can be gathered from aggregated data, the book does a better job of outlining that position than others.</p>

<hr />

<h2 id="notes">Notes</h2>

<div class="footnotes" role="doc-endnotes">
  <ol>
    <li id="fn:1">
      <p>The cutely-named ‘tip-of-the-tongue syndrome’ refers to those situations where our metacogntive ‘feeling-of-knowing’ tells us we know something, but we can’t produce the knowledge itself. <a href="#fnref:1" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:2">
      <p>One of the strengths of the book is its reliance only on widely-accepted information. One of its most impressive feats is showing how even the people who that information is collected and curated for are wildly wrong about what it actually says. <a href="#fnref:2" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:3">
      <p>In some sense this has always been true. The usefulness of the Four Levels heuristic is because the geographical correlation with income has dissipated rather than because income has emerged as a new predictor. <a href="#fnref:3" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:4">
      <p>The directionality of the levels constitute a value judgement, wholly endorsed by the book, that life on higher levels is better than life on lower levels. It’s possible to argue otherwise, at least philosophically, but the direction-of-travel remains the same even if you want to reject the idea that it’s a positive thing. I’m with the authors in thinking that life is better on the higher levels. <a href="#fnref:4" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:5">
      <p>It’s also humble. One of its endearing lessons is to assume that people making decisions are not stupid, and to ask what circumstances would render their actions an appropriate solution. Often people who look like they’re doing dumb things (such as living in a half-built house) are actually solving different problems (investing savings in tangible and stable assets). This lesson is at the heart of another fantastic book: Poor Economics. <a href="#fnref:5" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
  </ol>
</div>]]></content><author><name>Matt Jaquiery</name></author><category term="academic" /><category term="book review" /><category term="economics" /><category term="politics" /><category term="critical thinking" /><summary type="html"><![CDATA[Review: Factfulness Ten reasons we’re wrong about the world - and why things are better than you think Hans Rosling, with Ola Rosling and Anna Rosling Rönnlund (2018)]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://verysmalldreams.com/assets/images/factfulness-small.jpg" /><media:content medium="image" url="https://verysmalldreams.com/assets/images/factfulness-small.jpg" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">Review: Doughnut Economics</title><link href="https://verysmalldreams.com/academic/2019/12/07/doughnut-economics.html" rel="alternate" type="text/html" title="Review: Doughnut Economics" /><published>2019-12-07T23:16:30+00:00</published><updated>2019-12-07T23:16:30+00:00</updated><id>https://verysmalldreams.com/academic/2019/12/07/doughnut-economics</id><content type="html" xml:base="https://verysmalldreams.com/academic/2019/12/07/doughnut-economics.html"><![CDATA[<h1 id="review-doughnut-economics">Review: Doughnut Economics</h1>
<h4 id="seven-ways-to-think-like-a-21st-century-economist">Seven ways to think like a 21st-century economist</h4>
<h5 id="kate-raworth-2017">Kate Raworth (2017)</h5>

<figure class="image">
    
    <div class="fig">
        <a href="/assets/images/doughnut-economics.jpg"><object data="/assets/images/doughnut-economics-small.jpg" type="image/jpg">
                <img src="/assets/images/doughnut-economics.jpg" alt="Book cover" />
            </object>
        </a>
    </div></figure>
<!-- Credit https://stackoverflow.com/a/19360305 -->

<p>The central theme of <em>Doughnut Economics</em> is that the discipline of economics is badly out of step with its purpose, and that it is too concerned with theorising about what it can measure rather than what actually matters. Reading the book is like talking to a student activist: there’s a crushing indictment of the present state of affairs, a jumble sale of earnest indicators of how things might be better, and a dearth of thorough, practical, specific solutions. And as when talking to a student activist, it’s worth remembering that the absence of useful solutions isn’t grounds for dismissing a problem.</p>

<p>The titular case study is the doughnut, a graphical replacement for Kuznets’ <abbr title="Gross Domestic Product">GDP</abbr> curve, and the Raworth’s point is that economics has largely become GDPology. If <abbr title="Gross Domestic Product">GDP</abbr> were a good measure of the total economic activity of a country this would be bad enough, its failure to capture arguably the most valuable aspects of economic life mean it constitutes a fatal flaw.<sup id="fnref:1"><a href="#fn:1" class="footnote" rel="footnote" role="doc-noteref">1</a></sup> Enter the doughnut: two circles which define an area of economic harmony; the inner edge of the ring sits atop an abyss of deprivation in which people lack the necessary resources (food, sanitation, healthcare, education, etc.), while the outside edge presses on the limits of the resources we have (global temperature, ocean acidity, ozone coverage, etc.). Between the overreach of unsustainable exploitation and the shortfall in adequate provision for human life lies a zone in which the economic system is in balance both within humanity and between humans and the environment.<sup id="fnref:2"><a href="#fn:2" class="footnote" rel="footnote" role="doc-noteref">2</a></sup></p>

<p>Raworth proceeds through various other examples to explore territory long ignored in classic economics, including resource management alternatives to the market. Markets are efficient systems for distributing certain resources, but they are subject to a whole slew of bugs (e.g. information asymmetry), exploits (e.g. insider trading), and implementation issues (e.g. regulatory capture) which mean they do not perform their function properly. Markets should be a tool to help people thrive, not vice-versa.</p>

<p>Market alternatives include commons management, which is viewed somewhat sceptically by game theoretic models of rational economic actors (see <a href="/academic/2019/09/07/review-thinking-fast-and-slow.html"><em>Thinking, Fast and Slow</em></a>). The problem, known as the ‘tragedy of the commons’, is that everyone using a shared resource such as a common for grazing their cattle can take all of the benefits for overexploitation (e.g. grazing an extra bullock) while taking only a share of the costs (depletion of the pasture), resulting in a pressure on each person to maximise exploitation of the resource. Commons do exist, despite this neat model of their failure, and are mostly powered by strongly enforced bylaws and shared expectations throughout the community.<sup id="fnref:3"><a href="#fn:3" class="footnote" rel="footnote" role="doc-noteref">3</a></sup></p>

<p>The recognition that the market is not necessarily the best solution to resource allocation problems is refreshing: by now it’s pretty well established that casting things in terms of an explicit value alters the way people think about them (Kahneman notes that parents were late to pick up their children from childcare <em>more often</em> after a fine was introduced, presumably because the payment alleviated their guilt).<sup id="fnref:4"><a href="#fn:4" class="footnote" rel="footnote" role="doc-noteref">4</a></sup> Similarly, Raworth’s most exciting suggestions on tax are to target resource use, not employment, income, or wealth. Taxing resource use is enticing because it reifies the idea that the planet and its resources are jointly owned by everyone, and that when we use some of it up we should pay the owners (i.e. everyone) for doing so. It also alleviates some of the difficulties in European countries with stewardship of valuable resources - some people inherit buildings, artworks, etc. which are very valuable (meaning they have high wealth), but which do not or should not bring much income (meaning they have no money to pay wealth taxes).<sup id="fnref:5"><a href="#fn:5" class="footnote" rel="footnote" role="doc-noteref">5</a></sup></p>

<p>For me, the whole idea of the book was brought out most clearly by the chapter on growth in the economy. In the midst of the fierce assault on the ubiquitous notion of Growth Is Good by the growing movement for environmentally-sensitive economics, which argues that Growth Is Bad, Raworth takes a moment to put on the guise of a puzzled ingenu and ask “does it matter?” Raworth’s concept of ‘growth agnostic’ economies is appealing: instead of concentrating on whether or not growth is necessary for economic prosperity, or whether it is unsustainable in the face of limited resources, the focus is on ensuring the the economy does its job of providing for the needs of everyone regardless of whether or not it is growing.</p>

<p>Overall, the book somewhat resembles a doughnut in that there’s a fair bit to chew through but it’s empty in the middle. This is mostly a consequence of the book being a signpost to areas which are in dire need of research rather than an account of the results of that research. In many cases Raworth’s only conclusion is ‘needs more work’, but that doesn’t undermine the importance of stating the shortcomings of current economic research and suggesting areas for improvement.<sup id="fnref:6"><a href="#fn:6" class="footnote" rel="footnote" role="doc-noteref">6</a></sup></p>

<hr />
<h2 id="notes">Notes</h2>

<div class="footnotes" role="doc-endnotes">
  <ol>
    <li id="fn:1">
      <p>These aspects include things given much play in the book, e.g. commons management, as well as others given less consideration here such as care work and domestic labour. These latter are explored exhaustively in Caroline Criado Perez’ <a href="/academic/2020/01/22/invisible-women.html"><em>Invisible Women</em></a>. <a href="#fnref:1" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:2">
      <p>The ever-present debate over the population cap for the planet (and in particular whether we’re at or near it) can be cast as a discussion over the width of the doughnut’s ring, and how that width changes as a function of population. <a href="#fnref:2" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:3">
      <p>The study of commons management is an interesting academic area with a wealth of case studies verging from cautionary tales to shining examples. <a href="#fnref:3" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:4">
      <p>There is of course a classical economic defense to this argument which is simply that we’re not good enough at measuring these non-monetary contributions, and that if we were we’d be able to find the appropriate level of remuneration which would match it. <a href="#fnref:4" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:5">
      <p>Simply giving or selling these kinds of things to the state, such as when the National Trust buys historic estates in the UK, can be a solution to this, of course, but enforcing the sales (especially where stewardship is otherwise adequate) seems to rob the buildings of some of their value which is rooted in the history of the family which owned and ran them (for better or worse). <a href="#fnref:5" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
    <li id="fn:6">
      <p>As a last word, we should acknowledge that classical economics hasn’t been all bad: living conditions are steadily improving the world over, and we have had a reasonable track record of dealing with resource constraint problems, e.g. the ozone layer, acid rain, smog. Whether we can do the same with the monumental issue of global warming… <a href="#fnref:6" class="reversefootnote" role="doc-backlink">&#8617;</a></p>
    </li>
  </ol>
</div>]]></content><author><name>Matt Jaquiery</name></author><category term="academic" /><category term="book review" /><category term="economics" /><summary type="html"><![CDATA[Review: Doughnut Economics Seven ways to think like a 21st-century economist Kate Raworth (2017)]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://verysmalldreams.com/assets/images/doughnut-economics-small.jpg" /><media:content medium="image" url="https://verysmalldreams.com/assets/images/doughnut-economics-small.jpg" xmlns:media="http://search.yahoo.com/mrss/" /></entry></feed>