Font size
WorksheetsCSC 208 MODELLING & SIMULATION MIDTERM EXAM
Total questions: 47
Worksheet time: 30mins
________ is the process of generating abstract, conceptual, graphical and/or mathematical models.
Models
Modelling
Simulation
Simulate
_______ also means to find relations between systems and models.
Simulate
Simulation
Model
Modelling
A _________ in general is a pattern, plan, representation (especially in miniature), or description designed to show the main object or workings of an object, system, or concept
Simulate
model
Modelling
simulation
is a representation of real-world phenomenon
(a)
Stated otherwise a (a) is an attempt to express a possible structure of physical causality.
-is the manipulation of a model in such a way that it operates on time or space to compress it, thus enabling one to perceive the interactions that would not otherwise be apparent because of their separation in time or space.
(a)
(a) is a discipline for developing a level of understanding of the interaction of the parts of a system, and of the system as a whole.
A (a) is a simulation or model of a situation in the real world or an imaginary world which has parameters that the user can alter.
Models help us frame our thinking about objects in the real world.
True
False
____________________________is a discipline for developing a level of understanding of the interaction of the parts of a system, and of the system as a whole.
Modelling
Modelling and Simulation
simulation
model
_____________________________is a technique (not a method) for representing a dynamic real world system by a model and experimenting with the model in order to gain information about the system and therefore take appropriate decision.
Modelling
Modelling and simulation
Model
Simulation
Modelling and Simulation is a discipline, it is also very much an (a) .
These are call iconic models.
physical models
mathematical models
analogue models
simulation models
These are models used for predictive (projecting) purposes.
Physical models
Mathematical Models
analogue models
simulation models
These are similar to iconic models.
Physical models
mathematical models
analogue models
simulation models
they are represented by sequences of random numbers subject to the assumptions of the model.
Physical Models
mathematical models
Analogue
simulation models
These models use intuitive (or futuristic) rules with the hope that it will produce workable solutions, which can be improved upon.
Heuristic models
deterministic models
stochastic models
modelling
These are models that contain certain known and fixed constants throughout their formulation e.g., Economic Order Quantity (EOQ) for inventory control under uncertainty.
Heuristic Models
deterministic models
stochastic models
modelling
These are models that involve one or more uncertain variables and as such are subject to probabilities.
Heuristic Models
deterministic Models
Stochastic models
modelling
The steps involved in modelling are as follows, which is the 1st step?
Extract the essential features from the real world situation
Construct a model of the real (object or system) using just the essential features identified.
Solve and experiment with the model.
Examine the real world situation.
can be defined as numbers that show no consistent pattern
(a)
One way to get random digits is to simply start with an arbitrary number with a specified number of digits, for example 4 digits
True
False
The first number is called the (a)
The seed is multiplied by a (a) number of the same number of digits(length), and the desired number of digits is taken off the right end of the product.
The result is a series of digits that appear randomly distributed as though generated by throwing a die or spinning a wheel. This type of algorithm is _________________
congruential generator
Pseudorandom Number generator
good random number generator
The so-called true _____________________________ extract random numbers from physical phenomena such as a radioactive source or even atmospheric noise as detected by a radio receiver
random number generators
Pseudorandom number generators
congruential random number generators
different pairs of numbers occur with nearly the same frequency, etc. Since such a process is not really random, it is called __________________________.
random number generator
congruential random number generator
pseudo-random number generator
Choose the 3 Properties of a Good Random Number Generator
have as nearly as possible a uniform distribution.
should be slow
not require large amounts of memory.
have a short period.
not degenerate.
Classical uniform random number generators have some major defects, such as, short period length and lack of higher dimension uniformity.
True
False
This Method is widely used based on modulus arithmetic
(a)
The (a) generates random numbers by computing the next random number from the last random number obtained.
This method uses the formula: Xn+1 = (aXn + c)(modulo m)
congruential method
multiplicative congruential method
Quadratic congruential method
The _____________________ method is very handy. It is obtained using the general formula: rn = arn-1 (modulo m)
congruential method
multiplicative congruential
quadratic congruential method
Xi+1 = (A*Xi + C) mod M, is the formula used in, what method?
congruential method
linear congruential method
multiplicative congruential method
(a) is multiplicative linear congruential generator suitable for a 16-bit platform.
This method uses the formula: Xn=1 = (dX 2 + cX + a) modulo m
quadratic congruential method
linear congruential method
Mid-square method
mid-product method
The first random number is generated from the seed by squaring the seed and discarding all the digits except the middle four digits.
Mid-square method
mid-product method
Fibonacci method
This method is similar to the mid-square method, except that a successive random number is obtained by multiplying the current number by a constant c, and taking the middle digits.
Mid-square method
mid-product method
Fibonacci method
This method uses the formula: Xn+1 = (Xn + Xn-1) modulo m
Mid-square method
mid-product method
Fibonacci method
Monte Carlo methods (or Monte Carlo experiments) are a class of computational algorithms that rely on repeated random sampling to compute their results.
True
False
Monte Carlo methods are often used in simulating physical and mathematical systems.
True
False
Monte Carlo methods are useful for modelling phenomena with significant uncertainty in inputs, such as the calculation of risk in business.
True
False
A (a) algorithm is an algorithm for computers. It is used to simulate the behaviour of other systems.
Monte Carlo methods, relies on repeated computation of random or pseudo-random numbers.
True
False
The mid-product method has a longer period and it is more uniformly distributed than the mid-square method.
True
False
