<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <title type="text" xml:lang="en">Proof</title>
  <link type="application/atom+xml" href="https://dvck.page/atom.xml" rel="self"/>
  <link type="text/html" href="https://dvck.page/" rel="alternate"/>
  <updated>2026-07-03T04:07:01+00:00</updated>
  <id>https://dvck.page</id>
  <rights>CC BY-SA</rights>

  
  <entry>
    <title>Typesetting Math with $\KaTeX$</title>
    <link href="https://dvck.page/katex/"/>
    <updated>2019-05-27T00:00:00+00:00</updated>
    <id>https://dvck.page/katex</id>
    <content type="html">&lt;p&gt;Proof supports the typesetting mathematics using &lt;a href=&quot;https://katex.org&quot;&gt;$\KaTeX$&lt;/a&gt;.
You can use &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;$ .. $&lt;/code&gt; to write formulas following the $\LaTeX$ math syntax:&lt;/p&gt;

&lt;div class=&quot;language-tex highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;The function &lt;span class=&quot;p&quot;&gt;$&lt;/span&gt;&lt;span class=&quot;nv&quot;&gt;\nu&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;$&lt;/span&gt; is written inline, but can also be in a block:
&lt;span class=&quot;k&quot;&gt;\\&lt;/span&gt;&lt;span class=&quot;na&quot;&gt;[ \nu: \mathbb{P}^{1} \to \mathbb{P}^{3} \\]&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;The function $\nu$ is written inline, but can also be in a block:
\[ \nu: \R\PP^{1} \to \PP^{3}. \]&lt;/p&gt;

&lt;p&gt;Multiple math formats work:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;\\(5\times 5\\)&lt;/code&gt; gives \(5\times 5.\)&lt;/li&gt;
  &lt;li&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;$5\times 5$&lt;/code&gt; gives $5\times 5.$&lt;/li&gt;
  &lt;li&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;\\[5\times 5.\\]&lt;/code&gt; gives: \[5\times 5.\]&lt;/li&gt;
  &lt;li&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;$$5\times 5$$&lt;/code&gt; (on a separate line) gives&lt;/li&gt;
&lt;/ul&gt;

&lt;div class=&quot;kdmath&quot;&gt;$$
5\times 5.
$$&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; while &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;$$ 5\times 5 $$&lt;/code&gt; works, it will enclose the math in a separate block, which is undesirable.&lt;/p&gt;

&lt;p&gt;$\KaTeX$ supports a &lt;a href=&quot;https://katex.org/docs/supported.html&quot;&gt;long list&lt;/a&gt; of fonts and functions, but you can also add
$\LaTeX$ macros in &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;&amp;lt;script&amp;gt;&lt;/code&gt; tags. For instance:&lt;/p&gt;

&lt;div class=&quot;language-html highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;nt&quot;&gt;&amp;lt;script&amp;gt;&lt;/span&gt;
&lt;span class=&quot;nx&quot;&gt;macros&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;dl&quot;&gt;&quot;&lt;/span&gt;&lt;span class=&quot;se&quot;&gt;\\&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;f&lt;/span&gt;&lt;span class=&quot;dl&quot;&gt;&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;dl&quot;&gt;&quot;&lt;/span&gt;&lt;span class=&quot;se&quot;&gt;\\&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;mathscr{F}&lt;/span&gt;&lt;span class=&quot;dl&quot;&gt;&quot;&lt;/span&gt;
&lt;span class=&quot;nt&quot;&gt;&amp;lt;/script&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;script&gt;
macros[&quot;\\f&quot;] = &quot;\\mathscr{F}&quot;
&lt;/script&gt;

&lt;div class=&quot;kdmath&quot;&gt;$$
0\to\Gamma_Y(X,\f&apos;)\to\Gamma_Y(X,\f)\to\Gamma_Y(X,\f&apos;&apos;)\to 0.
$$&lt;/div&gt;

&lt;p&gt;$\KaTeX$ even has support for commutative diagrams, though for now only using
the &lt;a href=&quot;https://tug.ctan.org/macros/latex/required/amsmath/amscd.pdf&quot;&gt;amscd&lt;/a&gt;
syntax, which does not allow diagonal arrows for instance.&lt;/p&gt;

&lt;div&gt;
\begin{CD}
A       @&amp;gt;{a}&amp;gt;&amp;gt;  B  \\
@V{b}VV      @VV{c}V \\
C       @&amp;gt;{d}&amp;gt;&amp;gt;  D
\end{CD}
&lt;/div&gt;

