jaredec18

Untitled

Sep 9th, 2019
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. A discrete uniform random variable X with parameters a and b has probability mass function
  2.  
  3. f(x) = 1/ (b − a + 1) where x = a, a+1, a+2, ..., b
  4.  
  5. The cumulative distribution function is F(x) = P(X ≤ x) = (x−a+1)/ (b−a+1)
  6.  
  7. The survivor function of X is S(x) = P(X ≥ x) = (b−x+1)/ (b−a+1)
  8.  
  9. The hazard function of X is h(x) = f(x)/ S(x) = 1/ (b−x+1)
  10.  
  11. The inverse distribution function of X is F −1 (u) = a+[u(b−a+1)] 0 < u < 1.
  12.  
  13. The median, m, of X is m = (a+b)/ 2
  14.  
  15. The moment generating function of X is M(t) = E (etX) = (eat −e(b+1)t)/ {(b−a+1)(1−et)}
  16.  
  17. The population mean, variance, skewness, and kurtosis of X are
  18.  
  19. E[X] = (a+b)/ 2
  20.  
  21. V[X] = {(b−a+1)2 −1}/ 12
  22.  
  23. E [{(X −µ)/ σ}3] = 0
  24.  
  25. E [{(X −µ)/ σ} 4] = 6 [(b−a+1)2 +1)]/ 5 [(b−a+1)2 −1)]
Advertisement
Add Comment
Please, Sign In to add comment