Given $n\in\mathbb{N}$, I need to get just enough more than half of it. For example (you can think this is : number of games $\rightarrow$ minimum turns to win)
$$ 1 \rightarrow 1 $$ $$ 2 \rightarrow 2 $$ $$ 3 \rightarrow 2 $$ $$ 4 \rightarrow 3 $$ $$ 5 \rightarrow 3 $$ $$ 6 \rightarrow 4 $$ $$ 7 \rightarrow 4 $$ $$ \vdots $$ $$ 2i \rightarrow i+1 $$ $$ 2i+1 \rightarrow i+1 $$ $$ \vdots $$
Is it possible to create a simple formula without piecewise it into odd and even? Sorry for my bad English.
$\endgroup$ 23 Answers
$\begingroup$How about: $$ \frac{3+2n+(-1)^n}{4} $$ or (continuous function of $n \in \mathbb R$ or even $\mathbb C$): $$ \frac{3+2n+\cos(\pi n)}{4} $$
$\endgroup$ 4 $\begingroup$The formula is $$n\to \left\lfloor \frac{n}{2} \right\rfloor +1$$ where the notation $\lfloor x \rfloor$ means the greatest integer not exceeding $x$.
$\endgroup$ 1 $\begingroup$The formula below uses the floor function. $\lfloor x\rfloor$ denotes the floor function of x. For example, $\lfloor2\rfloor=2$ while $\lfloor2.5\rfloor=2$. For more on the floor and ceiling functions, go checkout Wikipedia's page on them.
$\frac{2i}{2}=i$, so $\lfloor\frac{2i}{2}\rfloor=i$. Meanwhile, $\frac{2i+1}{2}=i+\frac 1 2$, so $\lfloor\frac{2i+1}{2}\rfloor=i$. Therefore, for any $x$ that is either $2i$ or $2i+1$, $\lfloor\frac x 2\rfloor+1=i+1$. Thus, the function you are looking for is $f(x)=\lfloor\frac x 2\rfloor+1$.
$\endgroup$