SlideShare ist ein Scribd-Unternehmen logo
1 von 22
Downloaden Sie, um offline zu lesen
Lunchtime Webinar Series:
                                Monte Carlo Simulation




1
    © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
Agenda

    • What is Monte Carlo Simulation?
    • An example of Monte Carlo Simulation
    • A Case Study




2
    © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
Definition
    Monte Carlo Simulations are computational routines to
    simulate physical or mathematical performance using repeated
    random sampling.
    What does it mean???
    Let us look at simple example…




3
    © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
Example
    We are going to build a tower of 5 square blocks.
    We need to produce blocks of the following sizes: 5x5 cm, 4x4
    cm, 3x3 cm, 2x2 cm and 1x1 cm.                         E
                                                                                                                                                               D
    We need to make the tower like this:
                                                                                                                                                               C
    We produce blocks and we verify that on
    average dimensions are as required.                                                                                                                        B

    What is the size of the tower?
                                                                                                                                                              A
    Answer: 15 cm, but……
    On average!
4
    © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
Example
    We observe variation in dimensions of blocks we produce.
    We study the nature of variation and we find out that the
    actual dimensions follow normal distribution with standard
    deviation of 0.1 cm for each block.
    How likely is it that the size of the tower will be between 14.8
    cm and 15.2 cm?
    This problem can be solved using analytical skills but the
    simpler way to answer is to apply Monte Carlo.




5
    © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
Example
    We are going to randomly generate a number for the size of
    block A from normal distribution with average of 5 and
    standard deviation of 0.1.
    We do same for blocks B to E.
    We add the randomly generated numbers and calculate size of
    tower.
    Then we randomly select the next set of sizes for blocks A-E
    and calculate size of tower.
    And we do it over and over again thousands of times.


6
    © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
Example
    In Minitab we can do it like this:




7
    © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
Example
    The result will look like this:




8
    © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
Example
    Now we can calculate the probability of having a tower size
    between 14.8 cm and 15.2 cm. We can do it like this:




9
    © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
Example
     The result will look like this:




10
     © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
Example - Summary
     Although on average size our tower is 15 cm there is a 37.76%
     probability that it will be outside of the specification (14.8 cm –
     15.2 cm)
     If you did this exercise on your own computer, the results could
     be slightly different (due to random sampling), although if we
     keep increasing sample size results on different computers will
     become closer and closer (due to Law of Large Numbers)
     An understanding of the nature of variation of each process
     step is the key to applying Monte Carlo.
     Now let’s practice…..

11
     © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
Case Study
     The process consists of 5 consecutive process steps.
     We collected data on the time it takes to complete each
     process step in minutes (Cycle Time). You can find the results in
     the Excel data file that was distributed to you before Webinar.
     Question 1: What is the average processing time?
     Question 2: How likely is it that we will complete the process in
     under 180 minutes? (this is the requirement from customer)




12
     © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
Case Study – Question 1
     We need to calculate the average in each data set and add it
     together.
     One of the way to do it (in Minitab) is the following:




13
     © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
Question 1 - Solution
     The answer for Question 1 is the following:
     Average time of the process is:
     30.144 (Average of Process Step 1) +
     31.100 (Average of Process Step 2) +
     30.476 (Average of Process Step 3) +
     30.268 (Average of Process Step 4) +
     30.102 (Average of Process Step 5) =
     152.09 minutes
     This was actually an easy question, we can answer it even with
     just Excel.

14
     © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
Case Study – Question 2
     The second question is much more difficult to answer.
     In order to answer this question we need to understand the
     nature of variation in each process step.




15
     © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
Case Study – Question 2
     We see that data from Process Step 1, Process Step 3 and
     Process Step 4 are normally distributed, so for each of the
     process steps we can generate random data from normal
     distribution with respective averages and standard deviations.
     Unfortunately Process Step 2 and Process Step 5 are NOT
     normally distributed, so we can NOT generate random data
     from normal distribution.
     What we have to do, is to understand from which distribution,
     both data sets are coming from.



16
     © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
Case Study – Question 2
     We can do it in the following way:




17
     © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
Case Study – Question 2
     After we randomly generate data into all 5 columns and make a
     simple formula in sixth column, the result may look like this:




18
     © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
Question 2 - Solution
     If we perform capability analysis for the normal data on our
     sixth column with an Upper Specification Limit of 180 minutes,
     the result will be the following:




19
     © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
