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 108 páginas
Examen

ISYE 6644 ASY, OAN EXAM 1 SIMULATION – QUESTIONS AND ANSWERS – ISYE 6644 COMPLETE CHAPTERS / CONTENT

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

107 Simulation questions with verified answers – all rationales included! This is a complete exam bank covering simulation analysis and modeling concepts including random number generation, variance reduction techniques, input modeling, output analysis, and discrete-event simulation. Every question comes with the correct answer PLUS detailed explanations so you actually understand the material – not just memorize. What's Inside: - All 107 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: - Batch Means and Output Analysis - Spectral Test for Random Number Generators - Antithetic Variates and Control Variates - Importance Sampling for Rare Events - Acceptance-Rejection Method - Inverse Transform Method - Linear Congruential Generators (LCG) - Common Random Numbers (CRN) - Steady-State vs Terminating Simulations - Warm-Up Period Determination - Box-Muller Method for Normal Variates - Kolmogorov-Smirnov Goodness-of-Fit Test - Variance Reduction Techniques - Event Scheduling and Simulation Clocks - Model Validation and Verification - Ranking and Selection Procedures Real Questions You'll See: Question: In steady-state simulation output analysis, the batch means method is used to estimate the variance of the sample mean. If the batch size is too small, the resulting confidence interval may be unreliable because the batch means are correlated. Which condition is essential for the batch means method to produce a valid confidence interval? ️ Answer: The batch means must be approximately independent and identically distributed. Question: A linear congruential generator (LCG) has modulus m = 2^31 - 1, multiplier a = , and increment c = 0. The spectral test is applied to assess the generator's lattice structure in k dimensions. Which of the following best interprets a poor spectral test result in 2 dimensions? ️ Answer: Points (u_i, u_i+1) fall on a small number of parallel hyperplanes. Question: In simulation of a queueing system, you want to reduce the variance of the estimated mean waiting time. Two candidate techniques are antithetic variates (AV) and control variates (CV). Assuming perfect negative correlation for AV and a highly correlated control variate for CV, which statement is correct regarding their efficiency improvement? ️ Answer: AV reduces variance by using complementary random numbers, while CV uses known information about related variables. Question: When fitting a three-parameter Weibull distribution (shape beta, scale eta, location gamma) to observed data via maximum likelihood estimation, what is a common challenge that does NOT occur with the two-parameter Weibull? ️ Answer: The MLE for the location parameter gamma is the minimum observation. 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-ASY, OAN Exam 1 Simulation | Questions and
Answers - 2026 Update | 100% Correct - GT. - 107 Questions and
Answers Already Graded A+ Premium Exam Tested And
Verified


Subject Area ISYE 6644-ASY, OAN Exam 1 Simulation | Questions and Answers - 2026
Update | 100% Correct - GT.

Description Comprehensive examination on ISYE 6644-ASY, OAN Exam 1 Simulation |
Questions and Answers - 2026 Update | 100% Correct - GT..

Expected Grade A+

Total Questions 107

Duration 3 hours

Learning Outcomes 1. Demonstrate mastery of core concepts

Accreditation Aligned with US university standards.




Page 1

,Question 1 of 107
In steady-state simulation output analysis, the batch means method is used to estimate the variance
of the sample mean. If the batch size is too small, the resulting confidence interval may be unreliable
because the batch means are correlated. Which condition is essential for the batch means method to
produce a valid confidence interval?
A. The number of batches must be at least 30 to ensure normality.
B. The batch means must be approximately independent and identically distributed.
C. The initial transient bias must be removed via a warm-up period.
D. The batch size must be equal to the number of replications.


The correct answer is:
Correct Action: The batch means must be approximately independent and identically distributed.

Rationales
• The batch means must be approximately independent and identically distributed. (Correct):
This is the correct action. The batch means method relies on the batch means being approximately i.i.d. If batch size is too
small, autocorrelation among batch means persists, invalidating the standard variance estimator and confidence interval.
Removing initial transient (C) is necessary but not the core condition for the batch means' validity.
• The number of batches must be at least 30 to ensure normality. (Incorrect):
This option is not appropriate. i.d
• The initial transient bias must be removed via a warm-up period. (Incorrect):
This option is not appropriate. i.d
• The batch size must be equal to the number of replications. (Incorrect):
This option is not appropriate. i.d




