+ All Categories
Home > Documents > 1 Engineering Statistics - IE 261 Chapter 3 Discrete Random Variables and Probability Distributions...

1 Engineering Statistics - IE 261 Chapter 3 Discrete Random Variables and Probability Distributions...

Date post: 17-Jan-2016
Category:
Upload: rolf-elliott
View: 218 times
Download: 0 times
Share this document with a friend
Popular Tags:
18
1 Engineering Statistics - IE 261 Chapter 3 Discrete Random Variables and Probability Distributions URL: http://home.npru.ac.th/piya/ClassesTU .html http://home.npru.ac.th/piya/ webscilab
Transcript
Page 1: 1 Engineering Statistics - IE 261 Chapter 3 Discrete Random Variables and Probability Distributions URL:  .

1

Engineering Statistics - IE 261

Chapter 3Discrete Random Variables andProbability Distributions

URL: http://home.npru.ac.th/piya/ClassesTU.htmlhttp://home.npru.ac.th/piya/webscilab

Page 2: 1 Engineering Statistics - IE 261 Chapter 3 Discrete Random Variables and Probability Distributions URL:  .

2

3-1 Discrete Random Variables

Page 3: 1 Engineering Statistics - IE 261 Chapter 3 Discrete Random Variables and Probability Distributions URL:  .

3

3-1 Discrete Random Variables

Example 3-1

Page 4: 1 Engineering Statistics - IE 261 Chapter 3 Discrete Random Variables and Probability Distributions URL:  .

4

3-2 Probability Distributions and Probability Mass Functions

Figure 3-1 Probability distribution for bits in error.

Page 5: 1 Engineering Statistics - IE 261 Chapter 3 Discrete Random Variables and Probability Distributions URL:  .

5

3-2 Probability Distributions and Probability Mass Functions

Definition

Page 6: 1 Engineering Statistics - IE 261 Chapter 3 Discrete Random Variables and Probability Distributions URL:  .

6

Example 3-5

Page 7: 1 Engineering Statistics - IE 261 Chapter 3 Discrete Random Variables and Probability Distributions URL:  .

7

Example 3-5 (continued)

Page 8: 1 Engineering Statistics - IE 261 Chapter 3 Discrete Random Variables and Probability Distributions URL:  .

8

3-3 Cumulative Distribution Functions

Definition

Page 9: 1 Engineering Statistics - IE 261 Chapter 3 Discrete Random Variables and Probability Distributions URL:  .

11

Example 3-8

Page 10: 1 Engineering Statistics - IE 261 Chapter 3 Discrete Random Variables and Probability Distributions URL:  .

12

Example 3-8

Figure 3-4 Cumulative distribution function for Example 3-8.

Page 11: 1 Engineering Statistics - IE 261 Chapter 3 Discrete Random Variables and Probability Distributions URL:  .

13

3-4 Mean and Variance of a Discrete Random Variable

Definition

Page 12: 1 Engineering Statistics - IE 261 Chapter 3 Discrete Random Variables and Probability Distributions URL:  .

14

3-4 Mean and Variance of a Discrete Random Variable

Figure 3-5 A probability distribution can be viewed as a loading with the mean equal to the balance point. Parts (a) and (b) illustrate equal means, but Part (a) illustrates a larger variance.

Page 13: 1 Engineering Statistics - IE 261 Chapter 3 Discrete Random Variables and Probability Distributions URL:  .

15

Proof of Variance:

22 V X E X

Page 14: 1 Engineering Statistics - IE 261 Chapter 3 Discrete Random Variables and Probability Distributions URL:  .

16

3-4 Mean and Variance of a Discrete Random Variable

Figure 3-6 The probability distribution illustrated in Parts (a) and (b) differ even though they have equal means and equal variances.

Page 15: 1 Engineering Statistics - IE 261 Chapter 3 Discrete Random Variables and Probability Distributions URL:  .

17

Example 3-9

There is a chance that a bit transmitted through a digital transmission

channel is received in error. Let X equal the number of bits in error in

the next four bits transmitted. The possible values for X are {0, 1, 2, 3, 4}

Suppose:

P(X = 0) = 0.6561 P(X = 1) = 0.2916 P(X = 2) = 0.0486

P(X = 3) = 0.0036 P(X = 4) = 0.0001

Find the mean and the variance of X

Page 16: 1 Engineering Statistics - IE 261 Chapter 3 Discrete Random Variables and Probability Distributions URL:  .

18

Example 3-9 (Solution)

( )E X

SCILAB

-->x = [0 1 2 3 4];

-->fx = [0.6561 0.2916 0.0486 0.0036 0.0001];

-->MeanX = sum(x.*fx)

MeanX =

0.4

-->VarX = sum((x.^2).*fx) - MeanX^2

VarX =

0.36

k kk

x f x

2 2 2k k

k

x f x

Page 17: 1 Engineering Statistics - IE 261 Chapter 3 Discrete Random Variables and Probability Distributions URL:  .

19

Example 3-9 (Solution)

2 ( )V X

Page 18: 1 Engineering Statistics - IE 261 Chapter 3 Discrete Random Variables and Probability Distributions URL:  .

20

Example 3-11

-->x = [10:15]; fx = [0.08 0.15 0.3 0.2 0.2 0.07];-->MeanX = sum(x.*fx) MeanX = 12.5-->VarX = sum((x.^2).*fx) - MeanX^2 VarX = 1.85


Recommended