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)