Show that for each $x ∈ \mathbb{N}$, $x ≥ 2$, there exists a unique $t ∈ \mathbb{N}$ such that $1 + 2 + \dots + t < x ≤ 1 + 2 +\dots + t + (t + 1)$
I was studying the applications of the Principle of Mathematical Induction and this question came up.
I took the base case for $x = 2$ and showed that it holds. Then, I assumed that it is true for some $x ∈ \mathbb{N}$ and added $1$ to both sides.
I get this:
$$\frac{t^2 + t + 2}{2} < x + 1 \le \frac{t^2 + 3t + 4}{2}$$
These expressions have imaginary roots so I can't possibly factorise them and try something along those lines.
So, I tried this: basically, took sum up to $(t+1)$ on the left and $(t+2) $on the right. This is what I get:
$$\frac{t^2 + 3t + 2}{2} < y \le \frac{t^2 + 5t + 6}{2}$$
I first thought of doing some comparisons but it doesn't seem possible. How do I prove it?
Even when it is proved using induction, how do we prove the uniqueness of $t$?
The inequalities to prove are the same as $$ \dfrac{t(t+1)}{2}<x\le\dfrac{(t+1)(t+2)}{2} $$ Take, for instance, $t=3$; then you get $$ 6<x\le 10 $$ Thus you see that the same $t$ is good for several values of $x$.
Let's tackle existence first. For $x=2$, we can take $t=1$, so the base case is OK.
Suppose we know the result for $x$ and a value of $t$. There are two cases: if $x+1\le (t+1)(t+2)/2$, we are done. Otherwise, we have $$ \frac{(t+1)(t+2)}{2}<x+1 $$ Noting that, for every $t$, $$ \dfrac{(t+1)(t+2)}{2}-\dfrac{t(t+1)}{2}=t+1 $$ we can also state that $$ x+1\le\dfrac{(t+2)(t+3)}{2} $$ and the proof of existence is finished.
Uniqueness is rather easy and you should be able to supply a proof.