W3 · Toolkit gates26–30 hrs

Week 3 of 28 · Toolkit · due 2026-06-13 · 26–30 hrs

Analysis: Sequences + Algebra: Polynomials I + LA: Vector Spaces + Comb: Counting Intro

Analysis: Sequences + Algebra: Polynomials I + LA: Vector Spaces + Comb: Counting Intro gate complete

Train this week in the trainer →

This week's lesson · 10 min read

not started · read first, then train the gates

Four engines start: sequences, polynomials, vector spaces, counting

This is the week the program becomes parallel. Four tracks open at once — not because cramming is a virtue, but because Putnam problems refuse to stay in one drawer: the 2019 A4 is linear algebra wearing an analysis coat, and half of all counting problems end with a polynomial identity. Working the tracks side by side is how the connections get built at all.

Each track this week hands you one master tool: monotone convergence for sequences, the factor theorem for polynomials, linear independence for vector spaces, and bijection-or-count-twice for combinatorics. Everything later is these four wearing costumes.

Key ideas — the week on one card

  1. Monotone + bounded forces convergence (completeness); if $a_{n+1} = f(a_n)$ converges to $L$ and $f$ is continuous at $L$, then $L = f(L)$.
  2. Vieta on a monic cubic: $e_1, e_2, e_3$ read off the coefficients with alternating signs.
  3. $r^2 + s^2 + t^2 = e_1^2 - 2e_2$ — power sums convert to symmetric functions without ever finding a root.
  4. A nonzero degree-$n$ polynomial has at most $n$ roots: the cheapest independence and identity weapon in the book.
  5. A double count is two honest answers to ONE explicitly named counting question.

1Sequences: monotone + bounded is the whole game

The Monotone Convergence Theorem — a bounded increasing sequence converges — is completeness from Week 1 in its most usable outfit: the limit is exactly $\sup\{a_n\}$. On the exam it converts 'find the limit' into a two-move routine: prove monotone, prove bounded, THEN name the limit by passing to the limit in the recurrence. The order matters; naming the limit first proves nothing.

For recursively defined sequences $a_{n+1} = f(a_n)$, the candidate limits are the fixed points $L = f(L)$ — solve that equation before anything else, because knowing the destination tells you what to prove. If $a_1 = 1$ and $a_{n+1} = \sqrt{2 + a_n}$, the fixed-point equation $L = \sqrt{2+L}$ gives $L = 2$, and now 'show $a_n < 2$' and 'show increasing' are concrete targets, both falling to induction from Week 1.

Two subsequential tricks earn their place early: a sequence converges iff its even and odd subsequences converge to the SAME limit (alternating recurrences live here), and every sequence has a monotone subsequence — which with boundedness gives Bolzano–Weierstrass and, in Week 4, compactness.

sup
Monotone + bounded: the staircase has nowhere to go but its supremum.

Worked example

Define $a_1 = 1$, $a_{n+1} = \sqrt{2 + a_n}$. Prove $(a_n)$ converges and find its limit.

  1. Nudge 1

    Before proving convergence, ask where it COULD land: solve $L = \sqrt{2+L}$ and discard the impossible root.

    Reveal step 1

    Fixed points first: $L = \sqrt{2+L}$ means $L^2 - L - 2 = 0$, so $(L-2)(L+1) = 0$; since terms are positive, the only candidate is $L = 2$.

  2. Nudge 2

    Bound by induction: if $a_n < 2$, what does the recursion give for $a_{n+1}$?

    Reveal step 2

    Bounded: induct on $P(n): a_n < 2$. Base: $a_1 = 1 < 2$. Step: if $a_n < 2$ then $a_{n+1} = \sqrt{2 + a_n} < \sqrt{4} = 2$ (the square root is increasing).

  3. Nudge 3

    Compare $a_{n+1}$ with $a_n$ by squaring — factor $2 + a_n - a_n^2$.

    Reveal step 3

    Monotone: $a_{n+1} > a_n \iff 2 + a_n > a_n^2 \iff (2 - a_n)(1 + a_n) > 0$, which holds because $0 < a_n < 2$. Bounded above and increasing, so $(a_n)$ converges by MCT; passing $n \to \infty$ in the recurrence gives $L = \sqrt{2 + L}$, hence $L = 2$.

  4. Answer

    Converges to $2$: bounded above by 2 (induction), increasing (factor $(2-a_n)(1+a_n) > 0$), limit solves $L = \sqrt{2+L}$.

