Find all pairs of positive integers $(m, n)$ with $m \ge n$ such that $m^2 - n^2 = 105$.
- 1
Factor the left side: $m^2 - n^2 = (m - n)(m + n) = 105$.
- 2
Let $d_1 = m - n$ and $d_2 = m + n$ with $d_1 \le d_2$, $d_1 d_2 = 105$. Since $m = \frac{d_1 + d_2}{2}$ and $n = \frac{d_2 - d_1}{2}$, both $d_1, d_2$ must have the same parity; as $105$ is odd, both are odd automatically.
- 3
The factor pairs of $105 = 3 \cdot 5 \cdot 7$ with $d_1 \le d_2$ are $(1, 105), (3, 35), (5, 21), (7, 15)$.
- 4
These give $(m, n) = (53, 52), (19, 16), (13, 8), (11, 4)$, all with $n \ge 1$.
Answer:$(m, n) \in \{(53, 52), (19, 16), (13, 8), (11, 4)\}$.