Simulation Exam 1

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/39

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 10:29 PM on 5/21/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

40 Terms

1
New cards

Harry Markowitz (one of the big wheels in simulation language development) won his Nobel Prize for portfolio theory in 1990, though the work that earned him the award was conducted much earlier in the 1950s. Who won the 1990 Prize with him? You are allowed to look this one up.

Merton Miller and William Sharpe

2
New cards

Which scenarios are most apt for a steady-state analysis?

Scenarios that deal with long-term phenomena

Ex. We investigate a production line that runs 24/7, we try to estimate the unemployment rate 30 years from now

3
New cards

The Box-Muller method is used to generate what kind of random variable?

Random Normal Variables

4
New cards

X and Y are independent if and only if...

you can write f(x ,y) = a(x)b(y) with no funny limits

5
New cards

What is the most-important theorem in the universe?

Central Limit Theorem

6
New cards

If U 1 and U 2 are i.i.d. Unif(0,1) random variables, what is the distribution of U 1 + U 2? Hints: (i) I may have mentioned this in class at some point; (ii) You may be able to reason this out by looking at the distribution of the sum of two dice tosses; or (iii) You can use something like Excel to simulate U 1 + U 2 many times and make a histogram of the results.

Traingular

7
New cards

Which steps are regarded as essential for a successful simulation study?

Problem formation, model validation, model verification, experimental design, output analysis

8
New cards

Suppose that I have modelled the arriving calls to a call center as a Poisson process. What do I have to carry out in order to determine if that's indeed a reasonable model assumption?

Model validation

9
New cards

Which of the following times could be regarded as events?

Customers arrive, Justin forgets a lyric, Justin sings wrong note, Customers depart

10
New cards

TRUE or FALSE? Customer waiting times are activities because these are typically explicitly specified in the simulation.

FALSE. Although activities are indeed times of specified length,waiting times typically need to be calculated from the sequence of customer arrival and service times | and so are not explicitly specified beforehand.

11
New cards

TRUE or FALSE? The simulation clock time is a variable.

TRUE

12
New cards

TRUE or FALSE? The simulation clock time always equals real time.

FALSE

13
New cards

TRUE or FALSE? In this class, time always moves forward.

TRUE

14
New cards

TRUE or FALSE? A next-event time-advance mechanism is typically used in queueing models involving customer arrivals, services, and departures.

TRUE

15
New cards

TRUE or FALSE? The future events list contains all known upcoming events, including arrival times, departure times, and machine breakdown times.

TRUE

16
New cards

TRUE or FALSE? The FEL can be updated any time an event occurs.

TRUE

17
New cards

TRUE or FALSE? It is possible for the system state to change between consecutive event times.

FALSE

18
New cards

TRUE or FALSE? In a simulation using the "next-event" time-advance mechanism, the simulation clock moves to the most-imminent event.

TRUE

19
New cards

TRUE or FALSE? When a new event occurs, the simulation may update the chronological order of the FEL's events by inserting new events, deleting events, moving them around, or even doing nothing.

TRUE

20
New cards

TRUE or FALSE? Almost every discrete-event computer simulation language maintains a FEL somewhere.

TRUE

21
New cards

In Arena, you are responsible for maintaining the language's FEL.

FALSE

22
New cards

Which is generally the easier simulation modeling approach — Event-Scheduling or Process-Interaction?

Process-Interaction (P-I)

23
New cards

Which is the modeling approach adopted by Arena — Event-Scheduling or Process-Interaction?

Process-Interaction (P-I)

24
New cards

TRUE or FALSE? A simulation language incorporating the P-I approach considers the events that a generic customer undergoes as it passes through the system, and then automatically does the bookkeeping to keep track of how all such customers interact with each other.

TRUE

25
New cards

How many simulation languages are there?

>>50

26
New cards

When selecting a simulation language, what characteristics do you have to take into consideration?

Cost, ease of se, modeling "world view" (ex. P-I), random variate generation capabilities, output analysis capabilities

27
New cards

What sequence of Arena modules would you use to generate customer arrivals, use a server, and then have customers leave the system after they're done with the server?

Create-Process-Dispose

28
New cards

TRUE or FALSE? Arena uses the P-I "world view".

TRUE

29
New cards

TRUE or FALSE? The Basic Process template contains a number of spreadsheets, e.g., a Resource spreadsheet.

TRUE

30
New cards

Which spreadsheets are available in the Basic Process template?

Attribute, Entity, Queue, Resource, Variable

31
New cards

Joe is a customer who needs to go to Point A with probability 0.5, Point B with probability 0.2, and Point C with probability 0.3. Which Decide module option would he use to do so?

N-Way by Chance

32
New cards

TRUE or FALSE? We can use the Assign Module to change an entity's picture.

TRUE

33
New cards

TRUE or FALSE? The system's work-in-process will typically be a variable - not an attribute.

TRUE. Attributes are properties for individual customers; variables are properties of the entire system.

34
New cards

What are properties for the individual customers? (Attribute or Variable)

Attribute

35
New cards

What are properties for the entire system? (Attribute or Variable)

Variable

36
New cards

Which expression will give you the number of customers in the queue called DaveRules.Queue in front of the server called Dave?

NQ(DaveRules.Queue)

37
New cards

You are allowed to do a SEIZE-DELAY sequence in the Arena PROCESS module, but what happens if you forget to eventually add a RELEASE command?

A large queue develops in front of the server.

38
New cards

What are some well-known discrete RVs?

Bernoulli, Binomial, Poisson

39
New cards

What are some well-known continuous RVs?

Uniform, Exponential, Normal

40
New cards

Simulation can be used to analyze queueing models that are too complicated to solve analytically.

TRUE