&lt;p&gt;So do numbered equations, in &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;equation&lt;/code&gt;, &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;align&lt;/code&gt;, and &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;gather&lt;/code&gt;.&lt;/p&gt;

&lt;div&gt;
\begin{equation}
\begin{split}   a &amp;amp;=b+c\\
      &amp;amp;=e+f
\end{split}
\end{equation}
&lt;/div&gt;

&lt;p&gt;To use either of these, your input needs to be excluded from Markdown processing like this:&lt;/p&gt;

&lt;div class=&quot;language-html highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;nt&quot;&gt;&amp;lt;div&lt;/span&gt; &lt;span class=&quot;na&quot;&gt;markdown=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;nt&quot;&gt;&amp;gt;&lt;/span&gt;
\begin{CD}
...
\end{CD}
&lt;span class=&quot;nt&quot;&gt;&amp;lt;/div&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;If you are not familiar with writing mathematics in $\LaTeX$, I highly 
recommend reading and bookmarking this &lt;a href=&quot;https://en.wikibooks.org/wiki/LaTeX/Mathematics&quot;&gt;Wikibooks reference&lt;/a&gt; and using
it to typeset problem sets or exercises to practice. Another great reference
is &lt;a href=&quot;https://mirrors.ibiblio.org/CTAN/info/short-math-guide/short-math-guide.pdf&quot;&gt;this “short” guide&lt;/a&gt; by the AMS. To learn more about $\LaTeX$ itself,
&lt;a href=&quot;https://www.maths.tcd.ie/~dwilkins/LaTeXPrimer/&quot;&gt;D.R.Wilkins’ Primer&lt;/a&gt; is a decent place to start.&lt;/p&gt;

&lt;div class=&quot;language-python highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;k&quot;&gt;def&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;hello&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;name&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;sh&quot;&gt;&quot;&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;World&lt;/span&gt;&lt;span class=&quot;sh&quot;&gt;&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;):&lt;/span&gt;
    &lt;span class=&quot;nf&quot;&gt;print&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;sa&quot;&gt;f&lt;/span&gt;&lt;span class=&quot;sh&quot;&gt;&quot;&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;Hello, &lt;/span&gt;&lt;span class=&quot;si&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;name&lt;/span&gt;&lt;span class=&quot;si&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;!&lt;/span&gt;&lt;span class=&quot;sh&quot;&gt;&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;

&lt;span class=&quot;nf&quot;&gt;hello&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;sh&quot;&gt;&quot;&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;Codex&lt;/span&gt;&lt;span class=&quot;sh&quot;&gt;&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

</content>
  </entry>
  
  <entry>
    <title>AMS-$\LaTeX$ Theorem Styles</title>
    <link href="https://dvck.page/ams-latex/"/>
    <updated>2019-05-26T00:00:00+00:00</updated>
    <id>https://dvck.page/ams-latex</id>
    <content type="html">&lt;p&gt;Proof supports $\LaTeX$ with &lt;a href=&quot;https://www.ams.org/publications/authors/tex/amslatex&quot;&gt;AMS&lt;/a&gt; extensions, which provide various features
to facilitate writing math formulas and to give the general structure and 
appearance of a mathematics article or book.&lt;/p&gt;

&lt;p&gt;In particular, theorem styles including &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;definition&lt;/code&gt;, &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;theorem&lt;/code&gt;, &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;lemma&lt;/code&gt;, 
&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;proof&lt;/code&gt;, and a few more&lt;sup id=&quot;fnref:fn1&quot;&gt;&lt;a href=&quot;#fn:fn1&quot; class=&quot;footnote&quot; rel=&quot;footnote&quot; role=&quot;doc-noteref&quot;&gt;1&lt;/a&gt;&lt;/sup&gt; can be declared as an environment using this 
template:&lt;/p&gt;

