I have a function that describes the growth of a population in a logistic term:
$$N_t = rN_0(1-\frac{N_0}{\kappa})$$
I would like to interpolate the values so that, given a known $y$ I can get the related $x$. To make it easier, I linearized the equation by taking log($N_t$). I removed the point that were not in a straight line and the obtained a linear model:
$$log(N_t) = y = st + i = mx + b$$
Using R, I can interpolate x given the model y~x , as in this picture:

But what I need to do is the opposite:

Since in R is not possible to get y from the model, and it is not correct to invert the model as x~y, I found the inverse function as:
$$log(y) = sx+i$$ (where $s$ and $i$ are the slope and intercept of the first model
$$log(x) = sy+i$$
$$y = \frac{log(x) -i}{s}$$
But now I am lost on what to do next. Shall I use the inversed function on the original x or y values? How do I convert these values into the original space's one? In other words, I get something like this:

How do I use the inverted function? Manually, I have found that if $y=1000000$, then $x=16.6$. The parameters are: $s=0.022$, $i=0.328$. If I solve, I get: $$log(x) = s \cdot 10^6 -i$$ $$x = 10^{s \cdot 10^6 -i}= ∞$$ OR $$x = 10^{s \cdot 6 -i}= 0.6$$ My apologies but I am not a mathematician.
Thank you


since $a_n$ convergent to $a$, we multiple $a_n$ to your sequence and plus an extra term $b_n^{2}/2$, ignore whether $b_n$ is convergent or not at first.
then product your sequence to be $\frac{(aa_n)^2-2aa_nb_n+b_n^{2}}{2}-b_n^{2}/2=(aa_n-b_n)^2/2-b_n^{2}/2$. since $a\in{(0,1]}$, so $aa_n\in{(0,1]}$ be bounded (avoid squares ?), the above terms can be merge to $aa_n$ and $aa_n-2b_n$, only depends one term for $b_n$. now your conclusion seems reliable.