The problem I'm working on
For every real number x, $⌊⌊\frac x2⌋/2⌋=⌊\frac x4⌋$
My proof is based on two cases.
Let $n = ⌊\frac x2⌋$
For even integer n:
$n = 2k$ (for some integer k), the result is $k \le \frac x4 \lt k + \frac 12$For odd integer n:
$n = 2k + 1$ (for some integer k), the result is $k + \frac 12 \le \frac x4 \lt k + 1$
Would it be correct to combine the results into $k \le \frac x4 \lt k + 1$?
My main concern that k is supposed to be an arbitrarily chosen integer, thus, might be these k integers should be even named differently?
If you want to combine the results, I would avoid using $k$ and just write $\left\lfloor \frac n2 \right\rfloor$ instead, so it would look like $$\left\lfloor \frac n2 \right\rfloor \leq \frac x4 < \left\lfloor \frac n2 \right\rfloor + \frac 1 2 \implies \left\lfloor \frac n2 \right\rfloor \leq \frac x4 < \left\lfloor \frac n2 \right\rfloor + 1$$ and $$\left\lfloor \frac n2 \right\rfloor + \frac 12 \leq \frac x 4 < \left\lfloor \frac n2 \right\rfloor + 1\implies \left\lfloor \frac n2 \right\rfloor \leq \frac x4 < \left\lfloor \frac n2 \right\rfloor + 1.$$ In both cases you can conclude $\left\lfloor \frac x4 \right\rfloor = \left\lfloor \frac n2 \right\rfloor.$