0% found this document useful (0 votes)
4 views1 page

Probability Questions Using R

The document is a tutorial focused on probability distributions using R programming. It includes questions related to Binomial, Poisson, Uniform, Exponential, and Normal distributions, each requiring the evaluation and printing of specific probabilities. Additionally, it asks for the identification of certain values (k) based on cumulative probabilities for the distributions.

Uploaded by

yaeger30000
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views1 page

Probability Questions Using R

The document is a tutorial focused on probability distributions using R programming. It includes questions related to Binomial, Poisson, Uniform, Exponential, and Normal distributions, each requiring the evaluation and printing of specific probabilities. Additionally, it asks for the identification of certain values (k) based on cumulative probabilities for the distributions.

Uploaded by

yaeger30000
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Tutorial-5: Probability Distribution Using R

Questions

Q.1 If X is Binomial Distribution B(n,p) where n=40 p=0.25


Write R-program to evaluate and print (i) P(X=35) (ii) P(X≤24) (iii) P(X≥37)
Q.2 If X is Poisson Distribution with mean 12
Write R-program to evaluate and print (i) P(X=5) (ii) P(X≤8) (iii) P(5≤X≤15)
Q.3 If X is Uniform Distribution over the range (1,20). Write R-program to evaluate
andprint (i) P(X<15.2) (ii) P(X>12.9) (iii) P(1.2< X<16.5)
Q.4 If X is Exponential Distribution with mean 10. Write R-program to evaluate and print
(i) P(X<5) (ii) P(X>3) (iii) P(4< X<6).
Find value of k such that P(X<k) = 0.4
Q.5 If X is Normal Distribution with mean 6 and standard deviation 1.5. Write R-program to evaluate
and print (i) P(X<8) (ii) P(X>3) (iii) P(7< X<9).
Find value of k1 such that P(X<k1) = 0.3. Also find k2 such that P(X>k2) = 0.25

You might also like