A daily ritual for math-brained humans. One fresh quiz drops every morning at 6am — three problems, sized for a coffee break.

Back to posts

Daily · 2026-05-09

Three problems · Combinatorics, Compound Interest, Algebra

One bite-sized math problem set for the day. Read the statement, think it through, then expand the solution to check your reasoning.

#1 · Combinatorics·Medium
From a group of 10 people, how many ways can a committee of 3 be chosen?
  1. A.3030
  2. B.120120
  3. C.720720
  4. D.10001000
Solution
(103)=10!3!7!=10983!=7206=120\binom{10}{3} = \dfrac{10!}{3! \cdot 7!} = \dfrac{10 \cdot 9 \cdot 8}{3!} = \dfrac{720}{6} = 120.

The convention: 'committee' implies order doesn't matter — a committee of {Alice, Bob, Carol} is the same as {Carol, Alice, Bob}. That's exactly when you use (nk)\binom{n}{k} instead of P(n,k)P(n,k).
Combinations vs. permutations is one of the highest-leverage distinctions in counting. Whenever you read a problem, ask first: does the order matter? 'Lineup' / 'rank' / 'arrangement' = permutations. 'Group' / 'committee' / 'team' = combinations.
#2 · Compound Interest·Hard
You invest \$200 at the end of each month into an account paying 6% APR, compounded monthly. After 30 years, approximately how much is in the account?
  1. A.\$72,000
  2. B.\$120,000
  3. C.\$200,000
  4. D.\$1,000,000
Solution
This is a future-value-of-annuity problem:
FV=P(1+i)n1iFV = P \cdot \frac{(1+i)^n - 1}{i}
where P=200P = 200, i=0.06/12=0.005i = 0.06/12 = 0.005, n=3012=360n = 30 \cdot 12 = 360.

(1.005)3606.023(1.005)^{360} \approx 6.023. So FV \approx 200 \cdot \dfrac{6.023 - 1}{0.005} = 200 \cdot 1004.5 \approx \200{,}900.Note:youcontributedonly.

Note: you contributed only
200 \cdot 360 = \72,00072{,}000. The other ~\$129{,}000 is compounding.
The single most important formula in personal finance. \200/month for 30 years at 6\% turns into \200K — almost tripling your contribution. The same calculation at 8\% gives ~\300K; at 10\%, ~\450K. Small differences in rate, huge differences in outcome — that's the geometric-series doing its job.
#3 · Algebra·Easy
If f(x)=x2+1f(x) = x^2 + 1 and g(x)=2x3g(x) = 2x - 3, what is f(g(2))f(g(2))?
  1. A.11
  2. B.22
  3. C.55
  4. D.1111
Solution
Inside out. First: g(2)=223=1g(2) = 2 \cdot 2 - 3 = 1. Then: f(1)=12+1=2f(1) = 1^2 + 1 = 2.
Function composition: evaluate the innermost first. Easy to mess up if you confuse f(g(x))f(g(x)) with g(f(x))g(f(x)) — they generally differ. Here g(f(2))=g(5)=72g(f(2)) = g(5) = 7 \ne 2.

Get tomorrow's drop at 6am — and start tracking your streak.

Create an account