W1 · Boot gates21–25 hrs

Week 1 of 28 · Boot · due 2026-05-30 · 21–25 hrs

Proof Language + Analysis: Real Number System

Proof Language + Analysis: Real Number System gate complete

Train this week in the trainer →

This week's lesson · 9 min read

not started · read first, then train the gates

Say exactly what you mean: proof language and the real line

Most Putnam points are lost before any mathematics happens — they are lost in sentences. A grader reading 'clearly the sequence converges' writes a zero next to it as fast as a grader reading a correct limit argument writes a ten. This week installs the sentence-level discipline everything else stands on, and pairs it with the one structure that discipline was invented for: the real numbers.

A proof is a machine whose parts are quantifiers. If you can say $\forall \varepsilon > 0\ \exists N$ and mean it, completeness of $\mathbb{R}$ stops being a slogan and becomes a tool you can point at a problem.

Key ideas — the week on one card

  1. Quantifier order is meaning: $\forall \varepsilon\, \exists N$ (with $N$ depending on $\varepsilon$) is convergence; $\exists N\, \forall \varepsilon$ is a different and far stronger claim.
  2. Completeness: every nonempty set of reals bounded above has a least upper bound — the axiom every limit argument secretly cites.
  3. The epsilon-of-room lemma: if $a \le b + \varepsilon$ for EVERY $\varepsilon > 0$, then $a \le b$ — it closes most analysis proofs.
  4. Induction earns full marks only with a named predicate $P(n)$, a verified base, and a step that visibly uses the hypothesis.

1Quantifiers are the load-bearing walls

Read these two sentences slowly: 'for every $\varepsilon > 0$ there is an $N$' and 'there is an $N$ such that for every $\varepsilon > 0$'. The first defines convergence. The second says the sequence is eventually constant at its limit — a wildly stronger claim. One swap of order, and you have proved something false. Putnam graders check quantifier order the way airport security checks passports.

The practical drill: before writing any proof this week, write its skeleton first — only quantifiers and connective words, no mathematics. 'For all... there exists... such that for all... .' If the skeleton is wrong, no amount of algebra inside it will save the proof. This habit costs thirty seconds and prevents the most common fatal slip in the archive's graded solutions.

Contrapositive deserves the same respect. 'If $f$ is unbounded then $f$ is not continuous on $[a,b]$' is proved most cleanly as 'if $f$ is continuous on $[a,b]$ then $f$ is bounded' — same statement, but now every tool about continuity is pointed forward instead of backward. When a direct proof feels like swimming upstream, write the contrapositive skeleton and check which direction the tools face.

LL+εL−εN = N(ε)all terms after N stay inside the band — that is convergence
∀ε ∃N, drawn: the band is ε, the cutoff is N, and the order of those two symbols is the whole definition.

Worked example

Negate precisely, then decide which is true for $f(x) = x^2$ on $\mathbb{R}$: (a) $\forall M\ \exists x : f(x) > M$, or its negation (b).

  1. Nudge 1

    Negation is mechanical before it is clever: flip each quantifier, then negate the inner inequality.

    Reveal step 1

    Mechanical negation: flip every quantifier, negate the core. $\neg(\forall M\ \exists x : f(x) > M)$ becomes $\exists M\ \forall x : f(x) \le M$ — 'some ceiling $M$ bounds $f$ everywhere'.

  2. Nudge 2

    To prove $\forall M\, \exists x$, treat $M$ as handed to you by an adversary — your job is one explicit $x$ built from $M$.

    Reveal step 2

    Now test (a) against $f(x) = x^2$: given any $M$, choose $x = \sqrt{|M|} + 1$. Then $x^2 = |M| + 2\sqrt{|M|} + 1 > M$. The witness is explicit — this is what 'there exists' obligates you to produce.

  3. Nudge 3

    Which of the two statements did that recipe just prove? Name the winner and say why the other fails.

    Reveal step 3

    So (a) is true: $x^2$ is unbounded above. Notice the proof of an $\forall\exists$ statement is a recipe: someone hands you $M$, you hand back $x$. If your 'proof' picks $x$ before seeing $M$, you proved the wrong statement.

  4. Answer

    (a) is true; its negation (b) asserts a global ceiling $\exists M\ \forall x : x^2 \le M$, which fails at $x = \sqrt{|M|}+1$.