Monte Carlo Simulation - Summary
      Monte Carlo is used to simulate performance using repeated
       random sampling.
      We need to understand function y = f(x1, x2…).
      We need to understand the nature of variation in each x and
       what are the underlying distributions the data is coming
       from.
      We usually sample thousands of data points for each x using
       appropriate distributions in order to produce thousands of
       data points for y.



20
     © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
Learn More
 Classroom courses in Europe
 • 25-29 June, Amsterdam: Full 5 Day DFSS Training Course
 • 11-15 February, Warsaw: Full 5 Day Toolmaster Training
   Course
 • 10-14 September, Brussels: First week of full 3 weeks GB to
   BB Upgrade Training Course
 • 28 January – February 1, Warsaw: First week of full 5 weeks
   BB course



 More information: http://www.bmgi.com/training

21
     © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
Questions & Answers




22
     © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.

Weitere ähnliche Inhalte

Andere mochten auch

Monte carlo option pricing final v3
Monte carlo option pricing final v3Monte carlo option pricing final v3
Monte carlo option pricing final v3naojan
 
Lecture: Monte Carlo Methods
Lecture: Monte Carlo MethodsLecture: Monte Carlo Methods
Lecture: Monte Carlo MethodsFrank Kienle
 
Monte Caro Simualtions, Sampling and Markov Chain Monte Carlo
Monte Caro Simualtions, Sampling and Markov Chain Monte CarloMonte Caro Simualtions, Sampling and Markov Chain Monte Carlo
Monte Caro Simualtions, Sampling and Markov Chain Monte CarloXin-She Yang
 
Monte Carlo Tree Search for the Super Mario Bros
Monte Carlo Tree Search for the Super Mario BrosMonte Carlo Tree Search for the Super Mario Bros
Monte Carlo Tree Search for the Super Mario BrosChih-Sheng Lin
 
Introduction to Monte Carlo Ray Tracing, OpenCL Implementation (CEDEC 2014)
Introduction to Monte Carlo Ray Tracing, OpenCL Implementation (CEDEC 2014)Introduction to Monte Carlo Ray Tracing, OpenCL Implementation (CEDEC 2014)
Introduction to Monte Carlo Ray Tracing, OpenCL Implementation (CEDEC 2014)Takahiro Harada
 
Monte Carlo Simulation Of Heston Model In Matlab(1)
Monte Carlo Simulation Of Heston Model In Matlab(1)Monte Carlo Simulation Of Heston Model In Matlab(1)
Monte Carlo Simulation Of Heston Model In Matlab(1)Amir Kheirollah
 
The monte carlo method
The monte carlo methodThe monte carlo method
The monte carlo methodSaurabh Sood
 
Central limit theorem
Central limit theoremCentral limit theorem
Central limit theoremVijeesh Soman
 
Monte Carlo Statistical Methods
Monte Carlo Statistical MethodsMonte Carlo Statistical Methods
Monte Carlo Statistical MethodsChristian Robert
 
Monte carlo simulation
Monte carlo simulationMonte carlo simulation
Monte carlo simulationAnurag Jaiswal
 
Monte carlo simulation
Monte carlo simulationMonte carlo simulation
Monte carlo simulationMissAnam
 
random variable and distribution
random variable and distributionrandom variable and distribution
random variable and distributionlovemucheca
 
Monte Carlo Simulation
Monte Carlo SimulationMonte Carlo Simulation
Monte Carlo SimulationAguinaldo Flor
 
Monte Carlo Simulations
Monte Carlo SimulationsMonte Carlo Simulations
Monte Carlo Simulationsgfbreaux
 

Andere mochten auch (19)

Monte carlo option pricing final v3
Monte carlo option pricing final v3Monte carlo option pricing final v3
Monte carlo option pricing final v3
 
Lecture: Monte Carlo Methods
Lecture: Monte Carlo MethodsLecture: Monte Carlo Methods
Lecture: Monte Carlo Methods
 
Monte carlo simulation
Monte carlo simulationMonte carlo simulation
Monte carlo simulation
 
Monte Caro Simualtions, Sampling and Markov Chain Monte Carlo
Monte Caro Simualtions, Sampling and Markov Chain Monte CarloMonte Caro Simualtions, Sampling and Markov Chain Monte Carlo
Monte Caro Simualtions, Sampling and Markov Chain Monte Carlo
 
Monte Carlo Tree Search for the Super Mario Bros
Monte Carlo Tree Search for the Super Mario BrosMonte Carlo Tree Search for the Super Mario Bros
Monte Carlo Tree Search for the Super Mario Bros
 
Monte carlo
Monte carloMonte carlo
Monte carlo
 
