I have a polynomial $P$, with unknown roots $r_1,r_2, ... ,r_n$.
My goal is to find a polynomial $X$ with roots $s_1,s_2, ... ,s_n$, where each $s_i = 2r_i$
I shall get $X$ with no need to find the roots of $P$.
I tried to find some relation between these polynomials by using Horner's method, but I seem to be completely lost.
Thanks for help.
If you substitute $x=ay$ (with $a$ some constant) into a polynomial $P$ in $x$, then you get a polynomial $Q$ in $y$. Moreover if $x_0$ is a root of $P$, that is setting $x=x_0$ in $P$ makes the result evaluate to $0$, then substituting $y=x_0/a$ into $Q$ will have the same effect; therefore $x_0/a$ will be a root of $Q$. Therefore what you want, doubling all the roots of $P$ is achieved by taking $a=\frac12$, so substituting $x=y/2$. Afterwards you can replace $y$ by $x$, if you want a polynomial in $x$. This operation then replaces any polynomial $$ c_nx^n+c_{n-1}x^{n-1}+\cdots+c_1x+c_0 \quad\text{by}\quad \frac{c_n}{2^n}x^n + \frac{c_{n-1}}{2^{n-1}}x^{n-1}\cdots+\frac{c_1}2x+c_0. $$ You don't need to know the roots explicitly for this.