My objective is to solve the following limit $$\lim_{x \to \infty} \frac{a^x - b^x}{a^{x+1} - b^{x+1}},$$ where $a$ and $b$ are real constants, such that $a \gt b \gt 0$.
I (apparently) managed to solve it in two different ways, leading to two distinct answers, which of course, means something is wrong.
Method 1: $$\lim_{x \to \infty} \frac{a^x - b^x}{a^{x+1} - b^{x+1}}\frac{a^{-x}}{a^{-x}}=\lim_{x \to \infty} \frac{1 - (\frac{b}{a})^x}{a - a(\frac{b}{a})^{x+1}}$$ using the L´Hospital rule, we get $$\lim_{x \to \infty} \frac{-(\log{\frac{b}{a}})(\frac{b}{a})^x}{-a(\log{\frac{b}{a}})(\frac{b}{a})^{x+1}} = \frac{1}{a}(\frac{b}{a})^{-1} = \frac{1}{b}.$$
Method 2: $$\lim_{x \to \infty} \frac{a^x - b^x}{a^{x+1} - b^{x+1}}\frac{b^{-x}}{b^{-x}}=\lim_{x \to \infty} \frac{(\frac{a}{b})^x - 1}{b(\frac{a}{b})^{x+1} - b}$$ using the L´Hospital rule, we get $$\lim_{x \to \infty} \frac{(\log{\frac{a}{b}})(\frac{a}{b})^x}{b(\log{\frac{a}{b}})(\frac{a}{b})^{x+1}} = \frac{1}{b}(\frac{a}{b})^{-1} = \frac{1}{a}.$$
What am I doing wrong?
Edit: added constraints for $a$ and $b$.