I'm looking to sum up an arbitrary number of probabilistic distributions of things using a montecarlo type simulation. I'd like to randomly sample continuous distributions of something and add them to other random samples of other continuous distributions, ultimately getting a probability distribution for their combination. The distributions themselves are empirical - they aren't a function but in the form of P99 = 2.4, P90 = 7.12, P50 = 24.53, P10 = 82.14 and so on (in reality there are a bunch of those points). The distributions are more or less lognormal, so approximating them as lognormal would probably be fine, if that's necessary. But how could I enter that into SciPy's lognorm function? Or do it some other way in SciPy, or python in general?
I hope it's clear what I'm trying to do. Thanks a lot, Alex