Question

In: Statistics and Probability

I

I

Solutions

Expert Solution

(a)

P(1/2 X 3/2) = F(3/2) - F(1/2)

= (1/2) * (3/2) - (1/2) * (1/2) {F(x) = x/2 for 0 x 2}

= (3/4) - (1/4)

= 1/2

(b)

P(1 X < 2) = F(2) - F(1)

= (1/2) * 2 - (1/2) * 1 {F(x) = x/2 for 0 x 2}

= 1 - (1/2)

= 1/2

(c)

Y X

=> X2 X

=> X - X2 0

=> X (1 - X) 0

which is true if X 0 and X 1 (or 0 X 1)

or X 0 and X 1 (which is not possible at the same time.)

Thus,

P(Y X ) = P(0 X 1) = F(1) - F(0)

=  (1/2) * 1 - (1/2) * 0

= 1/2

d)

X 2Y

=> X 2X2

=> 2X2 - X 0

=> X (2X-1) 0

which is true if X 0 and X 1/2 (=> X ​ 1/2)

or X 0 and X 1/2 (=> X 0)

Thus,

P(X 2Y ) = P(X ​ 1/2) + P(X 0) = 1 - P(X 1/2) + 0 {F(X) = 0 for X < 0}

= 1 - F(1/2)

= 1 - (1/2) * (1/2)

= 1 - (1/4)

= 3/4

(e)

X + Y 3/4

=> X + X2 3/4

=> X2 + X - (3/4)   0

=> X2 + X - (3/4)   0

=> (X + 3/2) (X - 1/2) 0

which is true if X -3/2 and X 1/2 (which is not possible at the same time.)

or X -3/2 and X 1/2    (or -3/2 X 1/2)

Thus,

P(X + Y 3/4 ) = P(-3/2 X 1/2) = F(1/2) - F(-3/2)

= (1/2) * (1/2) - 0 {F(x) = 0 for X < 0 and F(x) = x/2 for 0 x 2)

= 1/4


Related Solutions

Given the following code: for (i=2;i<100;i=i+1) { a[i] = b[i] + a[i]; /* S1 */ c[i-1]...
Given the following code: for (i=2;i<100;i=i+1) { a[i] = b[i] + a[i]; /* S1 */ c[i-1] = a[i] + d[i]; /* S2 */ a[i-1] = 2 * b[i]; /* S3 */ b[i+1] = 2 * b[i]; /* S4 */ } a. List all the dependencies by their types (TD: true-data, AD: anti-data, OD: output-data dependencies). b. Show how Software Pipelining can exploit parallelism in this code to its fullest potential. How many functional units would be sufficient to achieve the...
What is the value of Expression below (i^14 + i^15 + i^16 + i^17)÷(i^20 + i^21 + i^22 + i^23)
What is the value of Expression below(i^14 + i^15 + i^16 + i^17)÷(i^20 + i^21 + i^22 + i^23)
i j(i) i j(i) i j(i) i j(i) 0 -0.0499 7 -0.08539 13 0.144812 19 0.08021...
i j(i) i j(i) i j(i) i j(i) 0 -0.0499 7 -0.08539 13 0.144812 19 0.08021 1 0.107506 8 0.062922 14 -0.0499 20 -0.30103 2 -0.06719 9 -0.04444 15 -0.18366 21 -0.33834 3 -0.04717 10 0.219422 16 -0.02898 22 0.058373 4 -0.09176 11 0.083849 17 0.08021 23 0.79083 5 -0.25918 12 -0.02261 18 -0.14271 24 0.130254 6 0.055643 25 -0.10177 (3 points) Please encipher the following plaintext with Caesar Cipher and the encryption key of 10: TODAYISTUESDAY; (3 points) In...
For each of the following indexed collections of sets {Ai : i ∈ I}, determine ∪i∈I...
For each of the following indexed collections of sets {Ai : i ∈ I}, determine ∪i∈I Ai, ∩i∈I Ai, and whether or not the collection is pairwise disjoint. Prove your claims. (a) I is the set of prime numbers and for each p∈I,Ap ={n∈N: p|n}. (b) I=R≥0 ={r∈R:r≥0} and for each r∈R≥0,Ar ={(x,y)∈R^2 : sqrt(x^2+y^2) =r}
Prove that Sn is generated by {(i i + 1) I 1 < i < n - 1}.
  Prove that Sn is generated by {(i i + 1) I 1 < i < n - 1}.  
Consider the following fragment of C code: for (i=0; i<100; i++) { A[i]=B[i]+C; } Assume that...
Consider the following fragment of C code: for (i=0; i<100; i++) { A[i]=B[i]+C; } Assume that A and B are arrays of 64-bit integers, and C and i are 64-bit integers. Assume that all data values and their addresses are kept in memory (at addresses 1000, 3000, 5000, and 7000 for A, B, C, and i, respectively) except when they are operated on. Assume that values in registers are lost between iterations of the loop. Assume all addresses and words...
I need an outline for a paper that I will be writing, but I need this...
I need an outline for a paper that I will be writing, but I need this guidance. Topic: What is Bayesian Statistics/models, and what are applications, are there applications to finance? My paper will be 20 pages, about 15 of actual text. I asked this same question in another question that has been posted, so you can get 2 answered with one stone. I will like your answer as well. PLEASE help. Due tomorrow.
I want my answer typed.                                      I. What i
I want my answer typed.                                      I. What is presbyopia? Hyperopia? Myopia? 2. Which cranial nerves assesses eye function and acoustic function? 3. What is the Rinne test? Weber test? 4. Do you or anyone you know have any of the issues/symptoms/conditions mentioned in the video? Is it due to genetics or aging? How is it being managed?
* Show the output of the following BASH code: i=7 i=$((i-5)) if [ $i -eq 4...
* Show the output of the following BASH code: i=7 i=$((i-5)) if [ $i -eq 4 ] # -eq is == then         echo "Four" elif [ $i -eq 2 ] then         echo "Two" else         echo $i fi
(C++)Change the following loop to a while loop: int i; for (i=0; i<10; i++) {    ...
(C++)Change the following loop to a while loop: int i; for (i=0; i<10; i++) {     cout<<i<<endl; }
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT