| New Reply |
Given a random number from 0-3, return a random number from 0-6 |
Share Thread | Thread Tools |
| Sep18-11, 01:38 PM | #1 |
|
|
Given a random number from 0-3, return a random number from 0-6
This is actually for a program, but the challenging part is really the math. So you're given a number 0, 1, 2, or 3 and the probability of getting each is the same. Now given this random number, I need to output a number 0, 1, 2, 3, 4, 5, or 6 but the probability of getting each number needs to be the same.
Can anyone point me in the right direction? |
| Sep18-11, 02:41 PM | #2 |
|
|
|
| Sep18-11, 03:38 PM | #3 |
|
|
|
| Sep18-11, 07:38 PM | #4 |
|
|
Given a random number from 0-3, return a random number from 0-6If anyone else has any other ideas, please share them. EDIT: Seems like the person above me deleted their post, making me seem crazy. |
| Sep18-11, 08:07 PM | #5 |
|
|
You can randomize 0,1,2,3 twice to randomly express any number from 0 through 15 in base 4. Keep doing that till you get a number in the desired range. This procedure is not guaranteed to terminate, but each of 0 through 6 have the same probability of being chosen. Just a thought.
|
| Sep18-11, 08:14 PM | #6 |
|
|
Suppose the program performs something such as floor(f(x)). Where f is a function by the mathematical definition of a function. We may get from this, a maximum of four unique outcomes, which is what we started with (four values of x). But we may actually end up with less. |
| New Reply |
| Thread Tools | |
Similar Threads for: Given a random number from 0-3, return a random number from 0-6
|
||||
| Thread | Forum | Replies | ||
| MATLAB - random allocation of random number | Engineering, Comp Sci, & Technology Homework | 1 | ||
| Sum of random number of random variables | Set Theory, Logic, Probability, Statistics | 8 | ||
| Expectation and variance of a random number of random variables | Calculus & Beyond Homework | 3 | ||
| Random Number | Precalculus Mathematics Homework | 2 | ||
| Random Number | Set Theory, Logic, Probability, Statistics | 0 | ||