Computer Simulation Exam Paper 2019
Computer Simulation Exam Paper 2019
Simulation and modeling are applied in various fields: in manufacturing, they optimize production processes and resource allocation; in healthcare, they assist in surgical procedure planning and equipment design; and in logistics, they improve supply chain efficiency and inventory management. These applications provide insights that enhance operational planning and strategic decision-making .
Linear Congruential Generators (LCG) are popular for their simplicity and speed, offering a good balance between performance and the quality of random numbers generated. LCGs produce numbers that appear statistically random and are reproducible, allowing for consistent simulation runs. This makes them suitable for simulations requiring large amounts of random data .
Different forecasting methods can significantly impact the effectiveness of business logistics. Quantitative methods such as time series analysis provide precise forecasts based on historical data, while qualitative methods like expert judgment offer flexibility in uncertain scenarios. Choosing the right method affects inventory management, supply chain efficiency, and cost-effectiveness. A combination often yields the most reliable results, aligning forecasts with business goals .
Simulation and modeling involve several key steps: defining the problem, constructing the conceptual model, developing the simulation model, validating the model, conducting the simulation experiments, and analyzing the results. Defining the problem ensures a clear understanding of the system requirements. Constructing the conceptual model involves creating an abstraction of the real system, which sets the foundation for the simulation. Developing the simulation model involves translating the conceptual model into a computer model. Validation ensures the model accurately represents the real world. Conducting experiments allows for observation under controlled conditions, and analyzing results helps in making informed decisions .
For the processes P1 (5s), P2 (15s), and P3 (10s), throughput is calculated as the total time taken divided by the number of processes = 30s/3 = 10s/process. Average waiting time is calculated as the cumulative sum of time waited by each subsequent process, divided by the number of processes: (0s + 5s + 20s)/3 = 8.33s/process .
To simulate, iterate for each minute from 9:00 to 9:30 (30 minutes), with a loop checking each person for phone activity using a random number generator with a threshold of 0.25. If the generated number is less than 0.25, consider the person as talking. Count occurrences in each iteration to find the total number each minute. This approach provides an estimated distribution of phone activity over time .
Good random number generators are vital for simulation accuracy as they ensure the unpredictability and statistical randomness of generated data. An effective generator should have properties like a long period before repetition, uniform distribution, independence among numbers, and reproducibility. These properties guarantee reliable simulations under varied conditions, necessary for credible results and decision-making .
Selecting the right simulation software involves considering factors such as the software's capabilities in modeling variety and complexity, ease of use, scalability, data-handling ability, and cost. Additionally, it's crucial to evaluate the software's compatibility with existing systems, support, and community resources. These considerations ensure the software fits the application's needs and supports comprehensive simulations .
Activity duration specification affects timelines by determining the accuracy and reliability of project schedules. Methods like probabilistic estimation provide ranges that accommodate uncertainties, while deterministic methods are precise but less flexible. Accurate duration forecasts enhance resource allocation and critical path identification, impacting project outcomes positively by reducing delays and underutilization of resources .
If Judy does nothing and the economy is good, she expects $3M; if bad, $1M. If she expands, she expects $6M if good and $2M if bad. With a 40% probability of a good economy and 60% of a bad one, the expected value if she expands is 0.4*$6M + 0.6*$2M = $3.6M and if she does nothing, 0.4*$3M + 0.6*$1M = $1.8M. Since the expansion's expected value is higher ($3.6M), expanding is financially advisable despite its cost of $1.5M .