I am having a hard time simplifying this product notation:
$$\prod_{x=1}^{(n+1)/2} (2x-1)$$
I would appreciate any help. Thank you!
I am having a hard time simplifying this product notation:
$$\prod_{x=1}^{(n+1)/2} (2x-1)$$
I would appreciate any help. Thank you!
In sums and products the variable (here $x$) is considered to be an integer.
Thus $\prod\limits_{x=a}^b f(x)$ means that $x\in[a,b]\cap\mathbb Z$ or $$a\le x\le b\text{ with }x\in\mathbb Z$$
In our case:
E.g. $n=7$ then $x=1,2,3,4$ and for $n=10$ then $x=1,2,3,4,5$
Sometimes the bounds are made explicitly integers using floor or ceil function. In our case this would be $\lfloor\frac{n+1}2\rfloor$ but this is also equivalent to $\lceil\frac n2\rceil$.