Pitfall. Writing 'let $\varepsilon$ be small' or 'take $N$ large enough'. Graders read these as 'I don't know the dependence'. Always name the dependence: $N = \lceil 1/\varepsilon \rceil$ beats 'large enough' every single time.

2Completeness: the axiom that does all the work

Everything that separates $\mathbb{R}$ from $\mathbb{Q}$ is one axiom: every nonempty set bounded above has a least upper bound. The set $\{x \in \mathbb{Q} : x^2 < 2\}$ is bounded above in $\mathbb{Q}$ and has no least upper bound there — the hole at $\sqrt{2}$ is exactly what completeness fills. When a Putnam problem says 'show a maximum exists' or 'show the sequence converges', it is almost always asking you to find the right set and take its supremum.

The supremum has a two-line user manual, and both lines matter. First: $\sup S$ is an upper bound ($x \le \sup S$ for all $x \in S$). Second: nothing smaller is ($\forall \varepsilon > 0\ \exists x \in S : x > \sup S - \varepsilon$). The second line is the one that does work in proofs — it manufactures elements of $S$ arbitrarily close to the top, on demand. Most sup arguments are just: invoke line two, get a witness, run the hypothesis on it.

The Archimedean property — for any real $x$ there is a natural $n > x$ — looks too obvious to state, but it is the bridge between 'analysis' and 'actual numbers'. It is what lets you convert '$a \le b + \varepsilon$ for every $\varepsilon > 0$' into '$a \le b$', the single most reused micro-lemma in the entire subject. Prove that conversion once this week, cleanly, and you will use it forty times by December.

Worked example

Let $a, b \in \mathbb{R}$ satisfy $a \le b + \varepsilon$ for every $\varepsilon > 0$. Prove $a \le b$.

  1. Nudge 1

    Contrapositive: assume $a > b$ and produce a single $\varepsilon$ that breaks the hypothesis.

    Reveal step 1

    Skeleton first: we prove the contrapositive. Suppose $a > b$; we must exhibit one $\varepsilon > 0$ with $a > b + \varepsilon$.

  2. Nudge 2

    You own the positive quantity $a - b$; scale it so $b + \varepsilon$ lands strictly below $a$.

    Reveal step 2

    Choose $\varepsilon = \frac{a - b}{2}$. Since $a > b$, this $\varepsilon$ is positive — the hypothesis of the game is satisfied.

  3. Nudge 3

    Compute $b + \varepsilon$ explicitly — the midpoint of $a$ and $b$ sits below $a$.

    Reveal step 3

    Then $b + \varepsilon = b + \frac{a-b}{2} = \frac{a+b}{2} < \frac{a+a}{2} = a$. So $a > b + \varepsilon$ for this explicit $\varepsilon$, contradicting the assumption. Hence $a \le b$.

  4. Answer

    Contrapositive with the explicit witness $\varepsilon = (a-b)/2$; the midpoint $(a+b)/2$ separates $b + \varepsilon$ from $a$.

Pitfall. Concluding $a < b$ instead of $a \le b$. The hypothesis is compatible with $a = b$ (take any $\varepsilon$: $b \le b + \varepsilon$ holds). Strict versus non-strict is not a typo-level detail on this exam — it is frequently the entire problem.

3Induction that graders trust

Induction fails on the Putnam in one of two ways: the base case is checked for the wrong index, or the inductive step silently assumes more than the hypothesis grants. The fix is bureaucratic and unglamorous — state $P(n)$ as a displayed sentence before anything else. Not 'we induct on $n$', but: 'let $P(n)$ be the statement that $\dots$'. Once $P(n)$ has a body, checking $P(1)$ and proving $P(n) \Rightarrow P(n+1)$ become mechanical.

Strong induction is not a different technique; it is ordinary induction on the statement $Q(n) = P(1) \wedge \cdots \wedge P(n)$. Knowing this dissolves the fake dilemma of 'which induction do I use' — use whichever hypothesis your step actually needs, and say which. Recurrences that reach back more than one term ($a_{n+1}$ in terms of $a_n$ and $a_{n-1}$) need strong induction and TWO base cases; forgetting the second base case is a classic silent zero.

Worked example

