Idea is to alternately multiply infinite many values from $1$ to $x$, with const distance $h$.
Reweriting it to math:
$$ h = \frac{x-1}{n} $$ $$ f(x) = \lim_{n \to \infty} \left( \prod_{m=0}^{n} (x - mh)^{(-1)^{m}} \right) $$
I have played with the idea in Python and it seems for me that: $$ f(x) = \sqrt{x} $$ $$ x \gt 0 $$
I see some similarities with function for calculating the length $L$ of some curve $f(x)$ but there are two main differences:
- $\prod$ instead of $\sum$
- alterantion $(-1)^m$
How I can prove it ?
The function $f$ can be rescribed as $$f(x)=\lim_{n\to+\infty}\prod_{m=0}^n(x-m(x-1)/n)^{(-1)^m}=\lim_{n\to+\infty}e^{g_n(x)}$$ where $$g_n(x)=\sum_{m=0}^n(-1)^m\log(x-m(x-1)/n)$$ For $x>0$ we have: \begin{align} g_{2n+1}(x) &=\sum_{m=0}^{2n+1}(-1)^m\log(x-m(x-1)/n)\\ &=\sum_{k=0}^n[(-1)^{2k}\log(x-2k(x-1)/n)+(-1)^{2k+1}\log(x-(2k+1)(x-1)/n)]\\ &=-\sum_{k=0}^n\log\left(1-\frac{(x-1)/n}{x-(x-1)2k/n}\right)\\ &=\sum_{k=0}^n\frac{(x-1)/n}{x-(x-1)2k/n}+O(1/n)\\ &\xrightarrow{n\to+\infty}\frac 12\int_0^1\frac{x-1}{x-(x-1)t}\mathrm dt\\ &=\frac 12\log(x) \end{align}