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-06

Three problems · Probability, Geometry, Number Theory

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

#1 · Probability·Medium
In a room of 23 people, what's the approximate probability that at least two share a birthday? (Assume 365 equally likely birthdays, no twins.)
  1. A.6%\approx 6\%
  2. B.23%\approx 23\%
  3. C.50%\approx 50\%
  4. D.90%\approx 90\%
Solution
Compute the complement — probability all 23 birthdays are distinct:
P(all distinct)=3653653643653633653433650.493P(\text{all distinct}) = \frac{365}{365} \cdot \frac{364}{365} \cdot \frac{363}{365} \cdots \frac{343}{365} \approx 0.493


So P(at least one match)=10.4930.507P(\text{at least one match}) = 1 - 0.493 \approx 0.507, just over 50\%.
The 'birthday paradox' isn't a paradox — it's a counting result that violates intuition. With 23 people there are (232)=253\binom{23}{2} = 253 pairs, and each pair has a 1/3651/365 chance of matching. Pairs scale quadratically; people scale linearly.
#2 · Geometry·Easy
A square is inscribed in a circle of radius rr. What is the area of the square in terms of rr?
  1. A.r2r^2
  2. B.2r22r^2
  3. C.πr2\pi r^2
  4. D.4r24r^2
Solution
The diagonal of the inscribed square equals the circle's diameter, 2r2r. For a square with diagonal dd, the side length is d/2d/\sqrt{2}, so the area is (d/2)2=d2/2(d/\sqrt{2})^2 = d^2 / 2.

Here d=2rd = 2r, so area =(2r)2/2=4r2/2=2r2= (2r)^2 / 2 = 4r^2 / 2 = 2r^2.
A two-line problem if you remember that a square's diagonal is 2\sqrt{2} times its side. The trick is recognizing that the inscribed-square's diagonal *is* the circle's diameter — which is true precisely because all four vertices lie on the circle.
#3 · Number Theory·Medium
What is the remainder when 71007^{100} is divided by 55?
  1. A.00
  2. B.11
  3. C.22
  4. D.33
Solution
Work modulo 5. Note 72(mod5)7 \equiv 2 \pmod 5, so 71002100(mod5)7^{100} \equiv 2^{100} \pmod 5.

Now look at powers of 2 mod 5: 21=22^1 = 2, 22=42^2 = 4, 23=832^3 = 8 \equiv 3, 24=1612^4 = 16 \equiv 1. The cycle has length 4.

Since 100=425100 = 4 \cdot 25, 2100=(24)25125=1(mod5)2^{100} = (2^4)^{25} \equiv 1^{25} = 1 \pmod 5.
Modular arithmetic turns 'compute a 100-digit number, then divide' into 'find a small cycle, then index into it'. This is exactly how RSA-style cryptography handles huge exponents — find Euler's totient, reduce modulo it, done.

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

Create an account