models
, markets
Suppose you have the data on volume sales of existing product, or volume sales of all products in one particular market. Take for example sales of shampoo of some particular brand and sales of all brands of shampoo. The question which a firm selling particular product would find interesting is what is a potential market for the product. The most simple understanding of potential market is how much more can you sell if “nobody holds you back”. Suppose you want to put a number to this concept? How should one proceed?
My own idea is to develop a model for existing sales, say y=f(X)
, where y
are the sales of the product and X
are the factors determining the sales. Then I would determine potential market via Monte-Carlo simulation. This means assuming some distribution for X
and looking at the resulting distribution for y
. Potential market could be say 95%’th quantile.
Will this idea work? Did anybody already tried it? What should be correct way to address this problem?
Monte-Carlo simulation would be useful if you had some decision model on how individual consumers may make a purchasing decision. Alternatives are related to Regression Analysis.
I tend to use Ordinary Least Squares, selecting exogenous (independent) data series which can be used to model that "nobody holds you back" scenario. For something like shampoo, you might use (at the highest level) GDP/capita and population growth (with an age profile) and then you can tighten it up with proxy data which may be of use (depending on what local statistics are available).
An alternative is nonparametric Vector autoregression, "used to capture the linear interdependencies among multiple time series" and is the approach that won Christopher Sims his economics gong in 2011. Bayesian VAR will take this model even further. However, all of this depends on the quality and consistency of the data you wish to apply.
You can model this in R (a purely statistics package) and I use numpy in Python.
Usually multinomial logit/probit models are used to simulate situations where the demand for two or more products is related. Using this approach, you would have to posit a relationship between your new product and existing products in the market (from example, shampoos A and B are close substitutes, shampoo A and conditioner B are weak complements, etc.) and then use data on the demand for existing products to predict demand for the new product.
I tried something similar for the speed of adaption in a market with network effects, and got believable results. The problem was a lack of real world data to calibrate the model to. As Turukawa said, the crucial point is modeling the decision process of the agents.
I think the problem in your case would be to identify and quantify relevant factors, for which you might want to look at the logit/probit approach mentioned above.
All content is licensed under CC BY-SA 3.0.