Introduction to Monte Carlo Ray Tracing, OpenCL Implementation (CEDEC 2014)
Introduction to Monte Carlo Ray Tracing, OpenCL Implementation (CEDEC 2014)Introduction to Monte Carlo Ray Tracing, OpenCL Implementation (CEDEC 2014)
Introduction to Monte Carlo Ray Tracing, OpenCL Implementation (CEDEC 2014)
 
Monte Carlo Simulation Of Heston Model In Matlab(1)
Monte Carlo Simulation Of Heston Model In Matlab(1)Monte Carlo Simulation Of Heston Model In Matlab(1)
Monte Carlo Simulation Of Heston Model In Matlab(1)
 
Chris Sherlock's slides
Chris Sherlock's slidesChris Sherlock's slides
Chris Sherlock's slides
 
The monte carlo method
The monte carlo methodThe monte carlo method
The monte carlo method
 
Richard Everitt's slides
Richard Everitt's slidesRichard Everitt's slides
Richard Everitt's slides
 
Central limit theorem
Central limit theoremCentral limit theorem
Central limit theorem
 
Monte Carlo Statistical Methods
Monte Carlo Statistical MethodsMonte Carlo Statistical Methods
Monte Carlo Statistical Methods
 
Monte carlo simulation
Monte carlo simulationMonte carlo simulation
Monte carlo simulation
 
Monte carlo simulation
Monte carlo simulationMonte carlo simulation
Monte carlo simulation
 
random variable and distribution
random variable and distributionrandom variable and distribution
random variable and distribution
 
Monte carlo
Monte carloMonte carlo
Monte carlo
 
Monte Carlo Simulation
Monte Carlo SimulationMonte Carlo Simulation
Monte Carlo Simulation
 
Monte Carlo Simulations
Monte Carlo SimulationsMonte Carlo Simulations
Monte Carlo Simulations
 

Ähnlich wie Monte carlo webinar presentation notes

essen-ch12-presentation (2).ppt
essen-ch12-presentation (2).pptessen-ch12-presentation (2).ppt
essen-ch12-presentation (2).pptKEHKASHANAWAIS
 
0001 funtion configuration_guide_no2_en
0001 funtion configuration_guide_no2_en0001 funtion configuration_guide_no2_en
0001 funtion configuration_guide_no2_enSrikanthPadi2
 
Overview business analytics 6th june 2020 v5
Overview business analytics 6th june 2020 v5Overview business analytics 6th june 2020 v5
Overview business analytics 6th june 2020 v5Anurag Seksaria
 
WEBINAR: Interchangeable Part Revisions in BOMs. Is this a Revision or a New ...
WEBINAR: Interchangeable Part Revisions in BOMs. Is this a Revision or a New ...WEBINAR: Interchangeable Part Revisions in BOMs. Is this a Revision or a New ...
WEBINAR: Interchangeable Part Revisions in BOMs. Is this a Revision or a New ...Oleg Shilovitsky
 
How to justify technical debt mitigations in Software Engineering
How to justify technical debt mitigations in Software EngineeringHow to justify technical debt mitigations in Software Engineering
How to justify technical debt mitigations in Software EngineeringAndré Agostinho
 
Constraint Programming - An Alternative Approach to Heuristics in Scheduling
Constraint Programming - An Alternative Approach to Heuristics in SchedulingConstraint Programming - An Alternative Approach to Heuristics in Scheduling
Constraint Programming - An Alternative Approach to Heuristics in SchedulingEray Cakici
 
Effective cplusplus
Effective cplusplusEffective cplusplus
Effective cplusplusMark Veltzer
 
Case Studies Ii
Case Studies IiCase Studies Ii
Case Studies Iijfjohnson6
 
IBM iSeries Terminal Based Performance Testing with Rational Performance Tester
IBM iSeries Terminal Based Performance Testing with Rational Performance TesterIBM iSeries Terminal Based Performance Testing with Rational Performance Tester
IBM iSeries Terminal Based Performance Testing with Rational Performance TesterWinton Winton
 
Acct 505 managerial accounting entire course
Acct 505 managerial accounting entire courseAcct 505 managerial accounting entire course
Acct 505 managerial accounting entire coursebestwriter
 
Exercícios Árvores de Decisão
Exercícios Árvores de DecisãoExercícios Árvores de Decisão
Exercícios Árvores de DecisãoFernando Holanda
 
Introduction to Contracts and Functional Contracts
Introduction to Contracts and Functional ContractsIntroduction to Contracts and Functional Contracts
Introduction to Contracts and Functional ContractsDaniel Prager
 
