Skip to content
Advertisement

Write a random number generator that, based on uniformly distributed numbers between 0 and 1, samples from a Lévy-distribution?

I’m completely new to Python. Could someone show me how can I write a random number generator which samples from the Levy Distribution? I’ve written the function for the distribution, but I’m confused about how to proceed further! The random numbers generated by this distribution I want to use them to simulate a 2D random walk.

I’m aware that from scipy.stats I can use the Levy class, but I want to write the sampler myself.

JavaScript

Advertisement

Answer

@pjs code looks ok to me, but there is a discrepancy between his code and what SciPy thinks about Levy – basically, sampling is different from PDF.

Code, Python 3.8 Windows 10 x64

JavaScript

produce graph

enter image description here

UPDATE

Well, I tried to use home-made PDF, same output, same problem

JavaScript

UPDATE II

After applying @pjs corrected sampling routine, sampling and PDF are aligned perfectly. New graph

enter image description here

Advertisement