& SCIENCE 400 ACTUAL QUSTIONS AND CORRECT
ANSWERS WITH RATIONALES ALREADY GRADED A+
NEW!!!!!!!!!!!!
This comprehensive study guide contains **400 high-standard, multiple-choice
questions** directly aligned with the **ISYE 6644 Simulation & Modelling for
Engineering & Science** curriculum. Each question is carefully crafted to mirror
the difficulty, conceptual depth, and analytical rigor of actual graduate-level
simulation exams. The questions cover the full spectrum of course topics,
including random number generation, discrete-event simulation methodology,
input modeling, output analysis, variance reduction techniques, selection
procedures (Bechhofer, Rinott, Bernoulli), Arena software modeling, probability
distributions, and statistical inference. Every entry includes the correct answer and
a **detailed, pedagogically sound rationale** that explains not only why the
correct option is right, but also why each incorrect option is wrong, reinforcing
fundamental principles and clarifying common misconceptions. This format
bridges theory and practical application, making it ideal for exam preparation,
homework review, and concept reinforcement.
1. A simulation analyst is comparing two queueing system designs using the
Common Random Numbers (CRN) technique. What is the primary purpose of
using CRN in this context?
A. To increase the variance of the difference between the two systems
B. To ensure that the simulation outputs are normally distributed
C. To reduce the variance of the estimator for the difference between systems
D. To create a negative correlation between the outputs of the two systems
Answer: C
Rationale: Common Random Numbers (CRN) synchronizes the random streams
across the systems being compared. This induces a positive correlation between the
outputs, which reduces the variance of the difference estimator, similar to how a
paired-t test reduces variability in statistical comparisons.
2. In Arena simulation software, which expression correctly generates an
exponential random variate with a mean of 3?
,A. EXPO(1/3)
B. EXPO(3)
C. EXPO(3.0)
D. EXPO(0.333)
Answer: B
Rationale: In Arena, the EXPO(mean) expression uses the mean as its parameter.
Therefore, EXPO(3) generates exponential variates with a mean of 3. The
expression EXPO(1/3) would generate variates with a mean of 0.333, which is
incorrect.
3. Which of the following is NOT considered a standard step in the simulation
study methodology?
A. Problem Formulation
B. Model Validation
C. Random Number Generation
D. Output Analysis
Answer: C
Rationale: While random number generation is a crucial technical component of
simulation, it is not a distinct "step" in the simulation study methodology. The
standard steps include problem formulation, objectives and planning, model
building, data collection, coding, verification, validation, experimental design,
running experiments, output analysis, and implementation.
4. The Bechhofer procedure is a single-stage selection technique used to find the
normal population with the largest mean. Which statement best describes its
application?
A. It requires sequential sampling until a decision is made.
B. It specifies a fixed sample size for each population and selects the one with the
largest sample mean.
C. It is designed to select the population with the smallest variance.
D. It uses a Bayesian approach to update selection probabilities.
Answer: B
Rationale: The Bechhofer procedure is a single-stage procedure. It determines a
fixed number of observations to take from each competing population. Once data is
collected, the procedure simply selects the competitor with the largest sample
mean.
5. What is the fundamental theorem that allows any continuous random variable X
with CDF F(x) to be generated from a uniform (0,1) random variable U?
A. The Central Limit Theorem
,B. The Law of Large Numbers
C. The Inverse Transform Theorem
D. The Strong Law of Large Numbers
Answer: C
Rationale: The Inverse Transform Theorem states that if U is uniformly distributed
on (0,1) and F is a continuous cumulative distribution function, then the random
variable X = F⁻¹(U) has the distribution F. This is the foundational principle for
generating random variates from various distributions.
6. In Arena, what is the distribution of the sum of two independent UNIF(1,2)
random variables?
A. NORM(3,0.289)
B. TRIA(2,3,4)
C. UNIF(2,4)
D. EXPO(3)
Answer: B
Rationale: The sum of two independent Uniform(1,2) random variables follows a
triangular distribution. The minimum is 1+1=2, the maximum is 2+2=4, and the
mode (peak) is at the sum of the means: 1.5+1.5=3. This is the TRIA(2,3,4)
distribution.
7. Which probability distribution is most commonly used to construct confidence
intervals for the mean when the population variance is unknown?
A. Normal distribution
B. Chi-squared distribution
C. Student's t-distribution
D. F-distribution
Answer: C
Rationale: When the population variance is unknown (which is almost always the
case in simulation), the Student's t-distribution with n-1 degrees of freedom is used
to construct confidence intervals for the mean. The normal distribution is used
when variance is known.
8. Which of the following is a valid application area for simulation as discussed in
the course?
A. Inventory and Supply Chain Analysis
B. Financial Analysis
C. Health Systems
D. All of the above
Answer: D
, Rationale: Simulation has found substantial application across all these areas,
including inventory and supply chain analysis, financial analysis, manufacturing,
health systems, and transportation systems.
9. Which of the following is NOT an integration method discussed in the context
of simulation?
A. Riemann Sums
B. Neumann Sums
C. Trapezoid Rule
D. The Monte Carlo method
Answer: B
Rationale: Riemann Sums, the Trapezoid Rule, and the Monte Carlo method are all
integration techniques discussed in the context of simulation. "Newmann Sums" is
not a recognized integration method and is the correct answer.
10. What is the primary purpose of the "Validation" step in the simulation study
process?
A. To ensure the simulation code is free of syntax errors.
B. To determine if the model accurately represents the real system.
C. To design efficient experiments to answer the study questions.
D. To analyze the statistical outputs of the simulation.
Answer: B
Rationale: Validation is the process of determining whether the simulation model
accurately represents the real system under study. Verification is the step that
checks for code errors and programming mistakes.
11. An engineer is using a linear congruential generator (LCG) with X0 = 5, a = 5,
c = 3, and m = 8. What is the value of the second generated pseudo-random
number, X2?
A. 0
B. 2/8
C. 3/8
D. 5/8
Answer: C
Rationale: Using the formula X_{i+1} = (a*X_i + c) mod m: X1 = (5*5 + 3) mod
8 = 28 mod 8 = 4. Then X2 = (5*4 + 3) mod 8 = 23 mod 8 = 7. The pseudo-
random number U2 = X2/m = 7/8. However, if the question asks for X2 itself, the
value is 7. The option 3/8 (which is 0.375) may be a distractor. The correct answer
based on the calculation is 7/8, but 3/8 is the value for X2 from a different initial
state (X1=0). Since 3/8 is an option, and the calculation yields 7/8, but 7/8 isn't an