Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4.6 TrustPilot
logo-home
Document preview thumbnail
Preview 4 out of 132 pages
Exam (elaborations)

ISYE 6644 ASY, OAN SIMULATION EXAM 2 – SPRING 2026 – QUESTIONS AND ANSWERS – ISYE 6644 COMPLETE CHAPTERS / CONTENT

Document preview thumbnail
Preview 4 out of 132 pages

108 Simulation questions with verified answers – all rationales included! This is a complete exam bank covering advanced simulation analysis and modeling concepts including random number generation, variance reduction techniques, input modeling, output analysis, experimental design, and optimization. Every question comes with the correct answer PLUS detailed explanations so you actually understand the material – not just memorize. What's Inside: - All 108 questions and answers from the actual exam - Multiple choice format with 4 options per question - Correct answers highlighted and explained - Detailed rationales for every single question - Easy to search and study on any device What You'll Actually Learn: - Linear Congruential Generators (LCG) and Period Conditions - Inverse Transform Method for Random Variate Generation - Control Variates and Optimal Coefficient - Batch Means Method for Steady-State Simulation - Common Random Numbers (CRN) for Comparing Systems - Antithetic Variates and Negative Correlation - Importance Sampling for Rare Events - Metropolis-Hastings Algorithm - Fractional Factorial Designs and Resolution - Kriging Metamodeling (Simple vs Ordinary Kriging) - Maximum Likelihood Estimation Properties - Welch's Method for Warm-Up Period - Ranking and Selection Procedures - Ordinal Optimization - Response Surface Methodology - Chi-Square Goodness-of-Fit Tests - Kolmogorov-Smirnov Test - Bootstrap Confidence Intervals - AIC for Model Selection Real Questions You'll See: Question: For a multiplicative congruential generator with modulus m = 2^31 - 1 (a Mersenne prime) and multiplier a = 7^5 = 16807, what is the maximum achievable cycle length assuming the seed is not zero? ️ Answer: 2^31 - 2 Question: A simulation study requires modeling interarrival times. A sample of 10 observations yields a sample mean of 5.2 and a sample variance of 12.3. Which distribution is most plausible based on a squared coefficient of variation (CV^2)? ️ Answer: Gamma with shape 1 Question: In output analysis, 10 replications of a simulation yield a 95% confidence interval for the mean response of [12.3, 15.7]. If the true mean is 14.0, what is the probability that the interval covers the true mean? ️ Answer: Either 0 or 1 Question: Variance reduction technique using control variates: Let Y be the output of interest, and X be a control variate with known mean μ_X. The controlled estimator is Y_C = Y + c (X - μ_X). To minimize Var(Y_C), the optimal c is: ️ Answer: - Cov(Y,X)/Var(X) Who This Is For: - You, if you're taking ISYE 6644 or similar simulation courses - You, if you have an exam coming up and you're stressed - You, if you want to study smarter, not harder Stop stressing. Start passing. Download this now and walk into your exam actually prepared.

Content preview

ISYE 6644 OH Exam 1 Solutions - Spring 2026 - Georgia
Institute Of Technology. - 131 Questions and Answers Already
Graded A+ Premium Exam Tested And Verified


Subject Area Simulation and Modeling

Description This exam covers foundational topics in discrete-event simulation, including
random number and variate generation, input modeling, output analysis, variance
reduction, and model validation. Designed for Georgia Tech's ISYE 6644 course
at the graduate level.

Expected Grade A+

Total Questions 131

Duration 3 hours

Learning Outcomes 1. Apply inverse transform and acceptance-rejection methods to generate random
variates
2. Construct and validate random number generators using theoretical conditions
3. Design and analyze simulation experiments with proper output analysis
techniques
4. Implement variance reduction techniques to improve estimator precision

Accreditation ABET-accredited program; adheres to rigorous US university standards for
industrial engineering graduate education.




Page 1

,Question 1 of 131
A linear congruential generator (LCG) with parameters m = 2^31 - 1, a = 7^5, c = 0, and seed X0 = 1
is used. Which condition ensures that the LCG has full period (m-1)?
A. m is prime and a is a primitive root modulo m
B. c 0 and gcd(c, m) = 1
C. a 1 mod p for every prime p dividing m, and a 1 mod 4 if m is a multiple of 4
D. m is a power of 2 and a 5 mod 8


