1.The binomial distribution is a discrete probability distribution. It describes the outcome of n independent trials in an experiment. Each trial is assumed to have only two outcomes, either “success” or “failure”.
2.This distribution is often used to model the number of successes in the number of samples n from the total population of N.
3.~The experiment consists of n identical trials. ~Each trial results in one of the two outcomes, called success and failure. ~The probability of success, denoted p, remains the same from trial to trial. ~The n trials are independent. That is, the outcome of any trial does not affect the outcome of the others.
4.A binomial distribution is very different from a normal distribution, and yet if the sample size is large enough, the shapes will be quite similar.The key difference is that a binomial distribution is discrete, not continuous. In other words, it is not possible to find a data value between any two data values.The normal distribution is a continuous distribution that arises in many natural processes. “Continuous” means that between any two data values we could (at least in theory) find another data value.
## [1] 0.1745595
library(dplyr) library(ggplot2) library(scales) ## Question
The Poisson distribution is the discrete probability distribution of independent event occurrences in an interval.
Poisson distribution expresses the probability of a given number of events occurring in a fixed interval of time or space if these events occur with a known constant mean rate and independently of the time since the last event.The Poisson distribution can also be used for the number of events in other specified intervals such as distance, area or volume.
Condition to apply Poisson Distribution: ~The probability of more than one occurrence in the small interval is negligible (i.e. they are rare events). ~Every event must be at random and independent from others. ~The probability of the event taking place is proportional to the size of the interval for a small interval. ~Events are often failures, injuries, or extreme natural occurrences, such as Earthquakes where there is no theoretical upper limit of the number of incidents.
Conditions to apply Binomial Distribution: ~The number of observations n is fixed. ~Each observation is independent. ~Each observation represents one of two outcomes (“success” or “failure”). ~The probability of “success” p is the same for each outcome.
## [1] 0.9338724
## [1] 0.00467884
Continious uniform distribution is a continuous distribution, this means that it takes values within a specified range, like between 0 and 1.
Uniform distribution can be a discrete and continious.
Equal probability is needed in all outcomes.
We apply the generation function runif of the uniform distribution, EXAMPLE: Select one hundred random numbers between one and three.
## [1] 4.551830 3.039447 4.489863 2.736648 3.067194 3.184929 3.096254 1.210800
## [9] 1.543073 2.377385 4.759156 3.240182 3.742632 1.343668 4.250692 1.614251
## [17] 2.861298 3.681598 1.685703 3.371738 4.769937 1.718381 3.778615 2.014807
## [25] 3.793615 1.670166 2.430274 3.460869 1.762356 1.383872 2.478480 4.525571
## [33] 4.974964 1.088550 2.752910 2.761194 1.533711 1.683846 4.846062 1.958685
## [41] 2.267648 4.285059 4.896468 3.697093 2.262891 3.089332 4.140702 4.393605
## [49] 3.623482 4.220449 1.623285 4.127437 3.797060 4.151963 4.372748 4.257567
## [57] 1.501522 4.994090 4.733721 4.805337 1.196099 4.291626 3.928125 4.828620
## [65] 1.953570 4.511141 4.287884 3.932583 3.555852 2.159554 3.644092 3.761043
## [73] 4.592241 2.410963 3.253696 3.726983 1.804516 2.940644 2.573420 4.561513
## [81] 4.512053 1.932532 1.540129 1.525010 4.549646 1.000884 3.123945 4.044722
## [89] 4.504830 3.411770 4.558829 2.257134 4.498540 4.608054 2.387682 1.085323
## [97] 4.767784 1.356449 4.257992 4.272247
The exponential distribution describes the arrival time of a randomly recurring independent event sequence, ,like a time, and length of a voice call between 2 people.
The exponential distribution is widely used in the field of reliability. Reliability deals with the amount of time a product lasts.
Exponential distribution rate is are all rates (λ) of the unit of time, which is the parameter of the Poisson distribution. One thing that would save you from the confusion later about X ~ Exp(0.25) is to remember that 0.25 is not a time duration, but it is an event rate, which is the same as the parameter λ in a Poisson process.
Exponential distribution is a continuous probability distribution.
5.The checkout processing rate is equals to one divided by the mean checkout completion time. Hence the processing rate is 1/3 checkouts per minute. We then apply the function pexp of the exponential distribution with rate=1/3.
## [1] 0.4865829
1.In statistics, the standard deviation is a measure of the amount of variation or dispersion of a set of values. A low standard deviation indicates that the values tend to be close to the mean (also called the expected value) of the set, while a high standard deviation indicates that the values are spread out over a wider range.The normal distribution is defined by the following probability density function, where μ is the population mean and σ square is the variance.
The standard normal distribution is a normal distribution with a mean of zero and standard deviation of 1. The standard normal distribution is centered at zero and the degree to which a given measurement deviates from the mean is given by the standard deviation.
2.because the normal distribution has mean (mean) equal to 0 and standard deviation equal to 1 which is represented as a bell-shaped curve.
3.Normal distribution can be found by dividing 1 by the σ.√2πe, then multiplying that value e^-1/2 . (x - μ / σ) squared.
4.~Bell-shaped curve (μ = Md = Mo) ~Curves are symmetrical ~The curve peaks at X = μ ~The area under the curve is 1; ½ on the right side of the middle value and ½ on the left. ~The graph is always on the x-axis
## [1] 0.5
pnorm(45, mean = 50, sd = 20, lower.tail = FALSE) - pnorm(65, mean = 50, sd = 20, lower.tail = FALSE)## [1] 0.372079
## [1] 0.3413447
2.Χ^2 = [ ( n - 1 ) * s^2 ] / σ^2
3.In probability theory and statistics, the chi distribution is a continuous probability distribution. It is the distribution of the positive square root of the sum of squares of a set of independent random variables each following a standard normal distribution, or equivalently, the distribution of the Euclidean distance of the random variables from the origin. It is thus related to the chi-squared distribution by describing the distribution of the positive square roots of a variable obeying a chi-squared distribution.
4.Yes
Note: There are two ways to solve this problem, using the T Distribution Calculator. Both approaches are presented below. Solution A is the traditional approach. It requires you to compute the t statistic, based on data presented in the problem description. Then, you use the T Distribution Calculator to find the probability. Solution B is easier. You simply enter the problem data into the T Distribution Calculator. The calculator computes a t statistic “behind the scenes”, and displays the probability. Both approaches come up with exactly the same answer.
2.The T-Distribution, also known as Student’s T Distribution gets its name from William Sealy Gosset who first published it in English in 1908 in the scientific journal Biometrika using his pseudonym “Student” because his employer preferred staff to use pen names when publishing scientific papers instead of their real name, so he used the name “Student” to hide his identity.
3.When some samples are drawn from normal population whose variance is known, a distribution of the sample mean is normal. When, however, the variance of the population is unknown, the distribution is not normal but student-t, whose tail longer. That means the fact that sample mean with unknown population variance is inclined to be an extreme value. If you use normal distribution for hypothesis testing instead of t distribution, probability of error becomes bigger.
4.Student’s t-distribution, is a type of probability distribution that is similar to the normal distribution with its bell shape but has heavier tails. T distributions have a greater chance for extreme values than normal distributions, hence the fatter tails.
| Population | Population standard deviation | Sample standard deviation |
|---|---|---|
| Women | 30 | 35 |
| Men | 50 | 45 |
1.F distribution is a probability density function that is used especially in analysis of variance and is a function of the ratio of two independent random variables each of which has a chi-square distribution and is divided by its number of degrees of freedom.
2.To calculate a probabilities
3.Statistical testing.
4.The F-distribution arises from inferential statistics concerning population variances. More specifically, we use an F-distribution when we are studying the ratio of the variances of two normally distributed populations.