W16 · Mastery gates28–32 hrs

Week 16 of 28 · Mastery · due 2026-09-12 · 28–32 hrs

Mixed A1–B2 Timed Sets + Finish-Clean Drills

Mixed A1–B2 Timed Sets + Finish-Clean Drills gate complete

Train this week in the trainer →

This week's lesson · 10 min read

not started · read first, then train the gates

The counting canon: identities you recognize before you prove

Every binomial identity on the exam is a story told twice: once as algebra, once as counting. This week installs the canon — Vandermonde, the hockey stick, Catalan numbers, the ballot problem, partitions and compositions — plus the snake-oil method for sums that resist direct attack. And the timed mixed sets begin: A1 through B2 in one sitting, the first rehearsal of the real session's shape.

Prove it by counting one set two ways and the identity becomes a story you can re-tell under pressure — algebraic derivations evaporate, stories survive.

Key ideas — the week on one card

  1. Identities with stories: Vandermonde, hockey stick, committee-chair — one named set, two honest counts, and the pair of sentences IS the proof.
  2. Catalan: $C_n = \frac{1}{n+1}\binom{2n}{n}$ counts never-below-diagonal paths, nestings, triangulations — conjecture on $1, 2, 5$, prove by reflection or bijection.
  3. The reflection principle: bad paths biject with unrestricted paths from a reflected start via the FIRST touch of the forbidden line.
  4. Session ritual: read all three, rank by YOUR time-to-bank, pre-commit checkpoints, and finish-clean before switching problems.

1The identities with names, and the stories that prove them

Vandermonde: $\sum_k \binom{m}{k}\binom{n}{r-k} = \binom{m+n}{r}$ — choose $r$ people from $m$ men and $n$ women, split by how many men. Hockey stick: $\sum_{i=r}^{n} \binom{i}{r} = \binom{n+1}{r+1}$ — choose $r+1$ from $\{0,\dots,n\}$, split by the LARGEST element chosen. Committee-chair: $k\binom{n}{k} = n\binom{n-1}{k-1}$ — pick a committee with a chair, chair first or committee first. Each identity is one sentence naming the set and one sentence naming the two splits; that pair of sentences IS the proof, and it is the form you can reproduce at minute 80 of a session.

