A child was asked to add the first few natural numbers $1+2+3+...$ as long as his patience permitted. As he stopped, he gave the sum as $575$. When the teacher declared the result wrong, the child discovered that he had missed a number in the sequence during addition. What was the number he missed?
2026-05-15 07:34:23.1778830463
On
Find missing number from sum of first few natural numbers
23.4k Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
2
There are 2 best solutions below
1
On
Suppose he tried to sum the first $n$ positive integers. Omitting a term means this sum is less than the sum of the first $n$ positive integers but not less than the sum of the first $(n-1)$ positive integers. Hence, $\frac{n(n-1)}{2}\leq 575<\frac{n(n+1)}{2}$ so that $n=34$. This means the missing term is $595-575=20$.
We have $$1 + 2 + 3 + \dots + n = \frac{n(n+1)}{2}.$$ The numbers obtained from such sums are called Triangular numbers.
As the child's answer was $575$, the correct answer must be greater than $575$ (as he missed a number). The first triangular number greater than $575$ is $595$ corresponding to $n = 34$. If this was the sum he was trying to evaluate, the child must have missed $20 = 595 - 575$. However, if the correct answer was the next triangular number, $630$, corresponding to $n = 35$, the only way the child could have obtained $575$ is if he missed $55 = 630 - 575$, but this is not in the list of numbers $1, \dots, 35$ so he could not have been trying to add up the first $35$ natural numbers.
More generally, we need $\frac{n(n+1)}{2} > 575$ (the actual sum needs to be greater than the sum he obtained) and $\frac{n(n+1)}{2} - 575 < n$ (this difference tells us which value he missed, and it can't equal $n$ because then he would have written $1 + \dots + (n - 1)$ which is a triangular number, so the teacher could not have declared it wrong). Rewriting, we must find $n$ such that $$0 < \frac{n(n+1)}{2} - 575 < n\quad (\ast)$$ which only has solution $n = 34$. Therefore, we must be in the situation of the previous paragraph, so he missed the number $20$.
Added later: I just thought I'd add some details here about finding natural numbers $n$ which satisfy $(\ast)$.
First of all, consider the left hand inequality which rearranges to $f(n) := n^2 + n - 1150 > 0$. Solving $f(n) = 0$, we obtain $n = \frac{-1\pm\sqrt{4601}}{2}$; as $n > 0$, we ignore $n = \frac{-1-\sqrt{4601}}{2}$. Note that $\left\lfloor\frac{-1+\sqrt{4601}}{2}\right\rfloor = 33$, and we have $f(33) < 0$ and $f(34) > 0$. So $f(n) < 0$ for $n \in \{1, \dots, 33\}$ and $f(n) > 0$ for $n \geq 34$.
The right hand inequality rearranges to $g(n) := n^2 - n - 1150 < 0$. Solving $g(n) = 0$, we obtain $n = \frac{1\pm\sqrt{4601}}{2}$; as $n > 0$, we ignore $n = \frac{1-\sqrt{4601}}{2}$. Note that $\left\lfloor\frac{1+\sqrt{4601}}{2}\right\rfloor = 34$, and we have $g(34) < 0$ and $g(35) > 0$. So $g(n) < 0$ for $n \in \{1, \dots, 34\}$ and $g(n) > 0$ for $n \geq 35$.
Hence, $n = 34$ is the only natural number which satisfies $(\ast)$.