I usually don't like to ask questions that are too specific, but I cannot reach the exact final expression.
Lemma A function $f: \mathbb{N} \to \mathbb{C}$ verifies $$|f(n)| \leq \frac{\log{|g(n)|}+\frac{1}{2}\log{\left(\tfrac{h(n) \varepsilon}{4 |r(n)|}\right)}}{-\log{(1-h(n))}}$$ for some specific functions $g: \mathbb{N} \to \mathbb{C}$, $ h,r: \mathbb{N} \to \mathbb{R}$ and $ \varepsilon > 0$.
It is proved that
- $g(n) = n + O(1/n)$.
- $h(n) = 1 - \Re{( \lambda(n))}$, where $\lambda(n) = 1 - \frac{\alpha}{n^3} + O(1/n^5)$ for some positive constant $\alpha$ and a complex-valued function $\lambda$ ($\Re{(\cdot)}$ denotes de real part of a complex number).
- $r(n) = O(1/n^2)$.
It then says that by substituting these values in the previous Lemma we obtain
$$|f(n)| \leq (1- o(1)) \frac{1}{2 \alpha} n^3 \log{(n)}.$$
(little- $o$ here) but I cannot reach this result...
What I have done: By considering the approximation $\log{(1-x)} \approx -x$ for small $x$, we have that $- \log{(1 - h(n))} = h(n)$. Thus
\begin{equation*} \begin{split} |f(n)| \leq \frac{\log{|g(n)|}+\frac{1}{2}\log{\left(\tfrac{h(n) \varepsilon}{4 |r(n)|}\right)}}{-\log{(1-h(n))}} & = \frac{\log{(n + O(1/n))}+\frac{1}{2}\log{\left(\tfrac{\left[ \frac{\alpha}{n^3}+ O(1/n^5)\right] \varepsilon}{4 O(1/n^2)}\right)}}{\frac{\alpha}{n^3}+ O(1/n^5)} \\ & = \left\{\log{(n + O(1/n))}+\frac{1}{2}\log{\left(\tfrac{[1+ O(1/n^2)] \varepsilon}{ O(n)}\right)}\right\}\frac{n^3}{\alpha} \\ & = \left\{\log{(n + O(1/n))}-\frac{1}{2}\log{\left( O(n)\right)}\right\} \frac{n^3}{\alpha} \end{split} \end{equation*}
I know that I'm close but I cannot reach the exact expression with the little-$o$ (and I don't know how they got it) so any help would be appreciated.
\begin{equation} \begin{split} \log{\left(\frac{h(n) \varepsilon}{4|r(n)|}\right)} & = - \log{\left(\frac{4|r(n)|}{h(n) \varepsilon}\right)} = -\log{\left(\frac{4|r(n)|}{\frac{\alpha \varepsilon }{n^3}( 1 + O(1/n^2))}\right)} \ & = -\log{\left(\frac{4|r(n)| n^3}{\alpha \varepsilon }( 1 + O(1/n^2))\right)} = -\log{\left(\frac{4 n O(1)}{\alpha \varepsilon }( 1 + O(1/n^2))\right)} \end{split} \end{equation}
– Macarena Perelman Mar 31 '21 at 23:17