Prove that $2^n > n^2$ for every integer $n \ge 5$.

  1. Nudge 1

    Check $n = 4$ as well as $n = 5$ — knowing where the claim FAILS tells you why the base is 5.

    Reveal step 1

    State it: let $P(n)$ be '$2^n > n^2$'. Base: $P(5)$ says $32 > 25$ — true. (Check: $P(4)$ is $16 > 16$, false — so $n \ge 5$ is not decoration; the base index is forced.)

  2. Nudge 2

    Multiply the hypothesis by 2 and reduce the goal to comparing $2n^2$ with $(n+1)^2$.

    Reveal step 2

    Step: assume $2^n > n^2$ for some $n \ge 5$. Then $2^{n+1} = 2 \cdot 2^n > 2n^2$. It remains to show $2n^2 \ge (n+1)^2$ for $n \ge 5$.

  3. Nudge 3

    Write $2n^2 - (n+1)^2$ as a shifted square and bound it using $n \ge 5$.

    Reveal step 3

    $2n^2 - (n+1)^2 = n^2 - 2n - 1 = (n-1)^2 - 2 \ge 4^2 - 2 = 14 > 0$ for $n \ge 5$. Chain the inequalities: $2^{n+1} > 2n^2 \ge (n+1)^2$, which is $P(n+1)$.

  4. Answer

    $P(5)$ holds and $P(n) \Rightarrow P(n+1)$ via $2n^2 \ge (n+1)^2 \iff (n-1)^2 \ge 2$, true from $n \ge 5$ (indeed from $n \ge 3$).

Pitfall. Proving the step for all $n$ but checking the base at $n = 1$ when the statement is false there. The base case and the step must cover the SAME range — graders check the seam between them first.

Before you open the gates

  • Write the quantifier skeleton before the mathematics — thirty seconds, catches the most common fatal slip.
  • Every 'there exists' in your proof must come with a named witness; every dependence ($N$ on $\varepsilon$) must be explicit.
  • When a maximum or limit 'should' exist, name the set, argue it is nonempty and bounded, and take the sup — then use the $\sup S - \varepsilon$ line to extract witnesses.
  • State $P(n)$ as a full sentence before inducting; make the base indices match where the step starts working.
  • Reread every strict inequality in your final draft and ask: does equality actually break, or did I just want it to?

Check yourself

1. Which statement is equivalent to '$(a_n)$ does NOT converge to $L$'?

2. $S = \{1 - \tfrac{1}{n} : n \in \mathbb{N}\}$. Which is true?

3. A proof of $P(n)$ for all $n \ge 1$ uses $P(n-1)$ AND $P(n-2)$ in its step. What does the base must-check list contain?

Practice ladder — three rungs, rising

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

Rung 1 (direct application). Write the formal negation of the statement $\exists N\ \forall n \ge N : a_n > 0$, then decide which of the two — the statement or its negation — holds for $a_n = (-1)^n / n$.

One hint

Negate left to right: each $\exists$ becomes $\forall$, each $\forall$ becomes $\exists$, and the inner predicate flips.

Worked resolution

