Daily Run: My Mathmo Interests
Subtopic change: No subtopics dropped; continuing prime distribution, topology, and combinatorics.
Day 1
Subtopics: Prime counting up to 100, surface genus and Euler characteristic, Catalan numbers.
Prime counting
- Enumerated primes below $100$ using trial division.
- Computed $\pi(x)$ for $x=10,20,\ldots,100$.
- Stored results in
prime-count.csv
.
- Compared with $\operatorname{Li}(x)$; relative error fell below $10\%$ by $x=100$.
- Verified $\pi(100)=25$.
Surface genus
- Used $\chi=2-2g$ to relate Euler characteristic and genus.
- Tabulated $\chi$ for $g=0$ to $3$ in
genus-table.csv
.
- Confirmed $g=1$ gives $\chi=0$ as for the torus.
- Observed negative $\chi$ for $g>1$ surfaces.
- Noted classification by genus alone.
Catalan numbers
- Implemented the recurrence $C_{n+1}=\sum_{i=0}^{n} C_i C_{n-i}$.
- Generated $C_n$ for $n\le5$ and saved to
catalan.csv
.
- Checked $C_4=14$.
- Compared growth with $\frac{4^n}{n^{3/2}\sqrt{\pi}}$.
- Reviewed interpretations via Dyck paths and binary trees.
Subtopic assessment: The prime counting table provided concrete data, while genus and Catalan explorations were mostly conceptual.