A store owner has certain existence of an item and he decides to use the following scheme to sell it:
The item has a price of \$100. The owner will reduce the price in half for every customer that buys the item on a given day. That way, the first customer will pay \$50, the next one will pay $25, and so on...
Suppose that the number of customers who buy the item during a day follow a Poisson distribution, with $\mu = 2$ Find the expected price of the item at the end of a day.
I defined a "final price" function like this: $$g(x) = \frac{100}{2^x}$$ where $x$ is the random variable of the Poisson distribution: $$f(x)=\frac{\lambda^xe^{-x}}{x!}$$
Since $\mu = \lambda = 2$, I can rewrite $f(x)$ like this: $$f(x) = \frac{2^x}{e^2x!}$$
And there's where I'm stuck. I see two possible roads:
A: Is solving for $x$ the way to go? If so, how can I deal with $x!$ ?
B: Should I go with $E(g(x))$?