I have a quadratic equation of real $x$,
$$ x^2 - 4(1+2y)x + 8(y+1) = 0 $$
for $ x>0, y>0$ and the solution is
$$ x(y) = 4y + 2 - \sqrt{4(1+2y)^2 - 8(y+1)} $$ $$ = 4y + 2 - 2\sqrt{4y^2 + 2y -1} $$
I found the solution approaches to 1 for large $y$, if I plot $x$ vs $y$.
How can I show the solution is going to 1, for large $y$?
Want to show $$ \lim_{y \rightarrow \infty} x(y) = 1 $$
Matlab script :
y = linspace(0.00001, 500, 1000);
xy = 4*y +2 - 2*(4*y.^2 + 2*y - 1).^(1/2);
plot(y, xy)
$\begin{align} \sqrt{4y^2 + 2y -1} &=\sqrt{4y^2 + 4y+1-2y -2}\\ &=\sqrt{(2y+1)^2-2y -2}\\ &=\sqrt{(2y+1)^2-(2y+1) -1}\\ &=(2y+1)\sqrt{1-\frac1{2y+1} -\frac{1}{(2y+1)^2}}\\ \end{align} $
Let $z = 2y+1$. Then since $\sqrt{1+w} =1+\frac{w}{2}+O(w^2) $ as $w \to 0$,
$\begin{align} 4y + 2 - 2\sqrt{4y^2 + 2y -1} &= 2z-2z\sqrt{1-\frac1{z} -\frac{1}{z^2}}\\ &= 2z-2z(1-\frac12(\frac1{z} -\frac{1}{z^2})+O(\frac1{z^2})\\ &=2z-(2z-1+O(\frac1{z})\\ &=1+O(\frac1{z})\\ \end{align} $
Therefore $\lim_{y \to \infty} 4y + 2 - 2\sqrt{4y^2 + 2y -1} = 1 $.