&lt;div class=&quot;language-markdown highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;gs&quot;&gt;**Theorem**&lt;/span&gt;{:.label #Lagrange}
  _(Lagrange&apos;s Theorem)_
  Let $$G$$ be a finite group, and let $$H$$ be a subgroup
  of $$G$$.  Then the order of $$H$$ divides the order of $$G$$.
{:.theorem}
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Various components of this template can be skipped or customized, so experiment
with them. For instance, to use your own enumeration, use &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;{:.label*}&lt;/code&gt; instead.&lt;/p&gt;

&lt;h2 class=&quot;label&quot; id=&quot;an-example&quot;&gt;An Example&lt;/h2&gt;

&lt;p&gt;The following exposition is taken from &lt;a href=&quot;https://www.maths.tcd.ie/~dwilkins/LaTeXPrimer/Theorems.html&quot;&gt;here&lt;/a&gt;.
Note the minimal changes required&lt;/p&gt;

&lt;h3 class=&quot;label&quot; id=&quot;lagranges-theorem&quot;&gt;Lagrange’s Theorem&lt;/h3&gt;

&lt;p class=&quot;definition*&quot;&gt;&lt;strong class=&quot;label&quot;&gt;Definition&lt;/strong&gt;
  Let &lt;span class=&quot;kdmath&quot;&gt;$H$&lt;/span&gt; be a subgroup of a group &lt;span class=&quot;kdmath&quot;&gt;$G$&lt;/span&gt;.  A &lt;em&gt;left coset&lt;/em&gt;
  of &lt;span class=&quot;kdmath&quot;&gt;$H$&lt;/span&gt; in &lt;span class=&quot;kdmath&quot;&gt;$G$&lt;/span&gt; is a subset of &lt;span class=&quot;kdmath&quot;&gt;$G$&lt;/span&gt; that is of the form &lt;span class=&quot;kdmath&quot;&gt;$xH$&lt;/span&gt;,
  where &lt;span class=&quot;kdmath&quot;&gt;$x \in G$&lt;/span&gt; and &lt;span class=&quot;kdmath&quot;&gt;$xH = \{ xh : h \in H \}$&lt;/span&gt;.
  Similarly a &lt;em&gt;right coset&lt;/em&gt; of &lt;span class=&quot;kdmath&quot;&gt;$H$&lt;/span&gt; in &lt;span class=&quot;kdmath&quot;&gt;$G$&lt;/span&gt; is a subset
  of &lt;span class=&quot;kdmath&quot;&gt;$G$&lt;/span&gt; that is of the form &lt;span class=&quot;kdmath&quot;&gt;$Hx$&lt;/span&gt;, where
  &lt;span class=&quot;kdmath&quot;&gt;$Hx = \{ hx : h \in H \}$&lt;/span&gt;
{::comment} note: the start at end disables numbering&lt;/p&gt;

&lt;p&gt;Note that a subgroup &lt;span class=&quot;kdmath&quot;&gt;$H$&lt;/span&gt; of a group &lt;span class=&quot;kdmath&quot;&gt;$G$&lt;/span&gt; is itself a
left coset of &lt;span class=&quot;kdmath&quot;&gt;$H$&lt;/span&gt; in &lt;span class=&quot;kdmath&quot;&gt;$G$&lt;/span&gt;.&lt;/p&gt;

&lt;p class=&quot;lemma&quot;&gt;&lt;strong class=&quot;label&quot; id=&quot;LeftCosetsDisjoint&quot;&gt;Lemma&lt;/strong&gt;
  Let &lt;span class=&quot;kdmath&quot;&gt;$H$&lt;/span&gt; be a subgroup of a group &lt;span class=&quot;kdmath&quot;&gt;$G$&lt;/span&gt;, and let &lt;span class=&quot;kdmath&quot;&gt;$x$&lt;/span&gt; and &lt;span class=&quot;kdmath&quot;&gt;$y$&lt;/span&gt; be
  elements of &lt;span class=&quot;kdmath&quot;&gt;$G$&lt;/span&gt;.  Suppose that &lt;span class=&quot;kdmath&quot;&gt;$xH \cap yH$&lt;/span&gt; is non-empty.
  Then &lt;span class=&quot;kdmath&quot;&gt;$xH = yH$&lt;/span&gt;.&lt;/p&gt;

&lt;p class=&quot;proof&quot;&gt;&lt;strong class=&quot;label&quot;&gt;Proof&lt;/strong&gt;
  Let &lt;span class=&quot;kdmath&quot;&gt;$z$&lt;/span&gt; be some element of &lt;span class=&quot;kdmath&quot;&gt;$xH \cap yH$&lt;/span&gt;.  Then &lt;span class=&quot;kdmath&quot;&gt;$z = xa$&lt;/span&gt;
  for some &lt;span class=&quot;kdmath&quot;&gt;$a \in H$&lt;/span&gt;, and &lt;span class=&quot;kdmath&quot;&gt;$z = yb$&lt;/span&gt; for some &lt;span class=&quot;kdmath&quot;&gt;$b \in H$&lt;/span&gt;.
  If &lt;span class=&quot;kdmath&quot;&gt;$h$&lt;/span&gt; is any element of &lt;span class=&quot;kdmath&quot;&gt;$H$&lt;/span&gt; then &lt;span class=&quot;kdmath&quot;&gt;$ah \in H$&lt;/span&gt; and
  &lt;span class=&quot;kdmath&quot;&gt;$a^{-1}h \in H$&lt;/span&gt;, since &lt;span class=&quot;kdmath&quot;&gt;$H$&lt;/span&gt; is a subgroup of &lt;span class=&quot;kdmath&quot;&gt;$G$&lt;/span&gt;.
  But &lt;span class=&quot;kdmath&quot;&gt;$zh = x(ah)$&lt;/span&gt; and &lt;span class=&quot;kdmath&quot;&gt;$xh = z(a^{-1}h)$&lt;/span&gt; for all &lt;span class=&quot;kdmath&quot;&gt;$h \in H$&lt;/span&gt;.
  Therefore &lt;span class=&quot;kdmath&quot;&gt;$zH \subset xH$&lt;/span&gt; and &lt;span class=&quot;kdmath&quot;&gt;$xH \subset zH$&lt;/span&gt;, and thus
  &lt;span class=&quot;kdmath&quot;&gt;$xH = zH$&lt;/span&gt;.  Similarly &lt;span class=&quot;kdmath&quot;&gt;$yH = zH$&lt;/span&gt;, and thus &lt;span class=&quot;kdmath&quot;&gt;$xH = yH$&lt;/span&gt;,
  as required.&lt;/p&gt;

&lt;p class=&quot;lemma&quot;&gt;&lt;strong class=&quot;label&quot; id=&quot;SizeOfLeftCoset&quot;&gt;Lemma&lt;/strong&gt;
  Let &lt;span class=&quot;kdmath&quot;&gt;$H$&lt;/span&gt; be a finite subgroup of a group &lt;span class=&quot;kdmath&quot;&gt;$G$&lt;/span&gt;.  Then each left
  coset of &lt;span class=&quot;kdmath&quot;&gt;$H$&lt;/span&gt; in &lt;span class=&quot;kdmath&quot;&gt;$G$&lt;/span&gt; has the same number of elements as &lt;span class=&quot;kdmath&quot;&gt;$H$&lt;/span&gt;.&lt;/p&gt;

&lt;p class=&quot;proof&quot;&gt;&lt;strong class=&quot;label&quot;&gt;Proof&lt;/strong&gt;
  Let &lt;span class=&quot;kdmath&quot;&gt;$H = \{ h_1, h_2,\ldots, h_m\}$&lt;/span&gt;, where
  &lt;span class=&quot;kdmath&quot;&gt;$h_1, h_2,\ldots, h_m$&lt;/span&gt; are distinct, and let &lt;span class=&quot;kdmath&quot;&gt;$x$&lt;/span&gt; be an
  element of &lt;span class=&quot;kdmath&quot;&gt;$G$&lt;/span&gt;.  Then the left coset &lt;span class=&quot;kdmath&quot;&gt;$xH$&lt;/span&gt; consists of
  the elements &lt;span class=&quot;kdmath&quot;&gt;$x h_j$&lt;/span&gt; for &lt;span class=&quot;kdmath&quot;&gt;$j = 1,2,\ldots,m$&lt;/span&gt;.
  Suppose that &lt;span class=&quot;kdmath&quot;&gt;$j$&lt;/span&gt; and &lt;span class=&quot;kdmath&quot;&gt;$k$&lt;/span&gt; are integers between
  &lt;span class=&quot;kdmath&quot;&gt;$1$&lt;/span&gt; and &lt;span class=&quot;kdmath&quot;&gt;$m$&lt;/span&gt; for which &lt;span class=&quot;kdmath&quot;&gt;$x h_j = x h_k$&lt;/span&gt;.  Then
  &lt;span class=&quot;kdmath&quot;&gt;$h_j = x^{-1} (x h_j) = x^{-1} (x h_k) = h_k$&lt;/span&gt;,
  and thus &lt;span class=&quot;kdmath&quot;&gt;$j = k$&lt;/span&gt;, since &lt;span class=&quot;kdmath&quot;&gt;$h_1, h_2,\ldots, h_m$&lt;/span&gt;
  are distinct.  It follows that the elements
  &lt;span class=&quot;kdmath&quot;&gt;$x h_1, x h_2,\ldots, x h_m$&lt;/span&gt; are distinct.
  We conclude that the subgroup &lt;span class=&quot;kdmath&quot;&gt;$H$&lt;/span&gt; and the left
  coset &lt;span class=&quot;kdmath&quot;&gt;$xH$&lt;/span&gt; both have &lt;span class=&quot;kdmath&quot;&gt;$m$&lt;/span&gt; elements,
  as required.&lt;/p&gt;

&lt;p class=&quot;theorem&quot;&gt;&lt;strong class=&quot;label&quot; id=&quot;Lagrange&quot;&gt;Theorem&lt;/strong&gt;
&lt;em&gt;&lt;strong&gt;(Lagrange’s Theorem)&lt;/strong&gt;&lt;/em&gt;
  Let &lt;span class=&quot;kdmath&quot;&gt;$G$&lt;/span&gt; be a finite group, and let &lt;span class=&quot;kdmath&quot;&gt;$H$&lt;/span&gt; be a subgroup
  of &lt;span class=&quot;kdmath&quot;&gt;$G$&lt;/span&gt;.  Then the order of &lt;span class=&quot;kdmath&quot;&gt;$H$&lt;/span&gt; divides the order of &lt;span class=&quot;kdmath&quot;&gt;$G$&lt;/span&gt;.&lt;/p&gt;

&lt;p class=&quot;proof&quot;&gt;&lt;strong class=&quot;label&quot;&gt;Proof&lt;/strong&gt;
  Each element &lt;span class=&quot;kdmath&quot;&gt;$x$&lt;/span&gt; of &lt;span class=&quot;kdmath&quot;&gt;$G$&lt;/span&gt; belongs to at least one left coset
  of &lt;span class=&quot;kdmath&quot;&gt;$H$&lt;/span&gt; in &lt;span class=&quot;kdmath&quot;&gt;$G$&lt;/span&gt; (namely the coset &lt;span class=&quot;kdmath&quot;&gt;$xH$&lt;/span&gt;), and no element
  can belong to two distinct left cosets of &lt;span class=&quot;kdmath&quot;&gt;$H$&lt;/span&gt; in &lt;span class=&quot;kdmath&quot;&gt;$G$&lt;/span&gt;
  (see &lt;a href=&quot;#LeftCosetsDisjoint&quot;&gt;Lemma&lt;/a&gt;).  Therefore every
  element of &lt;span class=&quot;kdmath&quot;&gt;$G$&lt;/span&gt; belongs to exactly one left coset of &lt;span class=&quot;kdmath&quot;&gt;$H$&lt;/span&gt;.
  Moreover each left coset of &lt;span class=&quot;kdmath&quot;&gt;$H$&lt;/span&gt; contains &lt;span class=&quot;kdmath&quot;&gt;$|H|$&lt;/span&gt; elements
  (see &lt;a href=&quot;#SizeOfLeftCoset&quot;&gt;Lemma&lt;/a&gt;).  Therefore &lt;span class=&quot;kdmath&quot;&gt;$|G| = n |H|$&lt;/span&gt;,
  where &lt;span class=&quot;kdmath&quot;&gt;$n$&lt;/span&gt; is the number of left cosets of &lt;span class=&quot;kdmath&quot;&gt;$H$&lt;/span&gt; in &lt;span class=&quot;kdmath&quot;&gt;$G$&lt;/span&gt;.
  The result follows.&lt;/p&gt;

&lt;p&gt;&lt;!--  fix lemma reference numberings  --&gt;&lt;/p&gt;

&lt;div class=&quot;footnotes&quot; role=&quot;doc-endnotes&quot;&gt;
  &lt;ol&gt;
    &lt;li id=&quot;fn:fn1&quot;&gt;

      &lt;p&gt;The full list is: &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;theorem lemma problem proposition conjecture
corollary definition example exercise remark note&lt;/code&gt;. &lt;a href=&quot;#fnref:fn1&quot; class=&quot;reversefootnote&quot; role=&quot;doc-backlink&quot;&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
    &lt;/li&gt;
  &lt;/ol&gt;
&lt;/div&gt;
</content>
  </entry>
  
</feed>
