I want to solve the following limit problem $$\lim_{x \rightarrow \infty} \bigg[ (x + a)\log \big( \frac{x+a}{x+b} \big) \bigg] $$
A small simulation with a = 5 and b = 2 leads to a result of 3 which I think is correct and the right answer should be (a - b), somehow I am unable to prove it.
Here is the code to reproduce the result
def f(alpha):
return (5 + alpha) * np.log((5 + alpha) / (2 + alpha))
alpha_list = np.linspace(10,1000)
plt.plot(alpha,[f(a) for a in alpha_list])
yields the following plot,
Thanks in advance.

