<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.10.0">Jekyll</generator><link href="https://julienhansen.github.io/feed.xml" rel="self" type="application/atom+xml" /><link href="https://julienhansen.github.io/" rel="alternate" type="text/html" /><updated>2026-05-17T21:28:00+00:00</updated><id>https://julienhansen.github.io/feed.xml</id><title type="html">Julien Hansen</title><subtitle>Personal website — notes on papers, mathematical proofs, and ongoing work.</subtitle><author><name>Julien Hansen</name></author><entry><title type="html">Welcome !</title><link href="https://julienhansen.github.io/blog/2026/05/17/welcome/" rel="alternate" type="text/html" title="Welcome !" /><published>2026-05-17T00:00:00+00:00</published><updated>2026-05-17T00:00:00+00:00</updated><id>https://julienhansen.github.io/blog/2026/05/17/welcome</id><content type="html" xml:base="https://julienhansen.github.io/blog/2026/05/17/welcome/"><![CDATA[<p>This is the first post. It exists mostly to confirm the layout and to verify
that MathJax renders inline and display math the way we want it to.</p>

<h2 id="inline-math">Inline math</h2>

<p>Euler’s identity is $e^{i\pi} + 1 = 0$, which packs five fundamental constants
into a single equation.</p>

<h2 id="display-math">Display math</h2>

<p>A classic — the Gaussian integral:</p>

\[\int_{-\infty}^{\infty} e^{-x^2}\,dx = \sqrt{\pi}.\]

<h2 id="a-small-proof">A small proof</h2>

<p><strong>Claim.</strong> For all $n \in \mathbb{N}$, $\sum_{k=1}^{n} k = \frac{n(n+1)}{2}$.</p>

<p><em>Proof.</em> By induction on $n$.</p>

<p><strong>Base case.</strong> For $n = 1$, the left side is $1$ and the right side is
$\frac{1 \cdot 2}{2} = 1$. ✓</p>

<p><strong>Inductive step.</strong> Assume the identity holds for some $n \geq 1$. Then</p>

\[\sum_{k=1}^{n+1} k = \left(\sum_{k=1}^{n} k\right) + (n+1)
= \frac{n(n+1)}{2} + (n+1)
= \frac{(n+1)(n+2)}{2},\]

<p>which is the formula with $n+1$ in place of $n$. $\blacksquare$</p>

<h2 id="a-bit-of-prose">A bit of prose</h2>

<p>Posts here can mix prose, math, and code blocks freely. A short code sample:</p>

<div class="language-python highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="k">def</span> <span class="nf">gauss_sum</span><span class="p">(</span><span class="n">n</span><span class="p">:</span> <span class="nb">int</span><span class="p">)</span> <span class="o">-&gt;</span> <span class="nb">int</span><span class="p">:</span>
    <span class="k">return</span> <span class="n">n</span> <span class="o">*</span> <span class="p">(</span><span class="n">n</span> <span class="o">+</span> <span class="mi">1</span><span class="p">)</span> <span class="o">//</span> <span class="mi">2</span>
</code></pre></div></div>

<p>That’s all for the first post.</p>]]></content><author><name>Julien Hansen</name></author><category term="meta" /><summary type="html"><![CDATA[This is the first post. It exists mostly to confirm the layout and to verify that MathJax renders inline and display math the way we want it to.]]></summary></entry></feed>