Compositions and partitions: compositions of $n$ (ordered) number $2^{n-1}$ — place bars in the $n-1$ gaps of a row of stones; with exactly $k$ parts, $\binom{n-1}{k-1}$ (stars and bars' cousin). Nonnegative solutions of $x_1 + \cdots + x_k = n$: $\binom{n+k-1}{k-1}$ — the workhorse. Partitions (unordered) have no simple finite closed form, which is exactly why they travel with generating functions: $\prod_{k \ge 1} \frac{1}{1-x^k}$, and Euler's trick of matching factor sets proves gems like 'partitions into odd parts = partitions into distinct parts' by pairing $\frac{1}{1-x^{2k-1}}$ against $(1+x^k)$ products.

The snake-oil method (Wilf's name, worth knowing) mechanizes hard sums: to evaluate $f(n) = \sum_k g(n, k)$, compute the generating function $\sum_n f(n) x^n$, SWAP the order of summation, recognize the inner sum in closed form, and read off coefficients. It converts cleverness-demanding identities into routine double-sum bookkeeping — the method to reach for when a binomial sum has no visible story.

Worked example

Evaluate $\sum_{k=0}^{n} \binom{n}{k}^2$.

  1. Nudge 1

    Flip one factor by symmetry so the sum takes Vandermonde's shape.

    Reveal step 1

    Rewrite one factor with symmetry: $\binom{n}{k}^2 = \binom{n}{k}\binom{n}{n-k}$, so the sum is $\sum_k \binom{n}{k}\binom{n}{n-k}$ — Vandermonde's shape with $m = n$, $r = n$.

  2. Nudge 2

    Tell the two-way story: $n$ people chosen from $n$ men and $n$ women, classified by men chosen.

    Reveal step 2

    Tell the story: choose $n$ people from a room of $n$ men and $n$ women; classify by the number $k$ of men chosen (forcing $n - k$ women). The two-way count gives $\binom{2n}{n}$.

  3. Nudge 3

    Check the smallest nontrivial case before trusting the identity.

    Reveal step 3

    Sanity check at $n = 2$: $1 + 4 + 1 = 6 = \binom{4}{2}$. ✓ One symmetry flip plus one story — no algebra beyond $\binom{n}{k} = \binom{n}{n-k}$.

  4. Answer

    $\binom{2n}{n}$ — Vandermonde after a symmetry flip; the men-and-women story is the whole proof.

Pitfall. Reaching for induction on identities that have a story. Induction on $\sum \binom{n}{k}^2$ works but costs fifteen minutes of algebra; the double count costs three sentences. On identities, always hunt the story first.

2Catalan numbers and the reflection principle

Catalan numbers $C_n = \frac{1}{n+1}\binom{2n}{n}$ count an absurd range of structures: balanced parenthesizations, monotone lattice paths that never cross the diagonal, triangulations of an $(n+2)$-gon, binary trees with $n$ internal nodes, non-crossing chord diagrams. The exam move is RECOGNITION: when a counting problem has a 'never go below zero' or 'non-crossing' or 'properly nested' constraint, conjecture Catalan, verify on $n = 1, 2, 3$ ($1, 2, 5$), then prove by bijection to a known Catalan family or by the reflection principle.

The reflection principle proves the path count directly: paths from $A$ to $B$ that TOUCH a forbidden line correspond bijectively to unrestricted paths from $A'$ (the reflection of $A$) to $B$ — reflect the prefix up to the first touch. Bad counts become unrestricted counts of a shifted problem, and subtraction finishes. This one bijection also settles the ballot problem: the probability that candidate $A$, winning $p$ votes to $q$ with $p > q$, stays STRICTLY ahead throughout the count is $\frac{p-q}{p+q}$.

The recurrence $C_{n+1} = \sum_{i} C_i C_{n-i}$ (split at the first return to zero / the root of the tree) is the other signature, and it is worth knowing that this recurrence plus generating functions yields the closed form: $C(x) = 1 + xC(x)^2$, solve the quadratic, expand the square root binomially. When a problem produces THAT recurrence, you are holding Catalan whether or not paths are visible.

y = x + 1first touch → reflect the prefix(−1, 1)
The reflection principle: a bad path's prefix, flipped at its first touch of y = x + 1, becomes a path from the reflected start.

Worked example

Count lattice paths from $(0,0)$ to $(n,n)$ using steps right and up that never rise above the diagonal $y = x$.

  1. Nudge 1

    Count all monotone paths first, then aim to count the BAD ones exactly.

    Reveal step 1

    Total unrestricted paths: $\binom{2n}{n}$ (choose which $n$ of the $2n$ steps go right). Now count the BAD paths — those touching the line $y = x + 1$.

  2. Nudge 2

    Reflect the prefix of a bad path at its first touch of $y = x + 1$ — where does the start move to?

    Reveal step 2

    Reflect: swap right/up steps in the prefix of a bad path up to its first touch of $y = x+1$ — equivalently, reflect the start across that line, sending $(0,0)$ to $(-1, 1)$. Bad paths biject with ALL paths from $(-1,1)$ to $(n,n)$: that is $2n$ steps of which $n+1$ go right, so $\binom{2n}{n+1}$.

  3. Nudge 3

    Subtract and simplify the difference of binomials.

    Reveal step 3

    Subtract: $\binom{2n}{n} - \binom{2n}{n+1} = \frac{1}{n+1}\binom{2n}{n} = C_n$ (one line of factorial algebra). The reflection converted a constraint into a coordinate shift.

  4. Answer

    $C_n = \frac{1}{n+1}\binom{2n}{n}$: total minus reflected-bad. The first-touch reflection is the reusable engine.

Pitfall. Fuzzy 'first touch' bookkeeping. The reflection bijection needs a well-defined first crossing to reflect at — state it, and check the map is a bijection by describing its inverse (reflect back at the same first touch). A reflection argument without the inverse direction is half a proof.

3The mixed timed set: your first real session rehearsal

This week's timed sets present A1-B2 difficulty MIXED in one sitting — the first time training matches the real December shape: three problems, ninety minutes, no labels telling you which is the gentle one. The skill being trained is ORDERING: five minutes reading all three, ranking by expected solve time for YOU (not by slot number), and committing to the plan. Putnam problem numbers estimate global difficulty; your personal ranking beats them often enough that the read-and-rank ritual pays for its five minutes.

Finish-clean discipline: a solved problem is not banked until the write-up would survive a hostile grader — every claim justified, edge cases closed ($n = 1$! empty sets! division by the thing that might be zero!), equality conditions stated. The finish-clean drill this week isolates that skill: take solved problems and harden the write-ups. Most solvers lose 2-4 points per session to write-up leaks on problems they SOLVED; this is the cheapest score improvement available to you.

Between-problem hygiene: when you park a problem at a checkpoint, write one line — current best idea, what you would try next — before switching. Re-entry costs three minutes when the parking note exists and ten when it does not; over a session with two switches, the notes buy you a quarter of a problem.

Worked example

Session plan: you read three problems — a functional equation (looks routine), a lattice count (looks Catalan-ish), an integral inequality (no idea). Plan the ninety minutes.

  1. Nudge 1

    Rank by YOUR expected time-to-bank, not by how interesting each problem looks.

    Reveal step 1

    Rank by expected time-to-bank for you: FE first (routine → 25 min target), lattice second (one idea needed, but the Catalan hypothesis gives an entry → 30 min), integral last (no plan → whatever remains).

  2. Nudge 2

    Set the parking checkpoints BEFORE starting anything.

    Reveal step 2

    Set checkpoints before starting: FE parked if no structure by minute 15; lattice parked if the bijection has not appeared by its minute 30. Checkpoints set IN ADVANCE survive adrenaline; ones invented mid-problem always slide.

  3. Nudge 3

    Bank means grader-proof — harden the write-up before you switch.

    Reveal step 3

    Execute with the banking rule: after solving the FE at minute 22, spend five minutes finish-cleaning BEFORE opening the lattice problem — banked means grader-proof, and switching before the write-up hardens is how solved problems leak to 8/10.

  4. Answer

    Rank by personal time-to-bank, pre-commit checkpoints, and harden each write-up before switching — points live in finished, clean problems.

Pitfall. Reading only the first problem and diving. The five-minute read of all three is the highest-EV act in the session; the difference between attacking your best problem and the paper's first problem is routinely a full solve.

Before you open the gates

  • Identity spotted → hunt the two-way counting story before touching algebra; the story is the exam-safe proof.
  • Never-below-zero / non-crossing / properly-nested → conjecture Catalan, check $1, 2, 5$, then reflect or biject.
  • Snake oil for storyless sums: generating function, swap summation order, recognize, extract.
  • Session ritual: read all three, rank personally, pre-commit checkpoints, park with a one-line note.
  • Banked = grader-proof: finish-clean each solve before switching problems; write-up leaks on solved problems are the cheapest points you will ever recover.

Check yourself

1. Vandermonde's identity $\sum_k \binom{m}{k}\binom{n}{r-k} = \binom{m+n}{r}$ is proven by the story:

2. The reflection principle counts paths that touch a forbidden line by:

3. The first five minutes of a mixed timed session are best spent:

Practice ladder — three rungs, rising

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

Rung 1 (bijection, direct). Prove that a positive integer $n$ has exactly $2^{n-1}$ compositions — ordered tuples $(a_1,\dots,a_k)$ of positive integers with $a_1+\cdots+a_k=n$ — by exhibiting a bijection with the subsets of $\{1,2,\dots,n-1\}$.

One hint

Lay $n$ ones in a row; a composition is a choice of which of the $n-1$ gaps between consecutive ones to cut. Turn that into a map from compositions to subsets of $\{1,\dots,n-1\}$ using partial sums.

Worked resolution

Map a composition $(a_1,\dots,a_k)$ of $n$ to the set of its proper partial sums $S=\{a_1,\ a_1+a_2,\ \dots,\ a_1+\cdots+a_{k-1}\}\subseteq\{1,\dots,n-1\}$ (the $k-1$ interior cut points among the $n-1$ gaps). This is a bijection: given any subset $\{s_1<s_2<\cdots<s_{k-1}\}\subseteq\{1,\dots,n-1\}$, the unique composition mapping to it is $(s_1,\ s_2-s_1,\ \dots,\ n-s_{k-1})$, whose parts are positive and sum to $n$. Since $\{1,\dots,n-1\}$ has $2^{n-1}$ subsets, $n$ has $2^{n-1}$ compositions. [Source: this week's counting-canon gate — compositions of $n$ via the cut-point bijection with subsets of $\{1,\dots,n-1\}$ (the assigned counting-canon mini-set).]

Rung 2 (reflection principle). In an election, candidate $A$ receives $p$ votes and candidate $B$ receives $q$ votes with $p>q$. Prove that the number of orderings of the $p+q$ votes in which $A$ is strictly ahead of $B$ after every vote is counted equals $\dfrac{p-q}{p+q}\dbinom{p+q}{p}$.

One hint

Model an ordering as a lattice path with $+1$ for an $A$-vote and $-1$ for a $B$-vote. 'Strictly ahead throughout' forces the first step $+1$ and no return to height $0$ afterward. Reflect the bad paths (those that return to $0$) at their first return.

Worked resolution

Represent an ordering as a path of $+1$ ($A$) and $-1$ ($B$) steps; 'A strictly ahead throughout' means every partial sum is $\ge 1$. The first step must be $+1$, reaching height $1$, and the good orderings are the paths from there that never return to height $0$. Among the $\binom{p+q-1}{p-1}$ paths whose first step is $+1$, the bad ones return to $0$ at some later point; reflecting such a path across height $0$ up to its first return is a bijection onto the paths whose first step is $-1$, of which there are $\binom{p+q-1}{p}$. Hence the number of good orderings is $\binom{p+q-1}{p-1}-\binom{p+q-1}{p}=\dfrac{(p+q-1)!}{p!\,q!}\,(p-q)=\dfrac{p-q}{p+q}\dbinom{p+q}{p}$. (Check $p=2,q=1$: the formula gives $1$, and indeed only $AAB$ keeps $A$ strictly ahead.) [Source: this week's Catalan / reflection-principle section — the ballot problem the reflection argument solves (the assigned 'state the ballot problem it solves').]

Rung 3 (generating function, done solo). Let $C_n$ be the Catalan numbers, with $C_0=1$ and $C_{n+1}=\sum_{i=0}^{n}C_i\,C_{n-i}$. Prove that the generating function $C(x)=\sum_{n\ge0}C_n x^n$ satisfies $C(x)=1+x\,C(x)^2$, and deduce the closed form $C_n=\dfrac{1}{n+1}\dbinom{2n}{n}$.

One hint

The convolution $\sum_i C_iC_{n-i}$ is the coefficient of $x^n$ in $C(x)^2$. Solve the resulting quadratic for $C(x)$, pick the root with $C(0)=1$, and expand $\sqrt{1-4x}$ by the generalized binomial theorem.

Worked resolution

The recurrence says $[x^n]\,C(x)^2=\sum_{i=0}^{n}C_iC_{n-i}=C_{n+1}$ for $n\ge0$. Multiplying by $x$ and summing over $n\ge0$, $x\,C(x)^2=\sum_{n\ge0}C_{n+1}x^{n+1}=C(x)-C_0=C(x)-1$, i.e. $C(x)=1+x\,C(x)^2$. Solving the quadratic $x\,C^2-C+1=0$ gives $C(x)=\dfrac{1-\sqrt{1-4x}}{2x}$ (the minus sign chosen so that $C(0)=1$; the other root diverges as $x\to0$). By the generalized binomial theorem $[x^n]\sqrt{1-4x}=\dbinom{1/2}{n}(-4)^n=-\dfrac{2}{n}\dbinom{2n-2}{n-1}$ for $n\ge1$, so $C(x)=\dfrac{1-\sqrt{1-4x}}{2x}=\dfrac{1}{2x}\sum_{n\ge1}\dfrac{2}{n}\dbinom{2n-2}{n-1}x^n=\sum_{n\ge1}\dfrac{1}{n}\dbinom{2n-2}{n-1}x^{n-1}=\sum_{m\ge0}\dfrac{1}{m+1}\dbinom{2m}{m}x^m$. Hence $C_m=\dfrac{1}{m+1}\dbinom{2m}{m}$. [Source: this week's Catalan / generating-function material — the recurrence $C(x)=1+xC(x)^2$ and its closed form, from the deep-study generating-functions gate (Wilf) and the Track C* ordinary-GF spine.]

Prove it — constructed response

Prove Euler's partition identity: for every positive integer $n$, the number of partitions of $n$ into odd parts equals the number of partitions of $n$ into distinct parts. Give the generating-function proof — build both generating functions and prove the product identity that equates them.

The gates

New Topic: Combinatorial Identities + Counting Canon (Vandermonde · snake-oil · Catalan · ballot · partitions · compositions)

- New-topic extension (continuous learning alongside weak-topic review): New Topic: Combinatorial Identities + Counting Canon (Vandermonde · snake-oil · Catalan · ballot · partitions · compositions)

why this gate: the lesson's §1 The identities with names, and the stories that prove them is what it trains

sources & assignments (6)
  • Problems Concrete MathematicsConcrete Math Ch. 5 — 1 identity problem. Then the counting-canon mini-set (displaces the second identity problem): (1) derive the Catalan number C_n by the reflection argument and state the ballot problem it solves; (2) prove there are 2^(n−1) compositions of n, first by the cut-point bijection with subsets of {1,…,n−1}, then by generating function; (3) Euler's partition identity — partitions of n into odd parts equal partitions into distinct parts — via the product-form generating-function proof in Wilf §3.16 (Theorem 3.16.1).Putnam

AMC/AIME Speed Warmup

AMC/AIME Speed Warmup (build pattern recognition + speed)

- AMC/AIME speed warmup — fast pattern-recognition reps; not full Putnam difficulty.

sources & assignments (5)
  • Problems Archive (hand-picked)3 AMC/AIME number theory speed reps (open each below) · ~8 min eachAMC/AIME · archive: AMC 12 A2021 AMC 10 BAMC 12 B

Mixed Exam-Set Strategy

Mixed Exam-Set Strategy (review)

- Review gate (depth): Mixed Exam-Set Strategy (review)

why this gate: the lesson's §3 The mixed timed set: your first real session rehearsal is what it trains

sources & assignments (6)

Timed Sets

Timed Sets (2 sessions)

- Session A: 5 problems · mixed A1/A2/B1/B2 · mixed topics · 25 min each - Session B: 5 problems · different topics from Session A · 25 min each

Ritual: Two timed sessions: Session A — 5 problems, mixed A1/A2/B1/B2, mixed topics, 25 min each. Session B — 5 problems, different topics from A, 25 min each. Full timing discipline, then mark every miss for the autopsy.

why this gate: the lesson's §3 The mixed timed set: your first real session rehearsal is what it trains

sources & assignments (4)

Finish-Clean

Finish-Clean

- Do: 3 problems where you found the idea but wrote sloppily — rewrite to 8–10 quality - Read: Putnam Guide General Strategies — active checklist: what are you not doing?

sources & assignments (7)
  • Problems 33 problems where you found the idea but wrote sloppily — rewrite to 8–10 qualityPutnam
  • Problems Archive Browser1 probability rep: expectation/indicator-variable problem, A1/B1 band, 15 min cap — probability has been untouched since Week 13; this single rep keeps the indicator-variable reflex alive until the Week 20 probabilistic-method week.Putnam

A1/B1 Maintenance

A1/B1 Maintenance

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

sources & assignments (5)
  • Problems Archive BrowserPutnam 2013 B1, 2012 B1, 2010 B1 · Analysis · 10 min eachPutnam

archive pull: 3 problems · Analysis · A1/B1 · Standard · 10 min

Spiral Reinforcement

Spiral Reinforcement

- Archive: 2 · Algebra A2 + 2 · Analysis A2 · any slot

sources & assignments (5)
  • Problems Archive BrowserPutnam 2012 A2, 2003 A2 · AlgebraPutnam

archive pull: 2 problems · Algebra · A2 · Challenge · 20 min

Deep Study — Generating functions for real

Deep Study — Generating functions for real (Wilf + Stanley, free full texts)

Mastery-phase learning gate: Wilf and Stanley are the canonical texts; both links are the complete legal PDFs.

Ritual: Output: 10-identity binomial card + 1 GF derivation written closed-book.

sources & assignments (9)
  • Problems Drill — IE vs GF, same object twiceCount derangements D_n two ways from scratch: (1) inclusion-exclusion over fixed points, (2) the exponential generating function e^{-x}/(1-x). Verify both give D_5 = 44. One paragraph: when is IE the better weapon than a generating function, and what signals it on sight?Standard

USAMO/IMO Bridge — USAMO 2002/1

USAMO/IMO Bridge — USAMO 2002/1 (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 USAMO 2002/1Color all subsets of a 2002-element set red/blue with union-closure conditions, hitting exactly N red — 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 — Abstract Algebra

Continuation — Abstract Algebra: dihedral groups (≈2 hrs)

Ritual: Thread: Abstract Algebra. Required ~2-hr continuation swapped from analysis integral reps — dihedral groups + a first group action, runway for next week's orbit-stabilizer.

sources & assignments (6)
  • Problems Continuation lane — Abstract AlgebraPresent D_n = ⟨r, s | rⁿ = s² = 1, srs = r⁻¹⟩: (1) verify srs = r⁻¹ from a concrete rotation/reflection of a square (n=4); (2) list all 8 elements of D₄ and build a partial Cayley table; (3) for the action of D₄ on the 4 vertices of a square, compute the stabilizer of one vertex and its orbit, and check |orbit|·|stab| = |D₄|; (4) classify each element as a rotation or reflection by its order. Displaces the analysis integral-technique continuation — integral techniques remain in W6 and the W18 Feynman/Abel deep-study.Standard

Keep-Warm Rotation — extremal / graph · modular / CRT · probability

Keep-Warm Rotation — extremal / graph · modular / CRT · probability (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.

sources & assignments (2)
  • Problems Keep-warm rotationThree 10-minute micro-reps, no notes: (1) extremal / graph — one extremal rep: state the extremal configuration before proving it; (2) modular / CRT — one congruence rep, or a 2-line CRT system solved by hand; (3) probability — one expectation rep via indicators — name the indicator decomposition first. The dormancy rule: no tool family sleeps longer than 2 weeks — these are the three most overdue right now.Standard

archive pull: 1 problems · Combinatorics/Number Theory/Probability · A1/B1 · Putnam · 10 min

Track A∗ — Analysis

Track A∗ — Analysis (parallel mastery track): Rearrangements & infinite products

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 2008 B2 — work it with the reading open; one clean write-up.Putnam
  • Problems Analysis (reach)Putnam 1994 B5 — 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): Eigenvalues & the characteristic polynomial

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 2019 B3 — work it with the reading open; one clean write-up.Putnam
  • Problems Linear Algebra (reach)Putnam 2005 B6 — 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): Orders & primitive roots

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.

sources & assignments (4)
  • Problems Number Theory (depth)Putnam 1969 B2 — work it with the reading open; one clean write-up.Putnam
  • Problems Number Theory (reach)Putnam 1987 B3 — 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): Generating functions I — ordinary GFs

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 — GFUNC text — This week: Generating functions I — ordinary GFs. Hang a sequence on one function; extract coefficients; partitions/compositions. 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 1995 A1 — cold re-solve with the reading open; one clean write-up.Putnam
  • Problems Combinatorics (reach)Putnam 1993 A3 — 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): Probability — Expectation & indicators

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 Blitzstein & Hwang — Introduction to Probability (free) — This week’s focus: Expectation & indicators. Linearity of expectation, indicator variables, the first-step/recursion setup.
  • Source Probability keep-warm — Lower-cadence topic on a guaranteed weekly rotation (Toolkit Track F model). 1 problem this week; Probability comes round again every 3rd week.
  • Problems Probability (F∗)Putnam 1985 B4 — expectation & indicators; full attempt + one clean write-up.Putnam

Integration-Bee Micro-Spine

Integration-Bee Micro-Spine: Rapid definite-integral toolkit

Integration-Bee micro-spine: fills the computational rapid-integral genre (~7% of Putnam) that the proof-heavy Analysis spine does not train for speed. Built on the local MIT Bee topics guide.

sources & assignments (3)
  • Source MIT Integration Bee — Topics Guide — This week: Rapid definite-integral toolkit — symmetry, King’s rule (a+b−x), Feynman (differentiate under ∫), series swap, Gaussian.
  • Source Why this track — ~7% of Putnam problems are compute-the-integral (the "MIT BEE" genre). Proof-based integration is covered in the Analysis spine; this is the speed/trick layer.
  • Problems Integration speed10 definite integrals from the guide, timed 30 min. Goal: recognize the trick fast (symmetry / King / Feynman / series), evaluate cleanly. Mark the two you stalled on.Tutorial

Half Mock — A1–A3 pressure block

Half Mock — A1–A3 pressure block (120 min)

Adds serious mock pressure before the W18 A-session and W20 half-Putnam.

Ritual: Postmortem: minutes spent, score estimate, and the exact bail point on A3.

sources & assignments (2)
  • Source Half-mock protocol — One continuous 120-minute sitting. Try A1/A2 for clean points, then A3 for a reach lemma. No notes.
  • Problems Half mockPutnam 2018 A1, Putnam 2018 A2, Putnam 2018 A3 — 120 minutes continuous; A1/A2 clean, A3 lemma if possible.Nightmare

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 (11)
  • Problems PnBPnB Ch. 6 probs 7–10 (mixed review)Putnam
  • Problems Kedlaya + MAAPutnam 1997 A1,A2,B1,B2 · 2016 A1,A2,B1,B2 (timed)Putnam
  • Problems Putnam ArchivePutnam 2007 A2 - 18 min clean-solve; write the final proof and fatal-slip check.Putnam
  • Problems Putnam ArchivePutnam 2010 B2 - 22 min clean-solve; write the final proof and fatal-slip check.Putnam
  • Problems Putnam ArchivePutnam 2006 A3 - 35 min lemma hunt; record one rigorous lemma even if the full proof does not close.Nightmare
  • Problems Putnam ArchivePutnam 2004 B3 - 35 min lemma hunt; compare to official solution after the attempt.Nightmare
  • Problems Putnam Slot 2 EqualizerSlot-2 Equalizer Set 3: Putnam 2010 A2, Putnam 2011 A2, Putnam 2014 A2 - clean-solve focus; write final proofs and fatal-slip checks.Putnam
  • Problems Putnam Slot 4 EqualizerSlot-4 Equalizer Set 3: Putnam 2019 A4, Putnam 2020 A4, Putnam 2021 A4 - reach/lemma focus; extract the first invariant or structure before reading solutions.Nightmare
  • Problems Slot 2 Pair BalancerPutnam 2017 A2, Putnam 2017 B2, Putnam 2018 A2, Putnam 2018 B2 - timed A2/B2 score-growth reps; write one clean proof and one official-solution autopsy note.Putnam
  • Problems Putnam Full Past ExamFull Past Exam 09: Putnam 2003 A1, Putnam 2003 A2, Putnam 2003 A3, Putnam 2003 A4, Putnam 2003 A5, Putnam 2003 A6, Putnam 2003 B1, Putnam 2003 B2, Putnam 2003 B3, Putnam 2003 B4, Putnam 2003 B5, Putnam 2003 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 10: Putnam 2004 A1, Putnam 2004 A2, Putnam 2004 A3, Putnam 2004 A4, Putnam 2004 A5, Putnam 2004 A6, Putnam 2004 B1, Putnam 2004 B2, Putnam 2004 B3, Putnam 2004 B4, Putnam 2004 B5, Putnam 2004 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

Reflect

Reflect: reconstruct and log the pattern

- Standard ---

Ritual: Pick one problem from this week's timed sets. 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 after timed work: did time pressure make you skip a case (n=0, n=1, empty set)?

sources & assignments (4)

Exit contract — Week 16

Verification remaining

  • reading progress…

Carry-forward repairs

  • reading queue…

Next week opens with

W17 · Exam Craft + Verification Intensive
the exam follows the final taper week

Train Week 16 in the trainer →