Starting with w=1, each time we multiply w by a number x sampled independently and uniformly from [1/2, 3/2] until it is smaller than a given value c. What's the expected number of rounds for this process?
I have tried to model it using a function f where f(c) denotes the answer for given c. Using a recursive way, I can derive the following:
$ f(c) = 1, \text{ if } c > \frac{3}{2} $
$ f(c) = 1 + \int_{c}^{\frac{3}{2}} f(\frac{c}{x}) dx, \text{ if } c \in [\frac{1}{2},\frac{3}{2}] $
$ f(c) = 1 + \int_{\frac{1}{2}}^{\frac{3}{2}} f(\frac{c}{x}) dx, \text{ if } c < \frac{1}{2} $
However I'm not able to proceed since it seems complicated.
Addition: I care more about the case where $c$ is around 1.
Thanks for any answers and ideas!