edited by
1,550 views
8 votes
8 votes

Consider the following random function of $x$
$F(x) = 1 + Ux + Vx^{2} \bmod 5$,
where $U$ and $V$ are independent random variables uniformly distributed over $\left\{0, 1, 2, 3, 4\right\}$. Which of the following is FALSE?

  1. $F(1)$ is uniformly distributed over $\left\{0, 1, 2, 3, 4\right\}$.
  2. $F(1), F(2)$ are independent random variables and both are uniformly distributed over $\left\{0, 1, 2, 3, 4\right\}$.
  3. $F(1), F(2), F(3)$ are independent and identically distributed random variables.
  4. All of the above.
  5. None of the above.
edited by

2 Answers

3 votes
3 votes
Here  as U and V are uniformly distributed, they will have equal probabilities for each point in {0,1,2,3,4} which by the rule of probability comes $1/5$. Now for being uniformly distributed F(1), F(2), F(3) must have same values at points {0,1,2,3,4}

So,

$F(1) = (1+U +V) mod 5 = (1 + 1/5 + 1/5) mod 5 $ for all {0,1,2,3,4}

$F(2) = (1+2U +4V) mod 5 = (1 + 2/5 + 4/5) mod 5 $ for all {0,1,2,3,4}

$F(3) = (1+3U +9V) mod 5 = (1 + 3/5 + 9/5) mod 5 $ for all {0,1,2,3,4}

so all three are uniformly distributed as they all same value for all points.

but not identical as they have values different from each other.

hence Option C is false.
edited by
0 votes
0 votes
Answer will be (B)

Firstly take U=2 , V=4 , x=1

F(x)= (1+2+4) mod 5 =2

Now take U=1 , V=1 , x=2

F(x)=(1+2+4) mod 5=2

So, F(1) and F(2) not uniformly distributed over all points between {0,1,2,3,4}
Answer:

Related questions

16 votes
16 votes
3 answers
2
42 votes
42 votes
4 answers
3