I have multiple IID (bigger then 0) of unknown distribution and I get the max of them as a result of my calculation.
Can I say that the max also have certain gaussian shape distribution? If not what is the distribution of the result?
I saw this answer which describe the result of IID product in a log-normal distribution. but as far as I understand this is not the same as max.
I tried to run a simulation in MATLAB with 1000*1000 uniform IID in range 1000 and got that the max of each column is not distibuted randomlly but getting close to 1000. here is the code:
r = randi(1000,[1000,1000]);
mxR = max(r);
figure;
hist(mxR);
After that I tried some other non - caped distribution (normal dist. with \mu = 5000 and \sigma = 500) and I got something similar tolog-normal dist. distribution result of max IID (normal)
here is the code:
r = random('Normal',5000,500,[10000,10000]);
mxR = max(r);
figure;
hist(mxR);
Is there a rule or a theorem regarding this?
thanks for your help!! (If you think this is interesting (or not) please let me know)