aboutsummaryrefslogtreecommitdiff
path: root/content/canory/messages/math.md
blob: cd02f886065ad1850592706554b943c54c713107 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
+++
date    = "2022-03-01T01:25:42+00:00"
lastmod = "2022-03-01T01:25:42+00:00"
tags    = [ "docs" ]
+++

First nothing, then the infinity wars. You know; the miracle of the fallacy
_à la_ generality.

```mathml { caption="Sounds about right." }
<math xmlns="http://www.w3.org/1998/Math/MathML" alttext="\begin{align*} & 0 = 0 \times 1\\ & 0 = 0 \times 2\\ & 0 = 0 \times 3 \end{align*}" display="block" >
  <mtable displaystyle="true" columnalign="right">
    <mtr>
      <mtd>
        <mrow>
          <mn>0</mn>
          <mo>=</mo>
          <mn>0</mn>
          <mo>×</mo>
          <mn>1</mn>
        </mrow>
      </mtd>
    </mtr>
    <mtr>
      <mtd>
        <mrow>
          <mn>0</mn>
          <mo>=</mo>
          <mn>0</mn>
          <mo>×</mo>
          <mn>2</mn>
        </mrow>
      </mtd>
    </mtr>
    <mtr>
      <mtd>
        <mrow>
          <mn>0</mn>
          <mo>=</mo>
          <mn>0</mn>
          <mo>×</mo>
          <mn>3</mn>
        </mrow>
      </mtd>
    </mtr>
  </mtable>
</math>
```

```mathml { caption="Alien levels of literal meta--abstraction." }
<math xmlns="http://www.w3.org/1998/Math/MathML" alttext="\begin{align*} & 0 = 0\\ & 0 \times 1 = 0 \times 3 \end{align*}" display="block">
  <mtable displaystyle="true" columnalign="right left">
    <mtr>
      <mtd>
        <mrow>
          <mn>0</mn>
          <mo>=</mo>
          <mn>0</mn>
        </mrow>
      </mtd>
    </mtr>
    <mtr>
      <mtd>
        <mrow>
          <mn>0</mn>
          <mo>×</mo>
          <mn>1</mn>
          <mo>=</mo>
          <mn>0</mn>
          <mo>×</mo>
          <mn>3</mn>
        </mrow>
      </mtd>
    </mtr>
  </mtable>
</math>
```

```mathml { caption="Unity. Don't try this at home, kids." }
<math xmlns="http://www.w3.org/1998/Math/MathML" alttext="\begin{align*} & 1 = 3 \end{align*}" display="block">
  <mtable displaystyle="true" columnalign="right left">
    <mtr>
      <mtd>
        <mrow>
          <mn>1</mn>
          <mo>=</mo>
          <mn>3</mn>
        </mrow>
      </mtd>
    </mtr>
  </mtable>
</math>
```