Pitfall. Passing to the limit in the recurrence BEFORE proving convergence exists. The equation $L = f(L)$ identifies candidates only; without MCT (or another convergence proof) the manipulation is circular.

2Polynomials I: roots are structure

The factor theorem — $P(a) = 0$ iff $(x-a) \mid P(x)$ — has a corollary that solves problems by itself: a nonzero polynomial of degree $n$ has at most $n$ roots. Contest form: if a degree-$\le n$ polynomial vanishes at $n+1$ points, it is identically zero; if two degree-$\le n$ polynomials agree at $n+1$ points, they are the SAME polynomial. Half of all 'show this identity' problems are the sentence 'both sides are polynomials of degree $n$ agreeing at $n+1$ points'.

Vieta's formulas are the dictionary between roots and coefficients: for monic $x^n + c_{n-1}x^{n-1} + \cdots + c_0$ with roots $r_1, \dots, r_n$, the elementary symmetric functions satisfy $e_1 = -c_{n-1}$, $e_2 = c_{n-2}$, alternating signs down to $e_n = (-1)^n c_0$. The exam move is almost never to FIND the roots — it is to compute symmetric expressions in them ($\sum r_i^2 = e_1^2 - 2e_2$) straight from coefficients.

Keep one structural fact loaded: real polynomials factor over $\mathbb{R}$ into linear and irreducible quadratic factors, because complex roots of real polynomials come in conjugate pairs. This is why odd-degree real polynomials always have a real root — a fact you will re-derive via IVT in Week 4 and should recognize from both directions.

Worked example

Let $r, s, t$ be the roots of $x^3 - 2x^2 + 3x - 4 = 0$. Compute $r^2 + s^2 + t^2$.

  1. Nudge 1

    Read $e_1, e_2, e_3$ straight off the coefficients — mind the alternating signs.

    Reveal step 1

    Vieta on the monic cubic: $e_1 = r+s+t = 2$, $e_2 = rs+rt+st = 3$, $e_3 = rst = 4$ (signs alternate: $-(-2), +3, -(-4)$).

  2. Nudge 2

    Square the sum of the roots, then subtract the cross terms.

    Reveal step 2

    Newton's shortcut for power sums: $r^2+s^2+t^2 = (r+s+t)^2 - 2(rs+rt+st) = e_1^2 - 2e_2$.

  3. Nudge 3

    A negative sum of squares is information: what does it say about the roots' reality?

    Reveal step 3

    Substitute: $2^2 - 2 \cdot 3 = 4 - 6 = -2$. A negative sum of squares means the roots cannot all be real — the polynomial has one real and two complex-conjugate roots, and nothing in the computation required knowing which.

  4. Answer

    $r^2 + s^2 + t^2 = e_1^2 - 2e_2 = 4 - 6 = -2$ (so not all roots are real).

Pitfall. Sign errors in Vieta. For monic $P$, $e_k = (-1)^k c_{n-k}$ — write the general rule once at the top of your scratch work instead of re-deriving signs mid-problem.

3Vector spaces: independence is a counting argument

Linear algebra on the Putnam is rarely about matrices as grids of numbers — it is about dimension as a counting weapon. The core fact: in a space of dimension $n$, any $n+1$ vectors are linearly dependent. That single sentence kills problems that look combinatorial: to show some clever combination of objects exists, encode the objects as vectors in a small-dimensional space and let the pigeonhole of dimension produce the dependence for you.

