Business Statistics - Chapter 6

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/34

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 4:06 AM on 4/12/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

35 Terms

1
New cards

Continuous random variable

A random variable that can assume any value in an interval on the real line or in a collection of intervals. Unlike discrete random variables, you cannot talk about the probability of it assuming one particular value; instead, you talk about the probability of it falling within a given interval.

2
New cards

Probability density function (PDF)

The function f(x) that describes the probability distribution of a continuous random variable. It does not give probabilities directly; instead, the area under the graph of f(x) over a given interval provides the probability that the variable falls within that interval.

3
New cards

Area under the curve equals probability

For any continuous random variable, the probability that x takes a value between a lower value x1 and a higher value x2 is found by computing the area under the graph of f(x) over the interval from x1 to x2. This principle is valid for all continuous distributions.

4
New cards

Probability of a single point is zero for a continuous random variable

Because a single point is an interval of zero width, the area under the curve at any single value is zero. The probability of a continuous random variable assuming any one exact value is always zero, and probabilities are the same whether or not the interval endpoints are included.

5
New cards

Total area under a probability density function equals one

The entire area under the graph of f(x) must equal 1, and f(x) must be greater than or equal to zero for all values of x. These requirements are the continuous analogs of the discrete rules that probabilities must sum to 1 and each probability must be non-negative.

6
New cards

Key difference between discrete and continuous probability distributions

For a discrete random variable, the probability function f(x) directly provides the probability of each value. For a continuous random variable, the probability density function f(x) does not give probabilities directly; probabilities are obtained only as areas under the curve of f(x) over an interval.

7
New cards

Uniform probability distribution

A continuous probability distribution in which the probability is proportional to the length of the interval. The random variable is equally likely to fall anywhere between the minimum value a and the maximum value b, making every sub-interval of equal length equally likely.

8
New cards

Uniform probability density function

Defined as f(x) = 1/(b minus a) for a less than or equal to x less than or equal to b, and f(x) = 0 elsewhere, where a is the smallest value and b is the largest value the variable can assume. The graph is a rectangle with constant height 1/(b minus a).

9
New cards

Expected value and variance of a uniform distribution

The expected value (mean) is E(x) = (a + b)/2, which is the midpoint of the interval. The variance is Var(x) = (b minus a) squared / 12. The standard deviation is the square root of the variance.

10
New cards

Computing probability for a uniform distribution

Because the density function has a constant height of 1/(b minus a), the probability of falling within any sub-interval equals the width of that sub-interval multiplied by the height. This is simply the area of the resulting rectangle.

11
New cards

The height of a probability density function is not itself a probability

The value of f(x) can exceed 1. For example, a uniform distribution on the interval 0 to 0.5 has f(x) = 2, which is greater than 1. Probability comes only from the area under the curve, not from the height of the function at a single point.

12
New cards

Normal probability distribution

The most commonly used continuous probability distribution, producing the familiar bell-shaped curve. It is widely used in statistical inference and in practical applications involving heights, weights, test scores, rainfall amounts, and scientific measurements. Abraham de Moivre published its derivation in 1733.

13
New cards

Parameters of the normal distribution

The entire family of normal distributions is defined by two parameters: the mean mu, which determines the center or location, and the standard deviation sigma, which determines the width and shape. Different values of mu shift the curve along the horizontal axis; different values of sigma change how flat or peaked the curve is.

14
New cards

Symmetry of the normal distribution

The normal distribution is perfectly symmetric around its mean, so the shape to the left of the mean is a mirror image of the shape to the right. Its skewness measure is zero. The tails extend to infinity in both directions without ever touching the horizontal axis.

15
New cards

Mean, median, and mode of a normal distribution

For a normal distribution, the mean, median, and mode are all equal. The highest point on the bell-shaped curve occurs at the mean. The mean can be any numerical value: negative, zero, or positive.

16
New cards

Effect of standard deviation on the normal curve

The standard deviation determines how flat and wide the normal curve is. Larger values of sigma produce wider, flatter curves showing more variability. Smaller values of sigma produce taller, narrower curves showing less variability.

17
New cards

Areas under the normal curve

The total area under the normal curve equals 1. Because the distribution is symmetric, exactly 0.50 (50 percent) of the area lies to the left of the mean and 0.50 lies to the right of the mean.

18
New cards

Empirical rule for normal distributions

Approximately 68.3 percent of values fall within plus or minus 1 standard deviation of the mean, approximately 95.4 percent fall within plus or minus 2 standard deviations, and approximately 99.7 percent fall within plus or minus 3 standard deviations. These percentages form the basis of the empirical rule.

19
New cards

Standard normal probability distribution