Page 2

,Question 2 of 107
A linear congruential generator (LCG) has modulus m = 2^31 - 1, multiplier a = 950706376, and
increment c = 0. The spectral test is applied to assess the generator's lattice structure in k
dimensions. Which of the following best interprets a poor spectral test result in 2 dimensions?
A. The generator's period is less than 2^10.
B. Points (u_i, u_{i+1}) fall on a small number of parallel hyperplanes.
C. The generator fails the chi-square goodness-of-fit test.
D. The sequence exhibits a long positive autocorrelation at lag 1.


The correct answer is:
Correct Action: Points (u_i, u_{i+1}) fall on a small number of parallel hyperplanes.

Rationales
• Points (u_i, u_{i+1}) fall on a small number of parallel hyperplanes. (Correct):
This is the correct action. The spectral test measures the maximum distance between parallel hyperplanes covering all
points. A poor result means points lie on few widely spaced hyperplanes, indicating poor lattice structure and potential
correlation. Low period (A) is not directly measured; the test is distinct from uniform distribution tests (C) or
• The generator's period is less than 2^10. (Incorrect):
This option is not appropriate. A poor result means points lie on few widely spaced hyperplanes, indicating poor lattice
structure and potential correlation. Low period (A) is not directly measured; the test is distinct from uniform distribution
tests (C) or autocorrelation (D) though related
• The generator fails the chi-square goodness-of-fit test. (Incorrect):
This option is not appropriate. A poor result means points lie on few widely spaced hyperplanes, indicating poor lattice
structure and potential correlation. Low period (A) is not directly measured; the test is distinct from uniform distribution
tests (C) or autocorrelation (D) though related
• The sequence exhibits a long positive autocorrelation at lag 1. (Incorrect):
This option is not appropriate. A poor result means points lie on few widely spaced hyperplanes, indicating poor lattice
structure and potential correlation. Low period (A) is not directly measured; the test is distinct from uniform distribution
tests (C) or autocorrelation (D) though related




Page 3

, Question 3 of 107
In a simulation of a queueing system, you want to reduce the variance of the estimated mean waiting
time. Two candidate techniques are antithetic variates (AV) and control variates (CV). Assuming
perfect negative correlation for AV and a highly correlated control variate for CV, which statement is
correct regarding their efficiency improvement?
A. AV always yields greater variance reduction than CV because it requires no additional modeling.
B. CV can achieve arbitrarily high variance reduction if the control variate is perfectly correlated with the output.
C. AV reduces variance by using complementary random numbers, while CV uses known information about
related variables.
D. Both techniques are applicable only in terminating simulations, not steady-state.


The correct answer is:
Correct Action: AV reduces variance by using complementary random numbers, while CV uses known
information about related variables.

Rationales
• AV reduces variance by using complementary random numbers, while CV uses known information about
related variables. (Correct):
This is the correct action. Antithetic variates induce negative correlation between two runs using complementary random
numbers; control variates exploit correlation between the output and a known variable. Perfect correlation can make CV
extremely effective, but not arbitrarily (B is overstated). AV can be applied to steady-state too (D is false). A is false
• AV always yields greater variance reduction than CV because it requires no additional modeling. (Incorrect):
This option is not appropriate. Perfect correlation can make CV extremely effective, but not arbitrarily (B is overstated).
AV can be applied to steady-state too (D is false)
• CV can achieve arbitrarily high variance reduction if the control variate is perfectly correlated with the
output. (Incorrect):
This option is not appropriate. Perfect correlation can make CV extremely effective, but not arbitrarily (B is overstated).
AV can be applied to steady-state too (D is false)
• Both techniques are applicable only in terminating simulations, not steady-state. (Incorrect):
This option is not appropriate. Perfect correlation can make CV extremely effective, but not arbitrarily (B is overstated).
AV can be applied to steady-state too (D is false)




Page 4

Información del documento

Subido en
4 de agosto de 2026
Número de páginas
108
Escrito en
2026/2027
Tipo
Examen
Contiene
Preguntas y respuestas
$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