** Ans-1:
Let, y be a value in the range between 1 and k. As Y is the minimum of the Xi’s, then the probability distribution of Y will be the following:
P(Y= y) = P(X1 > y) * P(X2 > y) * ………….. * P(Xn > y)
It is given that each Xi is uniformly distributed on the integers from 1 to k.
So, the probability of observing a particular value between 1 and k for Xi where the value will be greater than y is:
P(Xi > y) = (k - y + 1) / k , for y = 1, 2, ……….., k
Hence, the probability distribution of Y for y=1,2,3,…,k is:
P(Y = y) = [(k - y + 1) / k]^n
#P(X=9)=(1-p)^(9-1)*p # Here, the stated equation is for geometric distribution. and X is the number of triql to get the first success i.e. the first fail which will be occurred at 9th year
p=0.1 # probability of given success
probability_machine_will_fail_after_8_year=(1-0.1)^8*0.1
probability_machine_will_fail_after_8_year
## [1] 0.04304672
expected_value=(1/p)
expected_value
## [1] 10
variance=(1-p)/p^2
standard_deviation=sqrt(variance)
standard_deviation
## [1] 9.486833
Therefore, the probability of the machine that will fail after 8 years is 0.04304672, expected value is 10, and standaerd deviation is 9.486833
** Geometric probability using R code:
p =0.1 # probability of success
x =8 # number of trials
prob = dgeom(x, p) # probability of getting success on the x-th trial
prob
## [1] 0.04304672
expected_value =1/p
expected_value
## [1] 10
sd = sqrt((1-p)/p^2) # standard deviation
sd
## [1] 9.486833
# P(x<=k)=1-e^(-k*lambda) # exponential probability distribution equation
k=8
lambda=1/10
e=2.718
probability_machine_will_fail_after_8_year=1-(1-e^(-k*lambda)) # P(x>=k)=1-(1-e^(-k*lambda)), exponential probability for complement probability formula is used
probability_machine_will_fail_after_8_year
## [1] 0.4493662
expected_value=1/lambda
expected_value
## [1] 10
standard_deviation=sqrt(1/lambda^2)
standard_deviation
## [1] 10
Therefore, the probability is 0.45, expected value is 10 and standard deviation is 10
** Exponential probability using R code:
lambda = 1/10 # failure rate
x = 8 # time in years
prob = 1 - pexp(x, lambda) # probability that machine will fail after 8 years
prob
## [1] 0.449329
ev = 1/lambda # expected value
ev
## [1] 10
sd= sqrt(1/lambda^2) # standard deviation
sd
## [1] 10
# P(k successes in n trials) = (n choose k) * p^k * (1-p)^(n-k) # bionomial probabilty formula, where,p=probability of success, k= number of successes, n= trial numbers
n=8
k=0
p=0.1
q=1-p
probability_machine_will_fail_after_8_year=choose(n,k)*(p)^k*(1-p)^(n-k)
probability_machine_will_fail_after_8_year
## [1] 0.4304672
expected_value= n*p
expected_value
## [1] 0.8
standard_deviation=sqrt(n*p*q)
standard_deviation
## [1] 0.8485281
Therefore, probabilty is 0.4305, expected value is 0.8, standard deviation is 0.85
** Binomial probability using R code:
n = 8
p = 1/10
q = (1-p)
k = 0
prob= dbinom(k, n, p)
prob
## [1] 0.4304672
ev= n * p # expected value
ev
## [1] 0.8
sd = sqrt(n*p*q) # standard deviation
sd
## [1] 0.8485281
# P(x) = (e^(-lambda) * lambda^x) / x! # Poisson probability mass distribution equation, where, P(x) = probability of occurring exactly x events in a given time interval lambda= average number of events in time interval
x=0 # number of fail in 8 years
lambda=8/10
e=2.718
probability_machine_will_fail_after_8_year= 1-(e^(-lambda)*(lambda)^x)/factorial(x)
probability_machine_will_fail_after_8_year
## [1] 0.5506338
expected_value=lambda
expected_value
## [1] 0.8
standard_deviation=sqrt(lambda)
standard_deviation
## [1] 0.8944272
Therefore, probability is 0.551, expected value is 0.8 and standaed deviation is 0.894
** Poisson probability using R code:
lambda = 8/10
prob= 1 - dpois(0, lambda )
prob
## [1] 0.550671
ev=lambda # expected value
ev
## [1] 0.8
sd=sqrt(lambda )#standard deviation
sd
## [1] 0.8944272