Escrito por estudiantes que aprobaron Inmediatamente disponible después del pago Leer en línea o como PDF ¿Documento equivocado? Cámbialo gratis 4,6 TrustPilot
logo-home
Document preview thumbnail
Vista previa 4 fuera de 132 páginas
Examen

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

Document preview thumbnail
Vista previa 4 fuera de 132 páginas

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.

Vista previa del contenido

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

Información del documento

Subido en
4 de agosto de 2026
Número de páginas
132
Escrito en
2026/2027
Tipo
Examen
Contiene
Desconocido
$14.99

¿Documento equivocado? Cámbialo gratis Dentro de los 14 días posteriores a la compra y antes de descargarlo, puedes elegir otro documento. Puedes gastar el importe de nuevo.
Escrito por estudiantes que aprobaron
Inmediatamente disponible después del pago
Leer en línea o como PDF

Seller avatar
Los indicadores de reputación están sujetos a la cantidad de artículos vendidos por una tarifa y las reseñas que ha recibido por esos documentos. Hay tres niveles: Bronce, Plata y Oro. Cuanto mayor reputación, más podrás confiar en la calidad del trabajo del vendedor.
Speeddocs
4.7
(3)
Vendido
13
Seguidores
1
Artículos
257
Última venta
3 semanas hace



Por qué los estudiantes eligen Stuvia

Creado por compañeros estudiantes, verificado por reseñas

Calidad en la que puedes confiar: escrito por estudiantes que aprobaron y evaluado por otros que han usado estos resúmenes.

¿No estás satisfecho? Elige otro documento

¡No te preocupes! Puedes elegir directamente otro documento que se ajuste mejor a lo que buscas.

Paga como quieras, empieza a estudiar al instante

Sin suscripción, sin compromisos. Paga como estés acostumbrado con tarjeta de crédito y descarga tu documento PDF inmediatamente.

Student with book image

“Comprado, descargado y aprobado. Así de fácil puede ser.”

Alisha Student

Preguntas frecuentes