A special case of the normal distribution with a mean of 0 and a standard deviation of 1. The letter z is used to designate the standard normal random variable. It has the same bell shape as other normal distributions but is centered at zero with unit spread.

20
New cards

Converting to the standard normal distribution

Any normal random variable x with mean mu and standard deviation sigma can be converted to the standard normal variable z using z = (x minus mu) / sigma. The z value tells how many standard deviations x is from its mean. This conversion allows all normal probability questions to be answered using a single standard normal table or function.

21
New cards

Three types of standard normal probability calculations

(1) Cumulative (left-tail) probability: P(z less than or equal to a) is read directly from the table or computed with NORM.S.DIST. (2) Interval probability: P(a less than or equal to z less than or equal to b) = P(z less than or equal to b) minus P(z less than or equal to a). (3) Upper-tail probability: P(z greater than or equal to a) = 1 minus P(z less than or equal to a).

22
New cards

Using the standard normal probability table

The table provides the cumulative area under the standard normal curve to the left of a given z value. To look up z = 1.25, find the row labeled 1.2 and the column labeled 0.05; the intersection gives the cumulative probability. Negative z values appear on a separate page of the table.

23
New cards

Finding an x value given a probability (inverse normal)

When a desired cumulative probability is known, use the standard normal table in reverse to find the corresponding z value. Then convert back to x using x = mu + z times sigma. This technique is used for setting guarantees, thresholds, or cutoff values in applied problems.

24
New cards

NORM.S.DIST Excel function

Computes the cumulative probability (area to the left) for a given z value in the standard normal distribution. It takes two inputs: the z value and TRUE for cumulative probability or FALSE for the height of the curve. The S in the name stands for Standard normal.

25
New cards

NORM.S.INV Excel function

The inverse of NORM.S.DIST. It takes a cumulative probability as input and returns the z value that corresponds to that cumulative probability. Used when you know the desired area and need to find the z cutoff.

26
New cards

NORM.DIST Excel function

Computes the cumulative probability for any normal distribution, not just the standard normal. Its inputs are the x value, the mean mu, the standard deviation sigma, and TRUE for cumulative probability. It eliminates the need to convert x to z manually.

27
New cards

NORM.INV Excel function

The inverse of NORM.DIST. It takes a cumulative probability, the mean mu, and the standard deviation sigma as inputs and returns the x value corresponding to that cumulative probability. Useful for finding thresholds or guaranteed values directly without z conversion.

28
New cards

Computing interval and upper-tail probabilities in Excel for normal distributions

For an interval probability, subtract the NORM.S.DIST or NORM.DIST value at the lower endpoint from the value at the upper endpoint. For an upper-tail probability, subtract the cumulative probability from 1.

29
New cards

Exponential probability distribution

A continuous probability distribution useful for describing the time it takes to complete a task or the time between events. Common applications include time between vehicle arrivals at a toll booth, time required to complete a questionnaire, distance between major defects in a highway, and service times in waiting-line models.

30
New cards

Mean and standard deviation of the exponential distribution are equal

A distinctive property of the exponential distribution is that its mean and its standard deviation have the same value, so sigma = mu. The variance is therefore sigma squared = mu squared.

31
New cards

Skewness of the exponential distribution

The exponential distribution is skewed to the right with a skewness measure of 2. Its shape shows a high peak near zero that decreases rapidly, producing a long right tail. This is a clear example of a positively skewed distribution.

32
New cards

Cumulative probability for the exponential distribution

The probability that the exponential random variable x is less than or equal to a specific value x0 is P(x less than or equal to x0) = 1 minus e raised to the power of negative x0 divided by mu, where mu is the mean and e is approximately 2.71828. Interval and upper-tail probabilities are found by subtraction, just as with normal distributions.

33
New cards

Relationship between the Poisson and exponential distributions

If the number of occurrences in a given interval follows a Poisson distribution, then the length of the interval between consecutive occurrences follows an exponential distribution. If the Poisson mean is lambda occurrences per time period, then the exponential mean is mu = 1/lambda time periods per occurrence.

34
New cards

EXPON.DIST Excel function

Computes exponential probabilities. It takes three inputs: the x value, the rate parameter 1/mu (the inverse of the mean), and TRUE for cumulative probability or FALSE for the density function height. Interval probabilities use subtraction of two cumulative values; upper-tail probabilities subtract the cumulative result from 1.

35
New cards

Role of probability distributions in decision making

Once a probability distribution is established for a particular application, it can be used to obtain probability information about the problem. Probability does not make a decision recommendation directly, but it provides information that helps the decision maker better understand the risks and uncertainties, ultimately assisting in reaching a good decision.