ACG 3341 Success Begins / snaptutorial.com
ACG 3341 Success Begins / snaptutorial.comACG 3341 Success Begins / snaptutorial.com
ACG 3341 Success Begins / snaptutorial.comRobinsono20
 
Acg 3341 Enthusiastic Study / snaptutorial.com
Acg 3341 Enthusiastic Study / snaptutorial.comAcg 3341 Enthusiastic Study / snaptutorial.com
Acg 3341 Enthusiastic Study / snaptutorial.comGeorgeDixon50
 

Ähnlich wie Monte carlo webinar presentation notes (20)

Keeping Master Green at Scale
Keeping Master Green at ScaleKeeping Master Green at Scale
Keeping Master Green at Scale
 
essen-ch12-presentation (2).ppt
essen-ch12-presentation (2).pptessen-ch12-presentation (2).ppt
essen-ch12-presentation (2).ppt
 
0001 funtion configuration_guide_no2_en
0001 funtion configuration_guide_no2_en0001 funtion configuration_guide_no2_en
0001 funtion configuration_guide_no2_en
 
Overview business analytics 6th june 2020 v5
Overview business analytics 6th june 2020 v5Overview business analytics 6th june 2020 v5
Overview business analytics 6th june 2020 v5
 
WEBINAR: Interchangeable Part Revisions in BOMs. Is this a Revision or a New ...
WEBINAR: Interchangeable Part Revisions in BOMs. Is this a Revision or a New ...WEBINAR: Interchangeable Part Revisions in BOMs. Is this a Revision or a New ...
WEBINAR: Interchangeable Part Revisions in BOMs. Is this a Revision or a New ...
 
How to justify technical debt mitigations in Software Engineering
How to justify technical debt mitigations in Software EngineeringHow to justify technical debt mitigations in Software Engineering
How to justify technical debt mitigations in Software Engineering
 
Six sigma
Six sigmaSix sigma
Six sigma
 
Constraint Programming - An Alternative Approach to Heuristics in Scheduling
Constraint Programming - An Alternative Approach to Heuristics in SchedulingConstraint Programming - An Alternative Approach to Heuristics in Scheduling
Constraint Programming - An Alternative Approach to Heuristics in Scheduling
 
CGB
CGBCGB
CGB
 
Effective cplusplus
Effective cplusplusEffective cplusplus
Effective cplusplus
 
Introduction to BIM
Introduction to BIMIntroduction to BIM
Introduction to BIM
 
Case Studies Ii
Case Studies IiCase Studies Ii
Case Studies Ii
 
Lifecycle News Issue 2
Lifecycle News Issue 2Lifecycle News Issue 2
Lifecycle News Issue 2
 
IBM iSeries Terminal Based Performance Testing with Rational Performance Tester
IBM iSeries Terminal Based Performance Testing with Rational Performance TesterIBM iSeries Terminal Based Performance Testing with Rational Performance Tester
IBM iSeries Terminal Based Performance Testing with Rational Performance Tester
 
3.9 báo cáo khuyến nghị
3.9 báo cáo khuyến nghị3.9 báo cáo khuyến nghị
3.9 báo cáo khuyến nghị
 
Acct 505 managerial accounting entire course
Acct 505 managerial accounting entire courseAcct 505 managerial accounting entire course
Acct 505 managerial accounting entire course
 
Exercícios Árvores de Decisão
Exercícios Árvores de DecisãoExercícios Árvores de Decisão
Exercícios Árvores de Decisão
 
Introduction to Contracts and Functional Contracts
Introduction to Contracts and Functional ContractsIntroduction to Contracts and Functional Contracts
Introduction to Contracts and Functional Contracts
 
ACG 3341 Success Begins / snaptutorial.com
ACG 3341 Success Begins / snaptutorial.comACG 3341 Success Begins / snaptutorial.com
ACG 3341 Success Begins / snaptutorial.com
 
Acg 3341 Enthusiastic Study / snaptutorial.com
Acg 3341 Enthusiastic Study / snaptutorial.comAcg 3341 Enthusiastic Study / snaptutorial.com
Acg 3341 Enthusiastic Study / snaptutorial.com
 

