How can I get non-repeating random numbers from Mathematica 8?
How can I know which distribution the numbers I get are?
Can I choose the distribution I want together with the non-repeating random numbers?
How to write the expressions or formulas of permutation and combination?
Are these numbers real random numbers, not pseudo-random numbers?

RandomReal[]andRandomVariate[]. – 0x4A4D♦ May 15 '12 at 6:31RandomReal[]orRandomInteger[]orRandomComplex[]withoutSeedRandom[]. 2. The numbers ofRandomReal[]etc. are uniformly distributed over the range you have chosen. 3. Should be possible, take a look atRandomVariate[]. 4. That is something I do not know well, but I think the documentation can help again. 5. They are pseudorandom numbers. – partial81 May 15 '12 at 6:35FactorialPower[]; combinations are represented byBinomial[]. – 0x4A4D♦ May 15 '12 at 7:58