I have a set of percentiles the 10-th, 50-th and 90-th. Furthermore I have the mean value. I am trying to reconstruct the underlying distribution. The question is similar to
Estimating a distribution based on three percentiles
except I have a mean value as well.
My present approach was to fit a lognormal distribution based on the 50th percentile in which the variance was an unknown. Subsequently I determined the variance_1 based on the 10th percentile keeping the mean as found from the 50th. I did the same for the 90th percentile giving me variance_2. Then I searched for the variance somewhere between variance_1 and variance_2 which gave me the mean I was given in the first place.
10-th percentile: 0.004
50-th percentile: 0.007
90-th percentile: 0.02
arithmetic mean : 0.009
I came up with a log-normal (\mu = log(0.007), \sigma = 0.70825) distribution
What do you think of the approach, and how would you tackle this problem?