The negation is $\forall N\ \exists n \ge N : a_n \le 0$. For $a_n = (-1)^n/n$: given any $N$, pick an odd $n \ge N$; then $a_n = -1/n < 0$. So the negation holds and the original statement is false — the sequence keeps returning below zero no matter how far out you go. [Source: Drills the negation discipline from this week's Hammack logic chapters.]

Rung 2 (the axiom at work). Let $S = \{x \in \mathbb{R} : x^2 < 2\}$ and $s = \sup S$. Prove that $s^2 = 2$ — completeness hands you $s$; your job is to rule out $s^2 < 2$ and $s^2 > 2$.

One hint

If $s^2 < 2$, the single choice $h = \tfrac{2 - s^2}{2s+1}$ (which is $< 1$ because $s \ge 1$) makes $(s+h)^2 < 2$, contradicting 'upper bound'. If $s^2 > 2$, then $h = \tfrac{s^2-2}{2s}$ makes $s - h$ a POSITIVE smaller upper bound — handle $x \le 0$ and $x > 0$ separately when you compare against it.

Worked resolution

$S$ is nonempty ($1 \in S$) and bounded above (if $x \ge 2$ then $x^2 \ge 4$, so every element is $< 2$); by completeness $s$ exists, and $s \ge 1$. If $s^2 < 2$: take $h = \tfrac{2 - s^2}{2s + 1} > 0$; since $s \ge 1$ gives $2 - s^2 \le 1 < 2s + 1$, we have $h < 1$. Then $(s+h)^2 = s^2 + h(2s + h) < s^2 + h(2s + 1) = s^2 + (2 - s^2) = 2$ — the strict step is $h < 1$ — so $s + h \in S$, contradicting that $s$ is an upper bound. If $s^2 > 2$: take $h = \tfrac{s^2 - 2}{2s} > 0$ and note $s - h = \tfrac{s^2 + 2}{2s} > 0$. Then $(s-h)^2 = s^2 - (s^2 - 2) + h^2 = 2 + h^2 > 2$. Every $x \in S$ satisfies $x < s - h$: for $x \le 0$ this is immediate since $s - h > 0$, and for $x > 0$, $x^2 < 2 < (s-h)^2$ with both sides positive gives $x < s - h$. So $s - h$ is an upper bound smaller than $s$ — contradicting leastness. Hence $s^2 = 2$. [Source: This is the classic supremum argument behind Rudin Ch. 1's existence of roots — the week's assigned spine.]

Rung 3 (Putnam-shaped induction). Prove that for every integer $n \ge 1$: $\dfrac{1}{\sqrt{1}} + \dfrac{1}{\sqrt{2}} + \cdots + \dfrac{1}{\sqrt{n}} < 2\sqrt{n}$.

One hint

Induct. The whole problem is the one inequality $2\sqrt{n} + \tfrac{1}{\sqrt{n+1}} \le 2\sqrt{n+1}$ — rationalize $\sqrt{n+1} - \sqrt{n}$ and it falls open.

Worked resolution

Base $n = 1$: $1 < 2$. Step: assume the sum to $n$ is $< 2\sqrt{n}$. Then the sum to $n+1$ is $< 2\sqrt{n} + \tfrac{1}{\sqrt{n+1}}$, so it suffices to show $2\sqrt{n} + \tfrac{1}{\sqrt{n+1}} \le 2\sqrt{n+1}$, i.e. $\tfrac{1}{\sqrt{n+1}} \le 2(\sqrt{n+1} - \sqrt{n})$. Rationalizing, $2(\sqrt{n+1} - \sqrt{n}) = \tfrac{2}{\sqrt{n+1} + \sqrt{n}}$, and $\sqrt{n+1} + \sqrt{n} \le 2\sqrt{n+1}$ gives $\tfrac{2}{\sqrt{n+1} + \sqrt{n}} \ge \tfrac{2}{2\sqrt{n+1}} = \tfrac{1}{\sqrt{n+1}}$. Chain closed; induction complete. The lesson: make the inductive step an honest inequality chain a grader can audit line by line. [Source: A standard strengthened-induction exercise in the spirit of the week's Hammack induction assignment.]

Prove it — constructed response

Let $A$ and $B$ be nonempty sets of real numbers, each bounded above, and let $A + B = \{a + b : a \in A,\ b \in B\}$. Prove that $\sup(A+B) = \sup A + \sup B$. Every quantifier in the right order; every use of completeness named.

The gates

Track — Proof Writing (2 hrs/day)

- Read: Velleman *How to Prove It* Ch. 1–3 — sentential logic, quantifiers, proof structure - Read: Hammack *Book of Proof* Ch. 4–6 — direct, contrapositive, contradiction (free online) - Watch: Michael Penn Proof Writing playlist — videos 1–4 - Do: Velleman Ch. 1 ex 1, 3, 5, 7, 9 · Ch. 2 ex 1, 2, 4, 6 · Ch. 3 ex 1, 3, 5, 7 - Do: Hammack Ch. 4 ex 1, 3, 5, 7, 9 · Ch. 5 ex 1, 3, 5 · Ch. 6 ex 1, 3 - Do: PnB section 1.1–1.2 probs 1–6

sources & assignments (8)
  • Source Velleman *How to Prove It* — Velleman *How to Prove It* Ch. 1–3 — sentential logic, quantifiers, proof structure
  • Source Hammack *Book of Proof* — Hammack *Book of Proof* Ch. 4–6 — direct, contrapositive, contradiction (free online)
  • Source Michael Penn — Proof Writing (playlist) — Proof-writing lecture series — direct playlist companion to this gate's reading. Watch-for: begins with set-theory foundations (sets, Cartesian products, operations) before the proof-technique videos.
  • Source Tao — Solving Mathematical Problems — Tao *Solving Mathematical Problems* Ch. 2 §2.1–2.3 (number theory) + Ch. 3 (algebra/analysis) — read, then reconstruct each worked example from a blank page
  • Source Michael Penn — Abstract Algebra (playlist) — Intuition companion for “Track — Proof Writing (2 hrs/day)” — the picture behind the machinery; afterwards write one sentence connecting the visual to this gate's exercises. Watch-for: this playlist opens with set-theory / proof-writing videos — skip to the 'Abstract Algebra |' entries for the group/ring/field content this gate needs.
  • Problems VellemanVelleman Ch. 1 ex 1, 3, 5, 7, 9 · Ch. 2 ex 1, 2, 4, 6 · Ch. 3 ex 1, 3, 5, 7Putnam
  • Problems HammackHammack Ch. 4 ex 1, 3, 5, 7, 9 · Ch. 5 ex 1, 3, 5 · Ch. 6 ex 1, 3Putnam
  • Problems PnBPnB section 1.1–1.2 probs 1–6Putnam

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

- Read: Rudin *PMA* Ch. 1 (~26 pp.) — ordered fields, completeness axiom, ℝ and ℂ construction - Watch: Bright Side of Mathematics Real Analysis — videos 1–2 - Do: Rudin Ch. 1 ex 1, 3, 5, 8, 10, 13, 16 - Do: PnB section 3.1 intro (pp. 104–108) — read only; preview series vocabulary

sources & assignments (6)
  • Problems RudinRudin Ch. 1 ex 1, 3, 5, 8, 10, 13, 16Putnam
  • Problems PnBPnB section 3.1 intro (pp. 104–108) — read only; preview series vocabularyPutnam

Putnam Contact — deconstruct the game early (30–45 min)

Keeps Week 1 tied to the actual contest without turning proof-foundation week into an archive grind.

Ritual: Do not score this as a solve. The win condition is recognizing the proof engine and writing the first-move sentence.

sources & assignments (3)
  • Problems Putnam archive deconstructionPutnam 1969 B1 — read a complete solution; label claim, first move, key lemma, final check.Putnam
  • Problems Putnam archive timed contactPutnam 1973 B1 — 15-minute attempt; write one sentence: “The first move was ___ because ___.”Putnam

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 (2)
  • Problems ZeitzZeitz Ch. 2 probs 1–6 (investigation)Putnam
  • Problems PnBPnB section 1.1 probs 1–6Putnam

Reflect: reconstruct and log the pattern

- Reconstruct: pick 1 Rudin exercise → close notes → rewrite from memory → write one pattern note: "When I see ___, first move is ___." - Start: proof error log (logic gap / skipped definition / false claim) ---

Ritual: pick 1 Rudin exercise → close notes → rewrite from memory → write one pattern note: "When I see ___, first move is ___."

sources & assignments (3)
  • Source Velleman *How to Prove It* — Week reference — this gate applies this week's lead material (“Track — Proof Writing (2 hrs/day)”). If an attempt stalls, the repair source is here.
  • Source Michael Penn — Proof Writing (playlist) — Week reference — this gate applies this week's lead material (“Track — Proof Writing (2 hrs/day)”). If an attempt stalls, the repair source is here. Watch-for: begins with set-theory foundations (sets, Cartesian products, operations) before the proof-technique videos.
  • Source Michael Penn — Abstract Algebra (playlist) — Intuition companion for “Reflect: reconstruct and log the pattern” — the picture behind the machinery; afterwards write one sentence connecting the visual to this gate's exercises. Watch-for: this playlist opens with set-theory / proof-writing videos — skip to the 'Abstract Algebra |' entries for the group/ring/field content this gate needs.

Lerma Training: Foundations & Methods (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 (4)
  • Problems Lerma Training 2023 §1 InductionWork problems 1.1–1.17 (4–6 per session). Strong vs ordinary induction; pick the right inductive quantity. Self-check against the PDF's hints/solutions parts.Putnam
  • Problems Lerma Training 2023 §10 TelescopingWork problems 10.1–10.7 (4–6 per session). Rewrite terms as differences so the sum collapses. Self-check against the PDF's hints/solutions parts.Putnam
  • Problems Lerma Training 2023 §14 MiscellanyWork problems 14.1–14.17 (4–6 per session). Mixed-technique problems — name the governing idea before computing. Self-check against the PDF's hints/solutions parts.Putnam

Exit contract — Week 1

Verification remaining

  • reading progress…

Carry-forward repairs

  • reading queue…

Next week opens with

W2 · Methods + AIME Fluency + Analysis: Metric Spaces
the exam follows the final taper week

Train Week 1 in the trainer →