The rank–nullity theorem, $\dim \ker T + \operatorname{rank} T = \dim V$, is the conservation law of the subject. Its contest voice: a linear map from a bigger space to a smaller one has nontrivial kernel — something nonzero maps to zero, and that something is usually the object the problem asked you to find. Learn to hear 'more unknowns than equations' as 'nontrivial kernel exists'.

When asked whether specific functions or sequences are independent, the working test is: write $c_1 v_1 + \cdots + c_k v_k = 0$ and EVALUATE at well-chosen points, or differentiate, or compare growth rates as $x \to \infty$ — anything that turns one vector equation into enough scalar equations to force every $c_i = 0$.

Worked example

Show that $1, e^x, e^{2x}$ are linearly independent as functions on $\mathbb{R}$.

  1. Nudge 1

    One identity valid for ALL $x$ — you may choose inputs (or a substitution) that expose $a, b, c$.

    Reveal step 1

    Suppose $a + b e^x + c e^{2x} = 0$ for ALL $x$ — one functional equation, three unknowns; we manufacture scalar equations.

  2. Nudge 2

    Substitute $t = e^x$: the functional identity becomes a polynomial identity on $(0, \infty)$.

    Reveal step 2

    Cleanest route: substitute $t = e^x > 0$. The identity becomes $a + bt + ct^2 = 0$ for every $t > 0$ — a quadratic polynomial vanishing at infinitely many points.

  3. Nudge 3

    How many roots can a nonzero quadratic have?

    Reveal step 3

    A nonzero polynomial of degree $\le 2$ has at most 2 roots (this week's polynomial track!), so $a = b = c = 0$. Independence proved — by borrowing the factor theorem across tracks, which is precisely why the tracks run in parallel.

  4. Answer

    Substituting $t = e^x$ turns the dependence into a polynomial vanishing on $(0, \infty)$; the at-most-$n$-roots theorem forces all coefficients to zero.

Pitfall. Getting the two directions backwards. Finitely many well-chosen evaluations CAN prove independence — if the resulting scalar system forces every $c_i = 0$ (a nonsingular evaluation matrix), you are done. What finitely many points can NEVER prove is dependence: a claimed relation must vanish identically, for ALL $x$, not just at your three favorite points.

4Counting: bijection or double count — say which

Every counting argument on this exam is one of two moves. Either you exhibit a bijection — the sets have equal size because here is an explicit invertible map — or you count one set two ways and set the answers equal. Ninety percent of lost combinatorics points come from doing one of these implicitly and sloppily rather than explicitly and simply. Name your move in the first line of the solution.

The binomial coefficient identities you will use forever all have one-line double counts. Pascal: $\binom{n}{k} = \binom{n-1}{k} + \binom{n-1}{k-1}$ — does the committee include person $n$ or not? Committee-chair: $k\binom{n}{k} = n\binom{n-1}{k-1}$ — count (committee, chair) pairs by choosing the committee first or the chair first. Vandermonde: $\binom{m+n}{k} = \sum_j \binom{m}{j}\binom{n}{k-j}$ — split the pool. The identities are forgettable; the stories are not. Store the stories.

Stars and bars closes the week: the number of solutions to $x_1 + \cdots + x_k = n$ in nonnegative integers is $\binom{n+k-1}{k-1}$, via the bijection with arrangements of $n$ stars and $k-1$ bars. It is the prototype 'encode, then count the encodings' argument — the shape of half the distribution problems in the archive.

Worked example

Prove the committee-chair identity $k\binom{n}{k} = n\binom{n-1}{k-1}$ by double counting.

  1. Nudge 1

    Name the set FIRST — committees with a designated chair — then count it twice.

    Reveal step 1

    Declare the set being counted: pairs $(C, c)$ where $C$ is a $k$-person committee from $n$ people and $c \in C$ is its chair.

  2. Nudge 2

    Committee first: $\binom{n}{k}$ choices, then a chair inside it.

    Reveal step 2

    Count committee-first: choose the committee in $\binom{n}{k}$ ways, then its chair in $k$ ways — total $k\binom{n}{k}$.

  3. Nudge 3

    Chair first: $n$ choices, then fill the remaining seats from whoever is left.

    Reveal step 3

    Count chair-first: choose the chair in $n$ ways, then the remaining $k-1$ members from the other $n-1$ people — total $n\binom{n-1}{k-1}$. Two counts of one set are equal, and the identity falls out with zero algebra.

  4. Answer

    Both sides count (committee, chair) pairs; committee-first gives the left, chair-first the right.

Pitfall. A 'bijection' with no inverse exhibited. If you cannot say in one sentence how to recover the input from the output, you have a surjection and a hope — and the grader knows the difference.

Before you open the gates

  • Recursive sequence? Solve the fixed-point equation FIRST, then prove monotone + bounded by induction toward that target.
  • See an identity between polynomial expressions? Count degrees and find $n+1$ agreement points before touching algebra.
  • Hear 'more unknowns than equations' as 'nontrivial kernel' — dimension is a pigeonhole.
  • Open every counting solution by naming the move: 'we exhibit a bijection' or 'we count $X$ two ways'.
  • Cross-pollinate deliberately: this week's independence proof used this week's root bound. The tracks are one subject.

Check yourself

1. For $a_1 = 3$, $a_{n+1} = \sqrt{2 + a_n}$: which statement is correct?

2. Two polynomials of degree at most 7 agree at 8 distinct points. What follows?

3. A linear map $T: \mathbb{R}^7 \to \mathbb{R}^5$ must have:

Practice ladder — three rungs, rising

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

Rung 1 (Vieta, direct). Let $r, s, t$ be the roots of $x^3 - 6x^2 + 11x - 6 = 0$. Without finding the roots, compute $r^2 + s^2 + t^2$ and $\tfrac{1}{r} + \tfrac{1}{s} + \tfrac{1}{t}$.

One hint

Vieta: $e_1 = r+s+t$, $e_2 = rs+st+tr$, $e_3 = rst$. Then $r^2+s^2+t^2 = e_1^2 - 2e_2$ and $\sum \tfrac1r = e_2/e_3$.

Worked resolution

Vieta gives $e_1 = 6$, $e_2 = 11$, $e_3 = 6$. So $r^2+s^2+t^2 = e_1^2 - 2e_2 = 36 - 22 = 14$, and $\tfrac1r + \tfrac1s + \tfrac1t = \tfrac{e_2}{e_3} = \tfrac{11}{6}$. (Sanity: the roots are $1,2,3$; $1+4+9 = 14$ and $1 + \tfrac12 + \tfrac13 = \tfrac{11}{6}$.) [Source: The Vieta/symmetric-function move from this week's polynomials section — the roots-are-structure toolkit.]

Rung 2 (independence, evaluated). Show that $1,\ \cos x,\ \cos 2x$ are linearly independent as functions on $\mathbb{R}$.

One hint

Suppose $a + b\cos x + c\cos 2x = 0$ for ALL $x$. Substitute three points ($x = 0, \tfrac{\pi}{2}, \pi$) to get a linear system in $a,b,c$ and show only $a=b=c=0$ solves it.

Worked resolution

Suppose $a + b\cos x + c\cos 2x \equiv 0$. Evaluate: at $x=0$, $a + b + c = 0$; at $x = \tfrac{\pi}{2}$, $\cos\tfrac{\pi}{2} = 0$ and $\cos\pi = -1$, so $a - c = 0$; at $x = \pi$, $\cos\pi = -1$ and $\cos 2\pi = 1$, so $a - b + c = 0$. Adding the first and third: $2a + 2c = 0$, i.e. $a + c = 0$; with $a = c$ this forces $a = c = 0$, and then $b = 0$. Only the trivial relation holds, so the functions are independent. [Source: this week's vector-spaces section — independence as a finite evaluation/counting argument.]

Rung 3 (double count, stated then proved). Give a combinatorial proof (a double count, no algebra) of the hockey-stick identity $\sum_{i=r}^{n} \binom{i}{r} = \binom{n+1}{r+1}$.

One hint

Count the $(r+1)$-subsets of $\{1, \dots, n+1\}$ by their LARGEST element. If the largest is $i+1$, the other $r$ elements form an $r$-subset of $\{1, \dots, i\}$.

Worked resolution

Count the $(r+1)$-element subsets of $\{1, \dots, n+1\}$ two ways. Directly there are $\binom{n+1}{r+1}$. Grouped by largest element: a subset whose maximum is $i+1$ is fixed by choosing its remaining $r$ elements from $\{1, \dots, i\}$, in $\binom{i}{r}$ ways, and $i$ ranges from $r$ (need $r$ elements below) to $n$. Summing, $\sum_{i=r}^{n} \binom{i}{r} = \binom{n+1}{r+1}$. Both expressions count the same family, so they are equal. [Source: this week's counting section — the say-which double-count discipline.]

Prove it — constructed response

Define $a_1 = 1$ and $a_{n+1} = \sqrt{2 + a_n}$. Prove that $(a_n)$ converges, and find its limit. Name the theorem that turns 'monotone and bounded' into 'convergent', and justify BOTH properties by induction before you use it.

The gates

Track A — Analysis: Rudin Ch. 3 (1.5 hrs/day): Load

- Read: Rudin *PMA* Ch. 3 (~48 pp.) — sequences, Cauchy sequences, series, comparison/ratio/root tests, limsup/liminf, power series radius of convergence - Watch: Bright Side of Mathematics — sequences and series videos 6–8 - Do: Rudin Ch. 3 ex 1, 2, 4, 6, 8, 11, 13, 16, 20, 23 - Do: PnB section 3.1 probs 1, 3, 5, 7, 9, 11 - Do: MIT analysis.pdf probs 1–3 - Do: Stanford 06wk3 probs 1–4

sources & assignments (4)

Track A — Analysis: Rudin Ch. 3 (1.5 hrs/day): Drill

unlocks after: Track A — Analysis: Rudin Ch. 3 (1.5 hrs/day): Load

- Read: Rudin *PMA* Ch. 3 (~48 pp.) — sequences, Cauchy sequences, series, comparison/ratio/root tests, limsup/liminf, power series radius of convergence - Watch: Bright Side of Mathematics — sequences and series videos 6–8 - Do: Rudin Ch. 3 ex 1, 2, 4, 6, 8, 11, 13, 16, 20, 23 - Do: PnB section 3.1 probs 1, 3, 5, 7, 9, 11 - Do: MIT analysis.pdf probs 1–3 - Do: Stanford 06wk3 probs 1–4

sources & assignments (8)
  • Source Rudin — Principles of Mathematical Analysis (PMA) — Drill reference — this gate trains the material of “Track A — Analysis: Rudin Ch. 3 (1.5 hrs/day): Load”. Stuck mid-drill? The tool lives here; go back, find the move, return and finish in writing.
  • Source The Bright Side of Mathematics — Real Analysis (playlist) — Drill reference — this gate trains the material of “Track A — Analysis: Rudin Ch. 3 (1.5 hrs/day): Load”. Stuck mid-drill? The tool lives here; go back, find the move, return and finish in writing.
  • Source MIT 18.100B Lecture 5 — Monotone Convergence Theorem (OCW) — Drill reference — this gate trains the material of “Track A — Analysis: Rudin Ch. 3 (1.5 hrs/day): Load”. Stuck mid-drill? The tool lives here; go back, find the move, return and finish in writing.
  • Source Cezar Lupu — TTU MATH 4000, Lecture 1 — Intuition companion for “Track A — Analysis: Rudin Ch. 3 (1.5 hrs/day): Drill” — the picture behind the machinery; afterwards write one sentence connecting the visual to this gate's exercises.
  • Problems RudinRudin Ch. 3 ex 1, 2, 4, 6, 8, 11, 13, 16, 20, 23Putnam
  • Problems PnBPnB section 3.1 probs 1, 3, 5, 7, 9, 11Putnam
  • Problems MIT analysis.pdfMIT analysis.pdf probs 1–3Putnam
  • Problems Stanford 06wk3Stanford 06wk3 probs 1–4Putnam

Track B — Algebra

Track B — Algebra: Polynomials I (1 hr/day): Load

- Read: PnB section 2.2 (pp. 44–60) — Vieta's formulas, factor theorem, rational roots, integer polynomials - Read: CMU 02-Polynomials — lecture notes - Watch: Anulus Smaragdinus Polynomials playlist — videos 1–5 - Do: PnB section 2.2.2 probs 1–8 - Do: Engel Ch. 7 probs 1–12 - Do: 100 Polynomials Problems #1, 5, 10, 15, 20, 25, 30 - Do: MIT polynomials.pdf probs 1–6 - Do: Stanford 06wk6 probs 1–3

why this gate: the lesson's §2 Polynomials I: roots are structure is what it trains

sources & assignments (6)

Track B — Algebra: Polynomials I (1 hr/day): Drill

unlocks after: Track B — Algebra: Polynomials I (1 hr/day): Load

- Read: PnB section 2.2 (pp. 44–60) — Vieta's formulas, factor theorem, rational roots, integer polynomials - Read: CMU 02-Polynomials — lecture notes - Watch: Anulus Smaragdinus Polynomials playlist — videos 1–5 - Do: PnB section 2.2.2 probs 1–8 - Do: Engel Ch. 7 probs 1–12 - Do: 100 Polynomials Problems #1, 5, 10, 15, 20, 25, 30 - Do: MIT polynomials.pdf probs 1–6 - Do: Stanford 06wk6 probs 1–3

why this gate: the lesson's §2 Polynomials I: roots are structure is what it trains

sources & assignments (9)
  • Source Putnam and Beyond — Drill reference — this gate trains the material of “Track B — Algebra: Polynomials I (1 hr/day): Load”. Stuck mid-drill? The tool lives here; go back, find the move, return and finish in writing.
  • Source CMU 02-Polynomials (Putnam seminar) — Drill reference — this gate trains the material of “Track B — Algebra: Polynomials I (1 hr/day): Load”. Stuck mid-drill? The tool lives here; go back, find the move, return and finish in writing.
  • Source Anulus Smaragdinus — Polynomials (playlist) — Drill reference — this gate trains the material of “Track B — Algebra: Polynomials I (1 hr/day): Load”. Stuck mid-drill? The tool lives here; go back, find the move, return and finish in writing. Watch-for: olympiad polynomial-problem walkthroughs (titled by problem number, not topic) — attempt each problem cold before watching the solution.
  • Source MIT 18.06 Strang — Intuition companion for “Track B — Algebra: Polynomials I (1 hr/day): Drill” — the picture behind the machinery; afterwards write one sentence connecting the visual to this gate's exercises.
  • Problems PnBPnB section 2.2.2 probs 1–8Putnam
  • Problems EngelEngel Ch. 7 probs 1–12Putnam
  • Problems 100 Polynomials100 Polynomials Problems #1, 5, 10, 15, 20, 25, 30Putnam
  • Problems MIT polynomials.pdfMIT polynomials.pdf probs 1–6Putnam
  • Problems Stanford 06wk6Stanford 06wk6 probs 1–3Putnam

Track D — Linear Algebra

Track D — Linear Algebra: Axler Ch. 1–2 (1 hr/day): Load

- Read: Axler *LADR* Ch. 1 (~30 pp.) — vector spaces, subspaces, sums, direct sums - Read: Axler Ch. 2 (~40 pp.) — span, linear independence, bases, dimension - Watch: 3Blue1Brown Essence of Linear Algebra — videos 1–4 - Watch: Sheldon Axler LADR lectures — lectures 1–4 - Do: Axler 1A: 1, 3, 4, 6, 8 · 1B: 1, 3, 5, 7, 9, 11 · 1C: 1, 5, 9, 11, 13 - Do: Axler 2A: 1, 5, 9, 13, 17 · 2B: 1, 5, 9 · 2C: 1, 5

sources & assignments (5)

Track D — Linear Algebra: Axler Ch. 1–2 (1 hr/day): Drill

unlocks after: Track D — Linear Algebra: Axler Ch. 1–2 (1 hr/day): Load

- Read: Axler *LADR* Ch. 1 (~30 pp.) — vector spaces, subspaces, sums, direct sums - Read: Axler Ch. 2 (~40 pp.) — span, linear independence, bases, dimension - Watch: 3Blue1Brown Essence of Linear Algebra — videos 1–4 - Watch: Sheldon Axler LADR lectures — lectures 1–4 - Do: Axler 1A: 1, 3, 4, 6, 8 · 1B: 1, 3, 5, 7, 9, 11 · 1C: 1, 5, 9, 11, 13 - Do: Axler 2A: 1, 5, 9, 13, 17 · 2B: 1, 5, 9 · 2C: 1, 5

sources & assignments (6)
  • Source Axler — Linear Algebra Done Right — Drill reference — this gate trains the material of “Track D — Linear Algebra: Axler Ch. 1–2 (1 hr/day): Load”. Stuck mid-drill? The tool lives here; go back, find the move, return and finish in writing.
  • Source Axler — Linear Algebra Done Right — Drill reference — this gate trains the material of “Track D — Linear Algebra: Axler Ch. 1–2 (1 hr/day): Load”. Stuck mid-drill? The tool lives here; go back, find the move, return and finish in writing.
  • Source 3Blue1Brown — Essence of Linear Algebra — Drill reference — this gate trains the material of “Track D — Linear Algebra: Axler Ch. 1–2 (1 hr/day): Load”. Stuck mid-drill? The tool lives here; go back, find the move, return and finish in writing.
  • Source MIT 18.06 Strang — Intuition companion for “Track D — Linear Algebra: Axler Ch. 1–2 (1 hr/day): Drill” — the picture behind the machinery; afterwards write one sentence connecting the visual to this gate's exercises.
  • Problems Axler 1AAxler 1A: 1, 3, 4, 6, 8 · 1B: 1, 3, 5, 7, 9, 11 · 1C: 1, 5, 9, 11, 13Putnam
  • Problems Axler 2AAxler 2A: 1, 5, 9, 13, 17 · 2B: 1, 5, 9 · 2C: 1, 5Putnam

Track C — Combinatorics

Track C — Combinatorics: Bijection + Double Counting Intro (0.5 hrs/day): Load

- Read: PnB section 6.2.1–6.2.2 (pp. 291–302) — bijection counting, double counting - Do: PnB section 6.2.1 probs 1–4 - Do: 102 Combinatorial Problems #2, 5, 7, 10

why this gate: the lesson's §3 Vector spaces: independence is a counting argument is what it trains

sources & assignments (5)

Track C — Combinatorics: Bijection + Double Counting Intro (0.5 hrs/day): Drill

unlocks after: Track C — Combinatorics: Bijection + Double Counting Intro (0.5 hrs/day): Load

- Read: PnB section 6.2.1–6.2.2 (pp. 291–302) — bijection counting, double counting - Do: PnB section 6.2.1 probs 1–4 - Do: 102 Combinatorial Problems #2, 5, 7, 10

why this gate: the lesson's §3 Vector spaces: independence is a counting argument is what it trains

sources & assignments (6)
  • Source Putnam and Beyond — Drill reference — this gate trains the material of “Track C — Combinatorics: Bijection + Double Counting Intro (0.5 hrs/day): Load”. Stuck mid-drill? The tool lives here; go back, find the move, return and finish in writing.
  • Source Shahriar Shahriari — Combinatorics, An Invitation (playlist) — Drill reference — this gate trains the material of “Track C — Combinatorics: Bijection + Double Counting Intro (0.5 hrs/day): Load”. Stuck mid-drill? The tool lives here; go back, find the move, return and finish in writing.
  • Source Art of Problem Solving — Drill reference — this gate trains the material of “Track C — Combinatorics: Bijection + Double Counting Intro (0.5 hrs/day): Load”. Stuck mid-drill? The tool lives here; go back, find the move, return and finish in writing.
  • Source Po-Shen Loh — CMU 21-738 Extremal Combinatorics (full course) — Intuition companion for “Track C — Combinatorics: Bijection + Double Counting Intro (0.5 hrs/day): Drill” — the picture behind the machinery; afterwards write one sentence connecting the visual to this gate's exercises.
  • Problems PnBPnB section 6.2.1 probs 1–4Putnam
  • Problems 102 Combinatorial102 Combinatorial Problems #2, 5, 7, 10Putnam

AMC/AIME Warmup

AMC/AIME Warmup (keep speed-solving active during heavy reading weeks)

- Archive: 2 AMC-band · any topic · any slot · 8 min each

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

Archive — A1/B1 Entry

Archive — A1/B1 Entry

- Archive: 2 Putnam A1/B1 · proof/series · any slot · 12 min each

sources & assignments (5)
  • Problems Archive BrowserPutnam 2023 A1, 2022 A1, 1996 A1, 1992 A1 · Analysis · 12 min eachPutnam

archive pull: 4 problems · Analysis · A1/B1 · Standard · 12 min

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.

sources & assignments (4)
  • Problems LarsonLarson Ch. 4 probs 1–6 · Ch. 5 probs 1–4Putnam
  • Problems 102 Comb102 Combinatorial Problems — Introductory probs 1–4Putnam
  • Problems MAA archiveExposure: 2016 A1 solved + 2015 A1 attemptPutnam
  • Problems Probability Warmup (hand-picked)Tiny probability warmup: solve the three linked reps before the main week gates; identify sample space, random variable, and expectation/conditioning move.AMC · archive: AMC probabilityAMC probability/NTAMC expectation

Reflect

Reflect: reconstruct and log the pattern

- Reconstruct: 1 Rudin Ch. 3 exercise → close → rewrite → pattern note - Reflect: convergence test decision tree — when to use ratio / root / comparison / integral test - Reflect: polynomial notes stub (root / factor / Vieta) - Verify: on one series proof — does every step cite a named theorem? ---

Ritual: 1 Rudin Ch. 3 exercise → close → rewrite → pattern note | convergence test decision tree — when to use ratio / root / comparison / integral test | polynomial notes stub (root / factor / Vieta)

sources & assignments (4)

Verify: audit one proof before closing

unlocks after: Reflect: reconstruct and log the pattern

- Reconstruct: 1 Rudin Ch. 3 exercise → close → rewrite → pattern note - Reflect: convergence test decision tree — when to use ratio / root / comparison / integral test - Reflect: polynomial notes stub (root / factor / Vieta) - Verify: on one series proof — does every step cite a named theorem? ---

Ritual: on one series proof — does every step cite a named theorem?

sources & assignments (4)

Lerma Training

Lerma Training: Calculus / Analysis set (Northwestern)

Source: Miguel A. Lerma, Northwestern Putnam team training problems (2023). Local PDF: /library/Lerma/putnam-training-2023.pdf. Hints + full solutions are in the PDF's later parts.

sources & assignments (2)
  • Problems Lerma Training 2023 §8 CalculusWork problems 8.1–8.13 (4–6 per session). Mean value / monotonicity, clever substitution, interchange of limit and integral with justification. Self-check against the PDF's hints/solutions parts.Putnam

Exit contract — Week 3

Verification remaining

  • reading progress…

Carry-forward repairs

  • reading queue…

Next week opens with

W4 · Analysis: Continuity + Algebra: Complex Numbers + LA: Linear Maps + Comb: IE + Hidden Tools: Finite Differences + Compactness
the exam follows the final taper week

Train Week 3 in the trainer →