W21 · Mastery gates26–30 hrs

Week 21 of 28 · Mastery · due 2026-10-17 · 26–30 hrs

Advanced NT + Abstract: LTE + Orders + Burnside

Advanced NT + Abstract: LTE + Orders + Burnside gate complete

Train this week in the trainer →

This week's lesson · 10 min read

not started · read first, then train the gates

LTE, primitive roots, and Burnside: the arithmetic of structure

Three finishers this week. Lifting the Exponent computes $v_p(a^n - b^n)$ in one line — the valuation technology of Week 8 industrialized. Primitive roots upgrade 'orders exist' to 'the multiplicative group is cyclic', unlocking every counting argument cyclic groups allow. And Burnside's lemma counts objects up to symmetry by averaging fixed points — the tool for every 'how many necklaces/colorings up to rotation' problem the exam has ever asked.

Structure is a computational discount: cyclicity, group actions, and lifted valuations each replace a case-analysis swamp with one clean formula.

Key ideas — the week on one card

  1. LTE (odd prime $p$, $p \mid a - b$, $p \nmid ab$): $v_p(a^n - b^n) = v_p(a-b) + v_p(n)$; the sum form needs $p \mid a+b$, $p \nmid ab$, and ODD $n$; $p = 2$ has its own formula.
  2. Order for entry, LTE for depth: the order decides WHICH exponents make $p$ divide at all; LTE measures HOW MUCH once it does.
  3. $(\mathbb{Z}/p)^*$ is cyclic: introduce a primitive root and multiplicative questions become exponent arithmetic mod $p-1$ — keep the two moduli separate.
  4. $\sum_{x=1}^{p-1} x^k \equiv -1 \pmod p$ iff $(p-1) \mid k$, else $0$ — the mod-$p$ vote.
  5. Burnside: orbits $= \frac{1}{|G|}\sum_g |\mathrm{Fix}(g)|$, and a coloring is fixed iff constant on each cycle — so $|\mathrm{Fix}(g)| = c^{\#\text{cycles}}$.

1Lifting the Exponent: $v_p(a^n - b^n)$ in one line

LTE, odd prime case: if $p \mid a - b$ but $p \nmid a, b$, then $v_p(a^n - b^n) = v_p(a - b) + v_p(n)$. Read it as a conservation law: the base contributes its valuation once, and only the $p$-part of the EXPONENT can add more. The sum form ($a^n + b^n$, $n$ odd, $p \mid a+b$) is the same statement through $b \mapsto -b$. Proof skeleton worth owning: factor $a^n - b^n = (a-b)(a^{n-1} + \cdots + b^{n-1})$, show the second factor is $\equiv n a^{n-1} \pmod{p}$... and induct on $v_p(n)$ via $a^{pm} - b^{pm} = (a^m)^p - (b^m)^p$.

The $p = 2$ case is the famous trap and carries its own formula: for even $n$ and odd $a, b$, $v_2(a^n - b^n) = v_2(a - b) + v_2(a + b) + v_2(n) - 1$ — BOTH $a - b$ and $a + b$ contribute, because $a^2 \equiv b^2 \pmod 8$ for all odd $a, b$. Every LTE write-up must either avoid $p = 2$ visibly or use the even formula; graders know exactly where this body is buried.

Recognition: any 'find all $n$ such that $p^k \mid a^n - 1$', 'show $n \mid$ [exponential expression]', or Zsygmondy-adjacent divisibility. LTE pairs with orders: the order tells you WHICH $n$ make $p$ divide at all ($d \mid n$), and LTE tells you HOW MUCH $p$ divides once it does. That two-step — order for entry, LTE for depth — resolves most exponential-divisibility problems completely.

Worked example

Find $v_3\left(2^{3^k} + 1\right)$ for $k \ge 1$.

  1. Nudge 1

    Write $2^{3^k} + 1$ as a sum of like powers and check every LTE hypothesis aloud.

    Reveal step 1

    Set up the sum form: $2^{3^k} + 1 = 2^{3^k} + 1^{3^k}$ with the exponent $n = 3^k$ odd, and $3 \mid 2 + 1$. LTE (sum version, $p = 3$ odd) applies.

  2. Nudge 2

    Base contributes its valuation once; the exponent contributes its own $p$-part.

    Reveal step 2

    Apply: $v_3(2^{3^k} + 1^{3^k}) = v_3(2 + 1) + v_3(3^k) = 1 + k$.

  3. Nudge 3

    Sanity-check $k = 1$ by hand before trusting the formula.

    Reveal step 3

    Sanity check $k = 1$: $2^3 + 1 = 9 = 3^2$, and $1 + 1 = 2$. ✓ (One line replaced an induction that would have taken a page — that is LTE's entire value proposition.)

  4. Answer

    $v_3(2^{3^k} + 1) = k + 1$: sum-form LTE, base contributes 1, exponent contributes $k$.

Pitfall. Applying odd-prime LTE at $p = 2$, or forgetting the hypothesis $p \mid a - b$ (for the difference form) entirely. Check 'does $p$ divide the base combination' FIRST — without it, the order of $a/b$ decides whether $p$ divides at all, and LTE says nothing.

2Primitive roots: cyclicity cashed as counting

The theorem: $(\mathbb{Z}/p)^*$ is cyclic for every prime $p$ — some $g$ has order exactly $p - 1$, and then $g^0, g^1, \dots, g^{p-2}$ enumerate all nonzero residues. (Cyclicity also holds mod $p^k$ and $2p^k$ for odd $p$, and fails mod $2^k$ for $k \ge 3$ — file the boundary.) The proof idea to own: count elements of each order using $x^d = 1$ having at most $d$ roots in a field, and the divisor-sum identity $\sum_{d \mid n} \varphi(d) = n$ forces exactly $\varphi(p-1)$ generators.

What cyclicity BUYS: every multiplicative question becomes additive in the exponent. 'How many $k$-th powers mod $p$?' — writing $x = g^t$, the $k$-th powers are $g^{kt}$, i.e. exponents in $k\mathbb{Z}/(p-1)$: exactly $\frac{p-1}{\gcd(k, p-1)}$ of them, each with $\gcd(k, p-1)$ preimages. Sums like $\sum_x x^k \pmod p$ collapse the same way: it is a geometric series in $g^k$, equal to $-1$ if $(p-1) \mid k$ and $0$ otherwise — a two-case fact that quietly powers dozens of problems.

Euler's criterion, revisited from Week 17, is the $k = 2$ shadow of all this: squares are the even-exponent half of the cycle. The general habit: whenever a problem quantifies over all nonzero residues mod $p$ with multiplicative structure, INTRODUCE $g$ and translate to exponent arithmetic mod $p - 1$; the translation is lossless and usually decisive.

Worked example

Compute $\sum_{x=1}^{p-1} x^k \bmod p$ for prime $p$ and $k \ge 1$.

  1. Nudge 1

    Substitute $x = g^t$ for a primitive root $g$ — the sum turns geometric.

    Reveal step 1

    Translate by a primitive root: the sum is $\sum_{t=0}^{p-2} g^{kt}$ — a geometric series with ratio $r = g^k$.

  2. Nudge 2

    Ratio equal to 1: which $k$ does that correspond to, and what is the sum then?

    Reveal step 2

    Case $r = 1$, i.e. $(p-1) \mid k$: every term is 1, total $p - 1 \equiv -1 \pmod p$ (Fermat's little theorem in disguise).

  3. Nudge 3

    Ratio not 1: sum the geometric series and use $r^{p-1} = 1$.

    Reveal step 3

    Case $r \ne 1$: the series sums to $\frac{r^{p-1} - 1}{r - 1} = 0$, since $r^{p-1} = 1$ and $r - 1$ is invertible. Answer: $-1$ when $(p-1) \mid k$, else $0$ — memorize the dichotomy; it is the mod-$p$ analogue of the roots-of-unity vote from Week 8.

  4. Answer

    $-1$ if $(p-1) \mid k$, otherwise $0$: primitive root turns the sum geometric, and the ratio being 1 or not decides everything.

Pitfall. Translating to exponents and then doing arithmetic mod $p$ instead of mod $p - 1$. Exponents live in $\mathbb{Z}/(p-1)$; residues live in $\mathbb{Z}/p$ — mixing the two moduli is the classic primitive-root error.

3Burnside's lemma: count by averaging symmetry

Burnside (Cauchy-Frobenius): when a finite group $G$ acts on a set $X$, the number of orbits is $\frac{1}{|G|}\sum_{g \in G} |\mathrm{Fix}(g)|$ — the AVERAGE number of fixed points. 'Necklaces up to rotation', 'colorings of a cube up to rotation', 'distinct configurations up to symmetry': all are orbit counts, and Burnside converts each into a finite checklist — one fixed-point count per group element, where elements of the same TYPE (same cycle structure) contribute identically, so the checklist has as few lines as the group has conjugacy classes.

The fixed-point counts follow one rule: a coloring is fixed by $g$ iff it is constant on every cycle of $g$, so $|\mathrm{Fix}(g)| = c^{(\text{number of cycles of } g)}$ for $c$ colors. For rotations of an $n$-cycle, rotation by $j$ has $\gcd(j, n)$ cycles — hence the necklace formula $\frac{1}{n}\sum_{j} c^{\gcd(j,n)} = \frac{1}{n}\sum_{d \mid n} \varphi(n/d)\, c^{d}$. Dihedral (allow flips) adds the reflection classes: for odd $n$, each reflection has $\frac{n+1}{2}$ cycles; for even $n$, the two reflection types have $\frac{n}{2} + 1$ and $\frac{n}{2}$.

Proof idea worth one read: double-count pairs $(g, x)$ with $gx = x$ — grouping by $g$ gives $\sum |\mathrm{Fix}(g)|$; grouping by $x$ gives $\sum |G_x| = \sum_{\text{orbits}} |G|$ by orbit-stabilizer. Burnside IS orbit-stabilizer plus double counting: two Week 3 ideas wearing a group. If the lemma's statement ever deserts you mid-exam, this derivation rebuilds it in five lines.

rotations by gcd(j,6) cycles:2⁶+2+2²+2³+2²+2 = 8484 / 6 = 14 necklaces
Burnside on the 6-bead necklace: count what each rotation fixes, then average.

Worked example

How many distinct necklaces of 6 beads use up to 2 colors, counting rotations (not flips) as the same?

  1. Nudge 1

    List each rotation's cycle count via $\gcd(j, 6)$.

    Reveal step 1

    List rotation types by $\gcd(j, 6)$ for $j = 0, \dots, 5$: gcds are $6, 1, 2, 3, 2, 1$ — cycle counts of each rotation.

  2. Nudge 2

    Fixed colorings are $2^{\text{cycles}}$ — total them.

    Reveal step 2

    Fixed colorings per rotation: $2^{\gcd}$, so $2^6 + 2^1 + 2^2 + 2^3 + 2^2 + 2^1 = 64 + 2 + 4 + 8 + 4 + 2 = 84$.

  3. Nudge 3

    Average over the group order and verify by enumerating by bead count.

    Reveal step 3

    Average over $|G| = 6$: $\frac{84}{6} = 14$ necklaces. Enumerate by black-bead count to believe it: $1 + 1 + 3 + 4 + 3 + 1 + 1 = 14$. ✓ The formula did in two lines what the enumeration does with care and luck.

  4. Answer

    $14$: Burnside over the rotation group, $\frac{1}{6}\sum 2^{\gcd(j,6)}$.

Pitfall. Averaging over the wrong group — counting flips as distinct but including reflections in the sum (or vice versa). Write down WHICH symmetries the problem identifies before summing; rotation-only ($C_n$) and rotation-plus-flip ($D_n$) differ, and the problem statement always picks one.

Before you open the gates

  • Exponential divisibility: order decides WHETHER $p$ divides ($d \mid n$); LTE decides HOW MUCH. Run them in that sequence.
  • Check the LTE hypotheses aloud: $p$ odd? $p \mid a \pm b$? $p \nmid ab$? The $p = 2$ formula is different and famous for being forgotten.
  • Multiplicative questions mod $p$ → introduce a primitive root, move to exponent arithmetic mod $p-1$, and keep the two moduli separate.
  • Counting up to symmetry → name the group first ($C_n$ vs $D_n$), then Burnside: fixed points are $c^{\#\text{cycles}}$, grouped by conjugacy class.
  • $\sum x^k \equiv -1$ iff $(p-1) \mid k$, else 0 — the mod-$p$ vote, worth having as a reflex beside the roots-of-unity vote.

Check yourself

1. LTE for odd $p$ with $p \mid a - b$, $p \nmid ab$: $v_p(a^n - b^n) =$

2. $\sum_{x=1}^{p-1} x^k \pmod p$ equals $-1$ exactly when:

3. A coloring is fixed by a permutation $g$ of the positions iff:

Practice ladder — three rungs, rising

Each rung: attempt cold, one hint if stuck, worked resolution only after a real try.

Rung 1 (LTE, direct). Compute $v_3(4^n - 1)$ for every positive integer $n$, and evaluate it at $n = 27$.

One hint

Here $a = 4$, $b = 1$, so $a - b = 3$ and $3 \nmid ab$. Apply the odd-prime LTE formula, then read off $v_3(27)$.

Worked resolution

With $a = 4$, $b = 1$, $p = 3$: $3 \mid 4 - 1$ and $3 \nmid 4\cdot 1$, so LTE gives $v_3(4^n - 1^n) = v_3(4 - 1) + v_3(n) = 1 + v_3(n)$. At $n = 27 = 3^3$, $v_3(27) = 3$, hence $v_3(4^{27} - 1) = 1 + 3 = 4$ (that is, $3^4 \parallel 4^{27} - 1$). Sanity check at $n = 3$: $4^3 - 1 = 63 = 3^2\cdot 7$, matching $1 + v_3(3) = 2$. [Source: this week's Lifting-the-Exponent section — the odd-prime difference formula, drilled by the assigned closed-book LTE re-derivation.]

Rung 2 (primitive roots). Let $p$ be a prime and $d \ge 1$. Prove that the congruence $x^d \equiv 1 \pmod p$ has exactly $\gcd(d, p-1)$ solutions in $\{1, 2, \dots, p-1\}$.

One hint

Fix a primitive root $g$ and write $x = g^t$. Turn the multiplicative condition into a divisibility on the exponent $t$ modulo $p-1$, then count.

Worked resolution

Let $g$ be a primitive root mod $p$, so each $x \in \{1, \dots, p-1\}$ equals $g^t$ for a unique $t \in \{0, 1, \dots, p-2\}$. Then $x^d \equiv 1 \iff g^{dt} \equiv 1 \iff (p-1) \mid dt$. Put $e = \gcd(d, p-1)$; dividing by $e$, this is $\tfrac{p-1}{e} \mid \tfrac{d}{e}\,t$, and since $\gcd(\tfrac{d}{e}, \tfrac{p-1}{e}) = 1$ it is equivalent to $\tfrac{p-1}{e} \mid t$. The multiples of $\tfrac{p-1}{e}$ inside $\{0, \dots, p-2\}$ are $0, \tfrac{p-1}{e}, 2\tfrac{p-1}{e}, \dots, (e-1)\tfrac{p-1}{e}$ — exactly $e$ of them. Hence there are $\gcd(d, p-1)$ solutions. [Source: this week's primitive-roots section — cyclicity turned into exponent arithmetic modulo $p-1$.]

Rung 3 (Burnside, with reflections). Using Burnside's lemma, count the necklaces of $6$ beads in $2$ colors when two necklaces are identified under both rotations and reflections (the dihedral group $D_6$ of order $12$).

One hint

Sum $2^{(\#\text{cycles})}$ over all $12$ symmetries: six rotations (cycle count $\gcd(j,6)$) and six reflections (for even $n$, two reflection types with $\tfrac{n}{2}+1$ and $\tfrac{n}{2}$ cycles), then divide by $12$.

Worked resolution

By Burnside the count is $\tfrac{1}{|D_6|}\sum_g 2^{c(g)}$, where $c(g)$ is the number of cycles of $g$ on the $6$ positions. Rotations: $c = \gcd(j,6)$ for $j = 0, \dots, 5$ gives cycle counts $6, 1, 2, 3, 2, 1$, so $\sum 2^{\gcd} = 2^6 + 2 + 2^2 + 2^3 + 2^2 + 2 = 84$. Reflections (even $n = 6$): three axes through opposite beads fix $2$ beads and pair the other four ($c = 4$, giving $2^4 = 16$ each), and three axes through opposite edge-midpoints pair all six ($c = 3$, giving $2^3 = 8$ each), a reflection total of $3\cdot 16 + 3\cdot 8 = 72$. Therefore the number of necklaces is $\tfrac{1}{12}(84 + 72) = \tfrac{156}{12} = 13$. [Source: this week's Burnside section — the dihedral necklace count, extending the rotation-only worked example as assigned in the Abstract-Algebra continuation (add reflections).]

Prove it — constructed response

Let $p$ be an odd prime and let $a, b$ be integers with $a \ne b$, $p \mid a - b$, $p \nmid a$, and $p \nmid b$. Prove the Lifting-the-Exponent formula $v_p(a^n - b^n) = v_p(a - b) + v_p(n)$ for every positive integer $n$. Give the full argument: first the case $p \nmid n$, then the single-prime step $v_p(a^p - b^p) = v_p(a - b) + 1$, then the induction — and point out exactly where you use that $p$ is odd.

The gates

Technique Resources — LTE + orders/primitive roots + Burnside (study before the reinforcing problems)

Learning support for this week's reinforcing IMO/Putnam problems. Read/watch these before (and after) attempting the LTE + orders/primitive roots + Burnside problems so each attempt has a source to learn the method and to check your write-up against.

why this gate: the lesson's §2 Primitive roots: cyclicity cashed as counting is what it trains

sources & assignments (7)
  • Problems LTE lemma re-derivation (self-contained)Fulfills this gate's 'reinforcing problems'. Re-derive both lifting-the-exponent lemmas closed-book: (a) odd prime p with p | a−b, p∤a,b ⟹ v_p(aⁿ − bⁿ) = v_p(a − b) + v_p(n); (b) the p=2 case separately (a, b odd) — the trap is that v₂(aⁿ − bⁿ) = v₂(a−b) + v₂(a+b) + v₂(n) − 1 needs n even (for n odd it is just v₂(a−b)) (write the parity hypothesis in red). Then 2 fresh LTE reps from the Zhao handout, plus state Wilson's theorem (p−1)! ≡ −1 (mod p), verify it for p = 5, 7, and say in one line why it fails for composite n. (Restores the LTE-II depth displaced by the W18 AbA continuation swap; adds Wilson.)Putnam

Advanced Reading

Advanced Reading

- Read: UCLA ORMC LTE handout (Lifting the Exponent) - Read: CMU 03-NT advanced · 104 NT Problems Ch. 3 - Read: Dummit & Foote section 1.7 (group actions) · Engel Ch. 8 Burnside problems - Watch: Mu Prime Math modular arithmetic + quadratic residues

sources & assignments (7)

Archive Block — A2/B2

Archive Block — A2/B2

- Archive: 4 Putnam A2/B2 · NT + Abstract Algebra · any slot · 20 min each

sources & assignments (5)
  • Problems Archive BrowserPutnam 2000 A2 · Number Theory · 20 min (one slot displaced to the LTE re-derivation below)Putnam

archive pull: 2 problems · Number Theory · A2/B2 · Challenge · 20 min

A3/B3 Entry

A3/B3 Entry (first exposure — not nightmare pace) accelerated only

- Archive: 2 Putnam A3/B3 · NT + Abstract Algebra · any slot · 30 min each - After each: write what you got, what you missed, which tool was needed

sources & assignments (5)
  • Source Dummit & Foote — Abstract Algebra — Week reference — this gate applies this week's lead material (“Deep Study — Group theory beyond recognition (actions, orbits, Burnside's roots)”). If an attempt stalls, the repair source is here.
  • Source Macauley — Visual Group Theory 5.1: Groups acting on sets — Week reference — this gate applies this week's lead material (“Deep Study — Group theory beyond recognition (actions, orbits, Burnside's roots)”). If an attempt stalls, the repair source is here.
  • Source Macauley — Visual Group Theory 5.3: Examples of group actions — Week reference — this gate applies this week's lead material (“Deep Study — Group theory beyond recognition (actions, orbits, Burnside's roots)”). If an attempt stalls, the repair source is here.
  • Source Supplemental — Lupu TTU MATH 4000, Lecture 8 (direct) — Intuition companion for “A3/B3 Entry (first exposure — not nightmare pace)” — the picture behind the machinery; afterwards write one sentence connecting the visual to this gate's exercises.
  • Problems Archive BrowserPutnam 2022 A3 · Number Theory · 30 min eachNightmare

archive pull: 1 problems · Number Theory · A3/B3 · Nightmare · 30 min

A1/B1 Maintenance

A1/B1 Maintenance

- Archive: 4 Putnam A1/B1 · mixed topics · 10 min each

sources & assignments (5)
  • Problems Archive BrowserPutnam 1995 B1 · Algebra · 10 min eachPutnam

archive pull: 1 problems · Algebra · A1/B1 · Standard · 10 min

Stretch

Stretch (only after required work) accelerated only

- Do: 104 NT Problems #80–104 · CMU 2024-03-NT: 2 problems

sources & assignments (5)
  • Problems 104 NT104 NT Problems #80–104 · CMU 2024-03-NT: 2 problemsPutnam

Spiral Reinforcement

Spiral Reinforcement

- Archive: 2 · Combinatorics A2 + 1 · LA/Geometry A1 · any slot

sources & assignments (5)
  • Problems Archive BrowserPutnam 1996 B1 · CombinatoricsPutnam

archive pull: 1 problems · Combinatorics · A2/A1 · Challenge · 20 min

Deep Study — Group theory beyond recognition

Deep Study — Group theory beyond recognition (actions, orbits, Burnside's roots)

Mastery-phase learning gate: Burnside in Week 21's technique gate works only if actions/orbits are actually understood — this gate is that understanding.

Ritual: Output: orbit-stabilizer proof from memory + 2 fully written handout problems.

why this gate: the lesson's §2 Primitive roots: cyclicity cashed as counting is what it trains

sources & assignments (8)

USAMO/IMO Bridge — IMO 2005/4

USAMO/IMO Bridge — IMO 2005/4 (stretch) accelerated only

Ritual: Self-grade 0–7 against the AoPS/official solution: 7 = complete and rigorous · 5–6 = right idea, rigor gaps · 3–4 = key lemma proven · 1–2 = nontrivial progress · 0 = none. Log the score and the single biggest missing idea in the verify box.

sources & assignments (5)
  • Problems IMO 2005/4All positive integers coprime to every a_n = 2^n + 3^n + 6^n − 1 — full writeup to the Evan Chen standard, 60 min cap. Self-grade 0–7 against the AoPS/official solution: 7 = complete and rigorous · 5–6 = right idea, rigor gaps · 3–4 = key lemma proven · 1–2 = nontrivial progress · 0 = none. Log the score and the single biggest missing idea in the verify box.USAMO bridge

Continuation — Comb

Continuation — Comb: GF coefficient extraction reps (≈2 hrs)

Ritual: Thread: Combinatorics. This lane keeps a second course moving during mastery weeks — new material, not review. Required artifact is written; videos are reinforcement only.

sources & assignments (5)
  • Problems Continuation laneWilf §2 selections: 3 coefficient-extraction reps ([x^n] of rational and exp GFs). Each one: state the target coefficient identity BEFORE manipulating. 20-min caps.Standard

Keep-Warm Rotation — groups / Burnside · inequalities · functional equations

Keep-Warm Rotation — groups / Burnside · inequalities · functional equations (30 min)

Ritual: If any micro-rep took over 10 minutes or failed, that family goes on this week's repair list — it was rusting.

why this gate: the lesson's §3 Burnside's lemma: count by averaging symmetry is what it trains

sources & assignments (2)
  • Problems Keep-warm rotationThree 10-minute micro-reps, no notes: (1) abstract algebra (guaranteed) — units mod n: compute (ℤ/nℤ)* for one n, recognize Euler's φ as its size, and do one Burnside orbit-count recap; (2) inequalities — one A1/B1-band inequality rep, or closed-book re-derivation of Cauchy–Schwarz with equality case; (3) functional equations — one FE rep at A1/B1 band: substitutions first, injectivity/surjectivity check second. The dormancy rule: no tool family sleeps longer than 2 weeks — these are the three most overdue right now.Standard

archive pull: 1 problems · Abstract Algebra/Algebra/Functional Equations · A1/B1 · Putnam · 10 min

Hidden Tool

Hidden Tool: Floor / Fractional Part / Beatty Sequences

Floor/fractional-part/Beatty/continued-fraction structure (continued fractions ~2.7% of the archive) — was 1 mention (Hermite only). Fills the thin edge.

sources & assignments (5)
  • Problems 104 NT104 Number Theory Problems — floor / fractional-part problems 1–2Putnam
  • Problems Beatty drillProve ⌊n√2⌋ and ⌊n(2+√2)⌋ partition the positive integers; compute the first 6 convergents of √2.Putnam

archive pull: 2 problems · Number Theory · Putnam · 25 min

Track A∗ — Analysis

Track A∗ — Analysis (parallel mastery track): Uniform convergence & interchange of limit/sum/integral

Runs EVERY mastery week so Analysis never goes cold — the Toolkit parallel-track model carried into Mastery. One depth problem + one A3–A6 reach problem each week.

sources & assignments (4)
  • Problems Analysis (depth)Putnam 1995 A2 — work it with the reading open; one clean write-up.Putnam
  • Problems Analysis (reach)Putnam 1987 B4 — 45 min; extract one rigorous lemma / reach-point (2–4 of 10), do not force a full solve.Nightmare

Track D∗ — Linear Algebra

Track D∗ — Linear Algebra (parallel mastery track): Quadratic forms, PSD, Gram matrices

Runs EVERY mastery week so Linear Algebra never goes cold — the Toolkit parallel-track model carried into Mastery. One depth problem + one A3–A6 reach problem each week.

sources & assignments (4)
  • Problems Linear Algebra (depth)Putnam 1990 B3 — work it with the reading open; one clean write-up.Putnam
  • Problems Linear Algebra (reach)Putnam 1991 A6 — 45 min; extract one rigorous lemma / reach-point (2–4 of 10), do not force a full solve.Nightmare

Track E∗ — Number Theory

Track E∗ — Number Theory (parallel mastery track): Primitive-root applications & indices

Runs EVERY mastery week so Number Theory never goes cold — the Toolkit parallel-track model carried into Mastery. One depth problem + one A3–A6 reach problem each week.

why this gate: the lesson's §2 Primitive roots: cyclicity cashed as counting is what it trains

sources & assignments (4)
  • Problems Number Theory (depth)Putnam 2015 A2 — work it with the reading open; one clean write-up.Putnam
  • Problems Number Theory (reach)Putnam 1991 B5 — 45 min; extract one rigorous lemma / reach-point (2–4 of 10), do not force a full solve.Nightmare

Track C∗ — Combinatorics

Track C∗ — Combinatorics (parallel mastery track): Combinatorial game theory — Nim & Sprague–Grundy

Continuous Combinatorics mastery spine (Track C∗). Combinatorics is the #1 Putnam genre (~20%); A1–B2 combinatorics is already drilled hard in the slots, so this spine adds the continuous theory ladder plus a weekly A3–A6 reach problem (the real gap). One depth re-solve + one fresh reach each week.

sources & assignments (4)
  • Source Combinatorics spine — Combinatorics text — This week: Combinatorial game theory — Nim & Sprague–Grundy. P/N positions, Nim-values, the Sprague–Grundy theorem. Read the matching section, then do the two problems below.
  • Source Combinatorics continuous spine — Runs every Mastery week (parallel-track model) so Combinatorics — the single most frequent Putnam genre (~20%) — never goes cold. 1 depth re-solve + 1 fresh reach problem.
  • Problems Combinatorics (depth)Putnam 2002 A2 — cold re-solve with the reading open; one clean write-up.Putnam
  • Problems Combinatorics (reach)Putnam 1996 A4 — 45 min; extract one rigorous lemma / reach-point (2–4 of 10), do not force a full solve.Nightmare

Track F∗ — Geometry · Combinatorics · Probability

Track F∗ — Geometry · Combinatorics · Probability (parallel maintenance): Combinatorics — Extremal & pigeonhole

Bundled parallel maintenance track so Geometry, Combinatorics, and Probability each get a fixed weekly cadence in Mastery (probability previously had multi-week gaps). Rotates focus; ~1.5 hrs.

sources & assignments (3)
  • Source Engel — Problem-Solving Strategies, Combinatorics — This week’s focus: Extremal & pigeonhole. Extremal principle, pigeonhole at scale, Erdős–Szekeres, Ramsey-flavored bounds.
  • Source Combinatorics keep-warm — Lower-cadence topic on a guaranteed weekly rotation (Toolkit Track F model). 1 problem this week; Combinatorics comes round again every 3rd week.
  • Problems Combinatorics (F∗)Putnam 1987 B2 — extremal & pigeonhole; full attempt + one clean write-up.Putnam

Probability Micro-Spine

Probability Micro-Spine: Variance, second moment & tail bounds

Probability micro-spine: probability is ~5% of Putnam but was only bundled into rotating tracks (study-minutes ran ~1%). Three dedicated drills lift it to its real frequency without over-weighting a low-frequency genre.

sources & assignments (3)
  • Problems Probability (drill)Putnam 2006 A4 — set up the model carefully; one clean write-up.Putnam

archive pull: 1 problems · Probability · A2/B2/A4 · Putnam · 25 min

FE Micro-Spine — Mastery keep-warm

FE Micro-Spine — Mastery keep-warm

Added because FE cannot be a one-week topic; pattern exposure must recur after the W6 load.

Ritual: Write the substitution table before any solution check. Every FE rep must name the first move and the trap it avoided.

sources & assignments (2)
  • Source 100 Functional Equations / Putnam FE repair spine — Micro-rep source for repeated FE pattern exposure: special values, symmetry, injective/surjective forcing, Cauchy/Jensen, iteration, and polynomial-degree comparison.
  • Problems Functional equations micro-repPutnam 1988 A5 — 20-minute FE/algebra reach attempt; output one substitution and one obstruction.Putnam

Problem-Solving Reps — weekly homework

Problem-Solving Reps — weekly homework

Standing weekly homework — the problem-solving book stack, every week. Solve ALL listed; write ONE full clean solution (the rest may stay scratch). Up to 2 due re-solves from your review queue surface first. Slot reinforcement supplement: A2/B2 are deliberately overtrained so they become bankable, not occasional exposure. Slot reinforcement supplement: A3/B3 now get repeated lemma-hunt reps so slot 3 is trained as a strong reach tier.

sources & assignments (12)
  • Problems Engel/PnBEngel Ch. 6 probs 11–16 · PnB section 5.3 probs 1–4 (LTE/orders)Putnam
  • Problems 104 NT104 Number Theory Problems — Advanced probs 1–4 (LTE/orders)Putnam
  • Problems Dummit & Foote§1.7/§4.1 group actions — Burnside/orbit-counting probs 1–2Putnam
  • Problems Putnam ArchivePutnam 2020 A2 - 18 min clean-solve; write the final proof and fatal-slip check.Putnam
  • Problems Putnam ArchivePutnam 1993 B2 - 22 min clean-solve; write the final proof and fatal-slip check.Putnam
  • Problems Putnam ArchivePutnam 2012 A3 - 35 min lemma hunt; record one rigorous lemma even if the full proof does not close.Nightmare
  • Problems Putnam ArchivePutnam 2011 B3 - 35 min lemma hunt; compare to official solution after the attempt.Nightmare
  • Problems Putnam Slot 2 EqualizerSlot-2 Equalizer Set 8: Putnam 1992 A2, Putnam 1997 A2, Putnam 2014 B2 - clean-solve focus; write final proofs and fatal-slip checks.Putnam
  • Problems Putnam Slot 4 EqualizerSlot-4 Equalizer Set 8: Putnam 1996 B4, Putnam 1998 B4, Putnam 1999 B4 - reach/lemma focus; extract the first invariant or structure before reading solutions.Nightmare
  • Problems AMC/AIME Fluency OpenerOptional 5-minute opener: solve the three linked AMC/AIME reps before Putnam work; stop at 15 minutes total.AMC/AIME · archive: AMC probabilityAMC probability/NTAMC expectation
  • Problems Putnam Full Past ExamFull Past Exam 19: Putnam 2013 A1, Putnam 2013 A2, Putnam 2013 A3, Putnam 2013 A4, Putnam 2013 A5, Putnam 2013 A6, Putnam 2013 B1, Putnam 2013 B2, Putnam 2013 B3, Putnam 2013 B4, Putnam 2013 B5, Putnam 2013 B6 - Primary paper protocol: A-session A1-A6 in one 180-minute block; B-session B1-B6 in one 180-minute block within 48 hours; next day score all 12 slots, tag every miss, and choose three repair pulls.Putnam
  • Problems Putnam Full Past ExamFull Past Exam 20: Putnam 2014 A1, Putnam 2014 A2, Putnam 2014 A3, Putnam 2014 A4, Putnam 2014 A5, Putnam 2014 A6, Putnam 2014 B1, Putnam 2014 B2, Putnam 2014 B3, Putnam 2014 B4, Putnam 2014 B5, Putnam 2014 B6 - Secondary paper protocol: Day 1 bankable sweep A1-A2-B1-B2 in 100 minutes; Day 2 medium/hard sweep A3-A4-B3-B4 in 100 minutes with certified-lemma goal; Day 3 reach scan A5-A6-B5-B6 in 50 minutes; Day 4 score all 12 slots and re-solve one same-family miss.Putnam

archive pull: 2 problems · Number Theory/Abstract Algebra · Nightmare · 60 min

Reflect

Reflect: reconstruct and log the pattern

- Standard ---

Ritual: Pick one NT/group-theory solve. Close all notes and the solution. Rewrite the full solution from memory, then compare with the original — what did you miss or reorder? Write one pattern note: "When I see [pattern], do [first move]."

sources & assignments (4)

Verify: audit one proof before closing

unlocks after: Reflect: reconstruct and log the pattern

- Standard ---

Ritual: Pick one solution. Re-check for: (1) a false claim, (2) a missing case, (3) a wrong bound. Extra check for NT: does the argument survive p=2? gcd not 1? n=1?

sources & assignments (4)

Exit contract — Week 21

Verification remaining

  • reading progress…

Carry-forward repairs

  • reading queue…

Next week opens with

W22 · USAMO Bridge: Nightmare Entry
the exam follows the final taper week

Train Week 21 in the trainer →