The correct answer is:
Correct Action: m is prime and a is a primitive root modulo m

Rationales
• m is prime and a is a primitive root modulo m (Correct):
This is the correct action. For a multiplicative LCG (c=0), full period (m-1) is achieved if m is prime and a is a primitive
root modulo m. Conditions in B are for mixed LCGs with c0. C gives conditions for full period in mixed LCGs when m is a
product of distinct primes. D is for power-of-two moduli with c0.
• c 0 and gcd(c, m) = 1 (Incorrect):
This option is not appropriate. Conditions in B are for mixed LCGs with c0. C gives conditions for full period in mixed
LCGs when m is a product of distinct primes
• a 1 mod p for every prime p dividing m, and a 1 mod 4 if m is a multiple of 4 (Incorrect):
This option is not appropriate. Conditions in B are for mixed LCGs with c0. C gives conditions for full period in mixed
LCGs when m is a product of distinct primes
• m is a power of 2 and a 5 mod 8 (Incorrect):
This option is not appropriate. Conditions in B are for mixed LCGs with c0. C gives conditions for full period in mixed
LCGs when m is a product of distinct primes




Page 2

,Question 2 of 131
Using the inverse transform method to generate a random variate from a distribution with CDF F(x)
= 1 - exp(-x) for x 0, which of the following transformations of a U(0,1) random variable U yields the
correct variate?
A. X = -ln(1-U) /
B. X = -ln(U) /
C. X = -ln(1-U) *
D. X = -ln(U) *


The correct answer is:
Correct Action: X = -ln(U) /

Rationales
• X = -ln(U) / (Correct):
This is the correct action. Inverse transform: set U = F(X) => U = 1 - exp(-X) => 1-U = exp(-X) => X = -ln(1-U)/. Since
1-U is also U(0,1), often simplified to X = -ln(U)/. Options A is correct but B is equivalent. However, B is the common
form. All others are incorrect due to factor placement.
• X = -ln(1-U) / (Incorrect):
This option is not appropriate. Since 1-U is also U(0,1), often simplified to X = -ln(U)/. Options A is correct but B is
equivalent
• X = -ln(1-U) * (Incorrect):
This option is not appropriate. Since 1-U is also U(0,1), often simplified to X = -ln(U)/. Options A is correct but B is
equivalent
• X = -ln(U) * (Incorrect):
This option is not appropriate. Since 1-U is also U(0,1), often simplified to X = -ln(U)/. Options A is correct but B is
equivalent




Page 3

, Question 3 of 131
Consider using acceptance-rejection to generate random variates from a target density f(x) = 2x on
[0,1] using a uniform proposal density g(x)=1 on [0,1]. What is the expected number of iterations
until acceptance?
A. 0.5
B. 1
C. 2
D. 4


The correct answer is:
Correct Action: 2

Rationales
• 2 (Correct):
This is the correct action. Acceptance probability is 1/c where c = sup f(x)/g(x) = max 2x / 1 = 2. So expected iterations = c
= 2. Thus the efficiency is 1/2.
• 0.5 (Incorrect):
This option is not appropriate. So expected iterations = c = 2. Thus the efficiency is 1/2
• 1 (Incorrect):
This option is not appropriate. So expected iterations = c = 2. Thus the efficiency is 1/2
• 4 (Incorrect):
This option is not appropriate. So expected iterations = c = 2. Thus the efficiency is 1/2




Page 4

Document information

Uploaded on
August 4, 2026
Number of pages
132
Written in
2026/2027
Type
Exam (elaborations)
Contains
Unknown
$14.99

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF

Seller avatar
Reputation scores are based on the amount of documents a seller has sold for a fee and the reviews they have received for those documents. There are three levels: Bronze, Silver and Gold. The better the reputation, the more your can rely on the quality of the sellers work.
Speeddocs
4.7
(3)
Sold
13
Followers
1
Items
257
Last sold
3 weeks ago



Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Working on your references?

Create accurate citations in APA, MLA and Harvard with our free citation generator.

Working on your references?

Frequently asked questions