Top Banner
EASTERN MEDITERRANEAN UNIVERSITY FACULTY OF ENGINEERNG Department of Industrial Engineering IENG461 System Modeling and Simulation Course Fall 2012-2013 Laboratory
20

EASTERN MEDITERRANEAN UNIVERSITY FACULTY OF ENGINEERNG Department of Industrial Engineering

Feb 22, 2016

Download

Documents

emera

EASTERN MEDITERRANEAN UNIVERSITY FACULTY OF ENGINEERNG Department of Industrial Engineering. IENG 4 6 1 System Modeling and Simulation Course Fall 2012-2013 Laboratory. Open Microsoft office> Microsoft Excel File> New> Blank Workbook. Normal Distribution function. - PowerPoint PPT Presentation
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: EASTERN MEDITERRANEAN UNIVERSITY FACULTY OF ENGINEERNG Department of Industrial Engineering

EASTERN MEDITERRANEAN UNIVERSITYFACULTY OF ENGINEERNG

Department of Industrial Engineering

IENG461 System Modeling and Simulation CourseFall 2012-2013

Laboratory

Page 2: EASTERN MEDITERRANEAN UNIVERSITY FACULTY OF ENGINEERNG Department of Industrial Engineering

Open Microsoft office> Microsoft Excel

File> New> Blank Workbook

Page 3: EASTERN MEDITERRANEAN UNIVERSITY FACULTY OF ENGINEERNG Department of Industrial Engineering

Formula: =NORM.DIST(x,mean,standard_dev,cumulative)

Normal Distribution function

NORM.DIST gives the probability that a number falls at or below a given value of a normal distribution.

Formula: =NORM.INV(probability,mean,standard_dev,)

NORM.INV is the inverse of the NORM.DIST function. It calculates the x variable given a probability.

The percentage of women less than or equal to 68 inches is:

=NORM.DIST(68, 65.5, 2.5, TRUE) = 84.13%

How tall would a woman need to be if she wanted to be among the tallest 75% of American women?

=NORM.INV(0.25, 65.5, 2.5) = 63.81 inches

Page 4: EASTERN MEDITERRANEAN UNIVERSITY FACULTY OF ENGINEERNG Department of Industrial Engineering

NORMDIST FUNCTION for Probability

Formula: =NORM.DIST(x,mean,standard_dev,cumulative))

Example1:

Normal Distribution function

Page 5: EASTERN MEDITERRANEAN UNIVERSITY FACULTY OF ENGINEERNG Department of Industrial Engineering

Write the formula in B4 Normal Distribution function

Page 6: EASTERN MEDITERRANEAN UNIVERSITY FACULTY OF ENGINEERNG Department of Industrial Engineering

Enter Normal Distribution function

Page 7: EASTERN MEDITERRANEAN UNIVERSITY FACULTY OF ENGINEERNG Department of Industrial Engineering

Example2:

Normal Distribution function

Page 8: EASTERN MEDITERRANEAN UNIVERSITY FACULTY OF ENGINEERNG Department of Industrial Engineering

Write the formula in B5 Normal Distribution function

Page 9: EASTERN MEDITERRANEAN UNIVERSITY FACULTY OF ENGINEERNG Department of Industrial Engineering

Enter Normal Distribution function

Page 10: EASTERN MEDITERRANEAN UNIVERSITY FACULTY OF ENGINEERNG Department of Industrial Engineering

Simulate standard random normal variable

Formula: =NORM.DIST(RAND(),mean,standard_dev,cumulative)

Example3:

Page 11: EASTERN MEDITERRANEAN UNIVERSITY FACULTY OF ENGINEERNG Department of Industrial Engineering

Enter and drag

Page 12: EASTERN MEDITERRANEAN UNIVERSITY FACULTY OF ENGINEERNG Department of Industrial Engineering

Simulate standard random normal variable

Formula: =NORM.INV(RAND(),mean,standard_dev)

Example4:

Page 13: EASTERN MEDITERRANEAN UNIVERSITY FACULTY OF ENGINEERNG Department of Industrial Engineering

Enter and drag

Page 14: EASTERN MEDITERRANEAN UNIVERSITY FACULTY OF ENGINEERNG Department of Industrial Engineering

Simulate uniform random variables

Formula: =RAND()*(b-a)+a

Example5:

Page 15: EASTERN MEDITERRANEAN UNIVERSITY FACULTY OF ENGINEERNG Department of Industrial Engineering

Enter and drag

Page 16: EASTERN MEDITERRANEAN UNIVERSITY FACULTY OF ENGINEERNG Department of Industrial Engineering

Simulate exponential random variables

Formula: =EXPONDIST(x,lamba,cumulative)For random x : =EXPONDIST(RAND(),lamba,cumulative)

Example6:

Page 17: EASTERN MEDITERRANEAN UNIVERSITY FACULTY OF ENGINEERNG Department of Industrial Engineering

Enter and drag

Page 18: EASTERN MEDITERRANEAN UNIVERSITY FACULTY OF ENGINEERNG Department of Industrial Engineering

Another way!

FirstFile > Options > Add-Ins > Analysis Tool Pack > Go> Ok

Now :Data> Data Analysis> Random Number Generation>ok

Page 19: EASTERN MEDITERRANEAN UNIVERSITY FACULTY OF ENGINEERNG Department of Industrial Engineering

Another way!File > Options > Add-Ins > Analysis Tool Pack > Go> OkNow :Data> Data Analysis> Random Number Generation>ok

You can choose the distribution and fill the blanks easily.

Page 20: EASTERN MEDITERRANEAN UNIVERSITY FACULTY OF ENGINEERNG Department of Industrial Engineering

The End