Monte carlo webinar presentation notes

  • 1. Lunchtime Webinar Series: Monte Carlo Simulation 1 © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
  • 2. Agenda • What is Monte Carlo Simulation? • An example of Monte Carlo Simulation • A Case Study 2 © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
  • 3. Definition Monte Carlo Simulations are computational routines to simulate physical or mathematical performance using repeated random sampling. What does it mean??? Let us look at simple example… 3 © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
  • 4. Example We are going to build a tower of 5 square blocks. We need to produce blocks of the following sizes: 5x5 cm, 4x4 cm, 3x3 cm, 2x2 cm and 1x1 cm. E D We need to make the tower like this: C We produce blocks and we verify that on average dimensions are as required. B What is the size of the tower? A Answer: 15 cm, but…… On average! 4 © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
  • 5. Example We observe variation in dimensions of blocks we produce. We study the nature of variation and we find out that the actual dimensions follow normal distribution with standard deviation of 0.1 cm for each block. How likely is it that the size of the tower will be between 14.8 cm and 15.2 cm? This problem can be solved using analytical skills but the simpler way to answer is to apply Monte Carlo. 5 © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
  • 6. Example We are going to randomly generate a number for the size of block A from normal distribution with average of 5 and standard deviation of 0.1. We do same for blocks B to E. We add the randomly generated numbers and calculate size of tower. Then we randomly select the next set of sizes for blocks A-E and calculate size of tower. And we do it over and over again thousands of times. 6 © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
  • 7. Example In Minitab we can do it like this: 7 © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
  • 8. Example The result will look like this: 8 © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
  • 9. Example Now we can calculate the probability of having a tower size between 14.8 cm and 15.2 cm. We can do it like this: 9 © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
  • 10. Example The result will look like this: 10 © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
  • 11. Example - Summary Although on average size our tower is 15 cm there is a 37.76% probability that it will be outside of the specification (14.8 cm – 15.2 cm) If you did this exercise on your own computer, the results could be slightly different (due to random sampling), although if we keep increasing sample size results on different computers will become closer and closer (due to Law of Large Numbers) An understanding of the nature of variation of each process step is the key to applying Monte Carlo. Now let’s practice….. 11 © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
  • 12. Case Study The process consists of 5 consecutive process steps. We collected data on the time it takes to complete each process step in minutes (Cycle Time). You can find the results in the Excel data file that was distributed to you before Webinar. Question 1: What is the average processing time? Question 2: How likely is it that we will complete the process in under 180 minutes? (this is the requirement from customer) 12 © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
  • 13. Case Study – Question 1 We need to calculate the average in each data set and add it together. One of the way to do it (in Minitab) is the following: 13 © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
  • 14. Question 1 - Solution The answer for Question 1 is the following: Average time of the process is: 30.144 (Average of Process Step 1) + 31.100 (Average of Process Step 2) + 30.476 (Average of Process Step 3) + 30.268 (Average of Process Step 4) + 30.102 (Average of Process Step 5) = 152.09 minutes This was actually an easy question, we can answer it even with just Excel. 14 © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
  • 15. Case Study – Question 2 The second question is much more difficult to answer. In order to answer this question we need to understand the nature of variation in each process step. 15 © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
  • 16. Case Study – Question 2 We see that data from Process Step 1, Process Step 3 and Process Step 4 are normally distributed, so for each of the process steps we can generate random data from normal distribution with respective averages and standard deviations. Unfortunately Process Step 2 and Process Step 5 are NOT normally distributed, so we can NOT generate random data from normal distribution. What we have to do, is to understand from which distribution, both data sets are coming from. 16 © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
  • 17. Case Study – Question 2 We can do it in the following way: 17 © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
  • 18. Case Study – Question 2 After we randomly generate data into all 5 columns and make a simple formula in sixth column, the result may look like this: 18 © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
  • 19. Question 2 - Solution If we perform capability analysis for the normal data on our sixth column with an Upper Specification Limit of 180 minutes, the result will be the following: 19 © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
  • 20. Monte Carlo Simulation - Summary  Monte Carlo is used to simulate performance using repeated random sampling.  We need to understand function y = f(x1, x2…).  We need to understand the nature of variation in each x and what are the underlying distributions the data is coming from.  We usually sample thousands of data points for each x using appropriate distributions in order to produce thousands of data points for y. 20 © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
  • 21. Learn More Classroom courses in Europe • 25-29 June, Amsterdam: Full 5 Day DFSS Training Course • 11-15 February, Warsaw: Full 5 Day Toolmaster Training Course • 10-14 September, Brussels: First week of full 3 weeks GB to BB Upgrade Training Course • 28 January – February 1, Warsaw: First week of full 5 weeks BB course More information: http://www.bmgi.com/training 21 © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.
  • 22. Questions & Answers 22 © BMGI. Except as may be expressly authorized by a written license agreement signed by BMGI, no portion may be altered, rewritten, edited, modified or used to create any derivative works.