I have to generate a series of random numbers, say 100, within range of -1 and 1 and scale them by a value, say square root of 2. After which I take those 100 values and their sum = 0. Then scale that sum by another value. Check the code below to see what I mean.
Dim rand As New Random()
Dim sum As Double = 0
Dim kin As Double = 0
For j As Integer = 0 To 99
rand.NextDouble()
Console.WriteLine(" {0} ", (rand.NextDouble() * 2 - 1) * Math.Sqrt(2))
sum = sum + ((rand.NextDouble() * 2 - 1) * Math.Sqrt(2))
kin = kin + Math.Pow(sum, 2)
Next
Console.WriteLine(sum)
Console.WriteLine(kin)
I cannot get the sum to equal 0. The random distribution is supposed to be uniform so the summation would normally be 0 between (-1,1). Both sum and kin have 100 values.
Ultimately, I am trying to calculate the conservation of momentum.
Just so you know the random distribution is supposed to be uniform so the summation would normally be 0 between. It should be fairly close to zero, but never "zero every time". There are good changes that it would not be exactly zero. – vcsjones Mar 1 '12 at 2:22