Computer Science, Informatik 4 Communication and Distributed Systems

Simulation “Discrete-Event System Simulation” Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Chapter 4 Statistical Models in Simulation

Computer Science, Informatik 4 Communication and Distributed Systems

Purpose & Overview ƒ The world the model-builder sees is probabilistic rather than deterministic. • Some statistical model might well describe the variations.

ƒ An appropriate model can be developed by sampling the phenomenon of interest: • Select a known distribution through educated guesses • Make estimate of the parameters • Test for goodness of fit

ƒ In this chapter: • Review several important probability distributions • Present some typical application of these models

Chapter 4. Statistical Models in Simulation

3

Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Review of Terminology and Concepts ƒ In this section, we will review the following concepts: • • • •

Discrete random variables Continuous random variables Cumulative distribution function Expectation

Chapter 4. Statistical Models in Simulation

4

Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Discrete Random Variables ƒ X is a discrete random variable if the number of possible values of X is finite, or countable infinite. ƒ Example: Consider jobs arriving at a job shop. - Let X be the number of jobs arriving each week at a job shop. Rx = possible values of X (range space of X) = {0,1,2,…} p(xi) = probability the random variable X is xi , p(xi) = P(X = xi)

• p(xi), i = 1,2, … must satisfy:

1. p( xi ) ≥ 0, for all i 2.





i =1

p( xi ) = 1

• The collection of pairs [xi, p(xi)], i = 1,2,…, is called the probability distribution of X, and p(xi) is called the probability mass function (pmf) of X.

Chapter 4. Statistical Models in Simulation

5

Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Continuous Random Variables ƒ ƒ

X is a continuous random variable if its range space Rx is an interval or a collection of intervals. The probability that X lies in the interval [a, b] is given by: b

P(a ≤ X ≤ b) = ∫ f ( x)dx a

ƒ

f(x) is called the probability density function (pdf) of X, satisfies:

1. f ( x) ≥ 0 , for all x in R X 2.

∫ f ( x)dx = 1

RX

3. f ( x) = 0, if x is not in RX ƒ

Properties x0

1. P ( X = x0 ) = 0, because ∫ f ( x)dx = 0 x0

2. P ( a ≤ X ≤ b ) = P ( a < X ≤ b ) = P ( a ≤ X < b ) = P ( a < X < b ) Chapter 4. Statistical Models in Simulation

6

Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Continuous Random Variables ƒ Example: Life of an inspection device is given by X, a continuous random variable with pdf:

⎧1 −x / 2 ⎪ e , x≥0 f ( x) = ⎨ 2 ⎪⎩0, otherwise Lifetime in Year

• X has an exponential distribution with mean 2 years • Probability that the device’s life is between 2 and 3 years is:

1 3 −x / 2 P(2 ≤ x ≤ 3) = ∫ e dx = 0.14 2 2 Chapter 4. Statistical Models in Simulation

7

Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Cumulative Distribution Function ƒ

Cumulative Distribution Function (cdf) is denoted by F(x), where F(x) = P(X ≤ x) •

If X is discrete, then

F ( x) = ∑ p ( xi ) xi ≤ x

x



ƒ

If X is continuous, then

F ( x) = ∫ f (t )dt −∞

Properties 1. F is nondecreasing function. If a ≤ b, then F (a ) ≤ F (b) 2. lim F ( x) = 1 x →∞

3. lim F ( x) = 0 x → −∞

ƒ

All probability question about X can be answered in terms of the cdf:

P (a ≤ X ≤ b) = F (b) − F (a ), for all a ≤ b Chapter 4. Statistical Models in Simulation

8

Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Cumulative Distribution Function ƒ Example: An inspection device has cdf:

1 x −t / 2 F ( x) = ∫ e dt = 1 − e − x / 2 2 0 • The probability that the device lasts for less than 2 years:

P(0 ≤ X ≤ 2) = F (2) − F (0) = F (2) = 1 − e −1 = 0.632

• The probability that it lasts between 2 and 3 years:

P (2 ≤ X ≤ 3) = F (3) − F (2) = (1 − e − ( 3 / 2 ) ) − (1 − e −1 ) = 0.145

Chapter 4. Statistical Models in Simulation

9

Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Expectation ƒ

The expected value of X is denoted by E(X) •

ƒ

E ( x) = ∑ xi p ( xi ) all i ∞

E ( x) = ∫ x ⋅ f ( x)dx



If X is continuous

• •

a.k.a the mean, m, µ, or the 1st moment of X A measure of the central tendency

−∞

The variance of X is denoted by V(X) or var(X) or σ2 • • •

ƒ

If X is discrete

Definition: V(X) = E( (X – E[X])2 ) Also, V(X) = E(X2) – ( E(x) )2 A measure of the spread or variation of the possible values of X around the mean

The standard deviation of X is denoted by σ • Definition: σ = V (x) •

Expressed in the same units as the mean

Chapter 4. Statistical Models in Simulation

10

Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Expectations ƒ Example: The mean of life of the previous inspection device is: ∞

∞ 1 −x / 2 −x / 2 E ( X ) = ∫ xe dx = − xe + ∫ e − x / 2 dx = 2 0 2 0 0 ∞

ƒ To compute variance of X, we first compute E(X2): ∞

∞ 1 ∞ 2 −x / 2 −x / 2 2 E ( X ) = ∫ x e dx = − x e + ∫ e − x / 2 dx = 8 0 2 0 0 2

ƒ Hence, the variance and standard deviation of the device’s life are: 2

V (X ) = 8 − 2 = 4

σ = V (X ) = 2 Chapter 4. Statistical Models in Simulation

11

Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Expectations ∞

∞ 1 ∞ −x / 2 −x / 2 E ( X ) = ∫ xe dx = − xe + ∫ e − x / 2 dx = 2 0 2 0 0 ∞

∞ 1 ∞ −x / 2 + ∫ e − x / 2 dx = 2 E ( X ) = ∫ xe − x / 2 dx = − xe 0 2 0 0 Partial Integration

∫ u ( x)v' ( x)dx = u ( x)v( x) − ∫ u ' ( x)v( x)dx Set u ( x) = x v' ( x) = e − x / 2 ⇒ u ' ( x) = 1 v( x) = −2e − x / 2 ∞

1 ∞ −x/ 2 1 −x/ 2 ∞ E ( X ) = ∫ xe dx = ( x ⋅ (−2e ) − ∫ 1 ⋅(−2e − x / 2 )dx) 0 2 0 2 0 Chapter 4. Statistical Models in Simulation

12

Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Useful Statistical Models ƒ In this section, statistical models appropriate to some application areas are presented. The areas include: • • • •

Queueing systems Inventory and supply-chain systems Reliability and maintainability Limited data

Chapter 4. Statistical Models in Simulation

13

Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Useful models – Queueing Systems ƒ In a queueing system, interarrival and service-time patterns can be probabilistic. ƒ Sample statistical models for interarrival or service time distribution: • Exponential distribution: if service times are completely random • Normal distribution: fairly constant but with some random variability (either positive or negative) • Truncated normal distribution: similar to normal distribution but with restricted value. • Gamma and Weibull distribution: more general than exponential (involving location of the modes of pdf’s and the shapes of tails.)

Chapter 4. Statistical Models in Simulation

14

Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Useful models – Inventory and supply chain ƒ In realistic inventory and supply-chain systems, there are at least three random variables: • The number of units demanded per order or per time period • The time between demands • The lead time = Time between placing an order and the receipt of that order

ƒ Sample statistical models for lead time distribution: • Gamma

ƒ Sample statistical models for demand distribution: • Poisson: simple and extensively tabulated. • Negative binomial distribution: longer tail than Poisson (more large demands). • Geometric: special case of negative binomial given at least one demand has occurred.

Chapter 4. Statistical Models in Simulation

15

Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Useful models – Reliability and maintainability ƒ Time to failure (TTF) • Exponential: failures are random • Gamma: for standby redundancy where each component has an exponential TTF • Weibull: failure is due to the most serious of a large number of defects in a system of components • Normal: failures are due to wear

Chapter 4. Statistical Models in Simulation

16

Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Useful models – Other areas ƒ For cases with limited data, some useful distributions are: • Uniform • Triangular • Beta

ƒ Other distribution: • Bernoulli • Binomial • Hyperexponential

Chapter 4. Statistical Models in Simulation

17

Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Discrete Distributions ƒ Discrete random variables are used to describe random phenomena in which only integer values can occur. ƒ In this section, we will learn about: • • • •

Bernoulli trials and Bernoulli distribution Binomial distribution Geometric and negative binomial distribution Poisson distribution

Chapter 4. Statistical Models in Simulation

18

Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Bernoulli Trials and Bernoulli Distribution ƒ Bernoulli Trials: • Consider an experiment consisting of n trials, each can be a success or a failure. - Xj = 1 if the j-th experiment is a success - Xj = 0 if the j-th experiment is a failure

• The Bernoulli distribution (one trial):

xj =1 ⎧ p, p j ( x j ) = p( x j ) = ⎨ , = − = q : 1 p , x 0 j ⎩

j = 1,2,..., n

• where E(Xj) = p and V(Xj) = p(1-p) = pq

ƒ Bernoulli process: • The n Bernoulli trials where trails are independent: p(x1,x2,…, xn) = p1(x1)p2(x2) … pn(xn) Chapter 4. Statistical Models in Simulation

19

Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Binomial Distribution ƒ The number of successes in n Bernoulli trials, X, has a binomial distribution.

⎧⎛ n ⎞ x n− x ⎪⎜ ⎟ p q , x = 0,1,2,..., n p( x) = ⎨⎜⎝ x ⎟⎠ ⎪0, otherwise ⎩ The number of outcomes having the required number of successes and failures

Probability that there are x successes and (n-x) failures

• The mean, E(x) = p + p + … + p = n*p • The variance, V(X) = pq + pq + … + pq = n*pq

Chapter 4. Statistical Models in Simulation

20

Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Geometric Distribution

ƒ Geometric distribution • The number of Bernoulli trials, X, to achieve the 1st success:

⎧ q x −1 p, x = 0,1,2,..., n p ( x) = ⎨ otherwise ⎩0, • E(x) = 1/p, and V(X) = q/p2

Chapter 4. Statistical Models in Simulation

21

Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Negative Binomial Distribution

ƒ Negative binomial distribution • The number of Bernoulli trials, X, until the kth success • If Y is a negative binomial distribution with parameters p and k, then:

⎧⎛ y − 1⎞ y − k k ⎟⎟ q p , y = k , k + 1, k + 2,... ⎪⎜⎜ p ( x) = ⎨⎝ k − 1⎠ ⎪0, otherwise ⎩ ⎛ y − 1⎞ y − k k −1 ⎟⎟ q p ⋅ {p p ( x) = ⎜⎜ k − 1⎠ ⎝1 442443 k − th success (k-1 ) successes

• E(Y) = k/p, and V(X) = kq/p2

Chapter 4. Statistical Models in Simulation

22

Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Poisson Distribution ƒ Poisson distribution describes many random processes quite well and is mathematically quite simple. • where α > 0, pdf and cdf are:

⎧α x −α ⎪ p( x) = ⎨ x! e , x = 0,1,... ⎪⎩0, otherwise

x

α i e −α

i =0

i!

F ( x) = ∑

• E(X) = α = V(X)

Chapter 4. Statistical Models in Simulation

23

Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Poisson Distribution ƒ Example: A computer repair person is “beeped” each time there is a call for service. The number of beeps per hour ~ Poisson(α = 2 per hour). • The probability of three beeps in the next hour: p(3) = 23/3! e-2 = 0.18 also, p(3) = F(3) – F(2) = 0.857-0.677=0.18 • The probability of two or more beeps in a 1-hour period: p(2 or more) = 1 – ( p(0) + p(1) ) = 1 – F(1) = 0.594

Chapter 4. Statistical Models in Simulation

24

Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Continuous Distributions ƒ Continuous random variables can be used to describe random phenomena in which the variable can take on any value in some interval. ƒ In this section, the distributions studied are: • • • • •

Uniform Exponential Weibull Normal Lognormal

Chapter 4. Statistical Models in Simulation

25

Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Uniform Distribution ƒ A random variable X is uniformly distributed on the interval (a, b), U(a, b), if its pdf and cdf are:

x
⎧ 1 ⎪ , a≤ x≤b f ( x) = ⎨ b − a ⎪⎩0, otherwise ƒ Properties

• P(x1 < X < x2) is proportional to the length of the interval [F(x2) – F(x1) = (x2-x1)/(b-a)] • E(X) = (a+b)/2 V(X) = (b-a)2/12

ƒ U(0,1) provides the means to generate random numbers, from which random variates can be generated. Chapter 4. Statistical Models in Simulation

26

Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Exponential Distribution ƒ A random variable X is exponentially distributed with parameter λ > 0 if its pdf and cdf are: x<0 ⎧⎪0, F ( x ) = ⎨ x − λt − λx ⎪⎩∫0 λe dt = 1 − e , x ≥ 0

⎧λe − λx , x ≥ 0 f ( x) = ⎨ elsewhere ⎩0, • E(X) = 1/λ V(X) = 1/λ2

Chapter 4. Statistical Models in Simulation

27

Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Exponential Distribution • Used to model interarrival times when arrivals are completely random, and to model service times that are highly variable • For several different exponential pdf’s (see figure), the value of intercept on the vertical axis is λ, and all pdf’s eventually intersect.

Chapter 4. Statistical Models in Simulation

28

Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Exponential Distribution ƒ Memoryless property • For all s and t greater or equal to 0: P(X > s+t | X > s) = P(X > t) • Example: A lamp ~ exp(λ = 1/3 per hour), hence, on average, 1 failure per 3 hours. - The probability that the lamp lasts longer than its mean life is: P(X > 3) = 1-(1-e-3/3) = e-1 = 0.368

- The probability that the lamp lasts between 2 to 3 hours is: P(2 <= X <= 3) = F(3) – F(2) = 0.145

- The probability that it lasts for another hour given it is operating for 2.5 hours: P(X > 3.5 | X > 2.5) = P(X > 1) = e-1/3 = 0.717

Chapter 4. Statistical Models in Simulation

29

Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Exponential Distribution ƒ Memoryless property

P( X > s + t ) P( X > s + t | X > s) = P( X > s) e −λ ( s +t ) = − λs e = e − λt = P( X > t )

Chapter 4. Statistical Models in Simulation

30

Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Weibull Distribution ƒ

A random variable X has a Weibull distribution if its pdf has the form: ⎧ β ⎛ x −ν ⎞ β −1 ⎡ ⎛ x −ν ⎞ β ⎤ ⎪ exp⎢− ⎜ ⎟ ⎥, x ≥ ν f ( x) = ⎨α ⎜⎝ α ⎟⎠ α ⎠ ⎥⎦ ⎢⎣ ⎝ ⎪0, otherwise ⎩

ƒ

3 parameters: • • •

ƒ

(−∞ < ν < ∞)

Location parameter: υ, Scale parameter: β , (β > 0) Shape parameter. α, (> 0)

Example: υ = 0 and α = 1:

Chapter 4. Statistical Models in Simulation

31

Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Weibull Distribution ƒ Weibull Distribution ⎧ β ⎛ x −ν ⎞ β −1 ⎡ ⎛ x −ν ⎞ β ⎤ ⎪ exp ⎢− ⎜ ⎟ ⎥, x ≥ ν f ( x) = ⎨α ⎜⎝ α ⎟⎠ ⎢⎣ ⎝ α ⎠ ⎥⎦ ⎪0, otherwise ⎩

ƒ For β = 1, υ=0 1 −x ⎧1 α ⎪ f ( x) = ⎨α exp , x ≥ ν ⎪⎩0, otherwise

When β = 1, X ~ exp(λ = 1/α)

Chapter 4. Statistical Models in Simulation

32

Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Normal Distribution ƒ A random variable X is normally distributed if it has the pdf: ⎡ 1 ⎛ x − µ ⎞2 ⎤ 1 f ( x) = exp ⎢− ⎜ ⎟ ⎥, − ∞ < x < ∞ σ 2π ⎢⎣ 2 ⎝ σ ⎠ ⎥⎦ • Mean: − ∞ < µ < ∞ 2 • Variance: σ > 0 • Denoted as X ~ N(µ,σ2)

ƒ Special properties: f ( x) = 0, and lim f ( x) = 0 • xlim → −∞ x →∞ • f(µ-x)=f(µ+x); the pdf is symmetric about µ. • The maximum value of the pdf occurs at x = µ; the mean and mode are equal.

Chapter 4. Statistical Models in Simulation

33

Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Normal Distribution ƒ Evaluating the distribution: • Use numerical methods (no closed form) • Independent of µ and σ, using the standard normal distribution: Z ~ N(0,1) • Transformation of variables: let Z = (X - µ) / σ,

x−µ ⎞ ⎛ F ( x ) = P ( X ≤ x ) = P⎜ Z ≤ ⎟ σ ⎠ ⎝ ( x−µ ) /σ 1 −z2 / 2 =∫ e dz −∞ 2π =∫

( x−µ ) /σ

−∞

Chapter 4. Statistical Models in Simulation

φ ( z )dz = Φ( xσ− µ )

34

, where Φ( z ) = ∫

z

−∞

1 −t 2 / 2 e dt 2π

Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Normal Distribution ƒ Example: The time required to load an oceangoing vessel, X, is distributed as N(12,4), µ=12, σ=2 • The probability that the vessel is loaded in less than 10 hours:

⎛ 10 − 12 ⎞ F (10) = Φ⎜ ⎟ = Φ(−1) = 0.1587 ⎝ 2 ⎠ - Using the symmetry property, Φ(1) is the complement of Φ (-1)

Chapter 4. Statistical Models in Simulation

35

Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Lognormal Distribution ƒ A random variable X has a lognormal distribution if its pdf has the form: ⎧ 1 ⎡ (ln x − µ ) 2 ⎤ exp ⎢− ⎪ ⎥, x > 0 2 f ( x) = ⎨ 2π σx 2 σ ⎣ ⎦ ⎪0, otherwise ⎩

µ=1,

σ2=0.5,1,2.

• Mean E(X) = eµ+σ /2 2 2 • Variance V(X) = e2µ+σ /2 (eσ - 1) 2

ƒ Relationship with normal distribution • When Y ~ N(µ, σ2), then X = eY ~ lognormal(µ, σ2) • Parameters µ and σ2 are not the mean and variance of the lognormal random variable X

Chapter 4. Statistical Models in Simulation

36

Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Poisson Distribution ƒ Definition: N(t) is a counting function that represents the number of events occurred in [0,t]. ƒ A counting process {N(t), t>=0} is a Poisson process with mean rate λ if: • Arrivals occur one at a time • {N(t), t>=0} has stationary increments • {N(t), t>=0} has independent increments

ƒ Properties

(λ t ) n − λ t P[ N (t ) = n] = e , n!

for t ≥ 0 and n = 0,1,2,...

• Equal mean and variance: E[N(t)] = V[N(t)] = λt • Stationary increment: The number of arrivals in time s to t is also Poisson-distributed with mean λ(t-s)

Chapter 4. Statistical Models in Simulation

37

Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Poisson Distribution – Interarrival Times ƒ

Consider the interarrival times of a Possion process (A1, A2, …), where Ai is the elapsed time between arrival i and arrival i+1



The 1st arrival occurs after time t iff there are no arrivals in the interval [0,t], hence: P(A1 > t) = P(N(t) = 0) = e-λt P(A1 <= t) = 1 – e-λt [cdf of exp(λ)]



Interarrival times, A1, A2, …, are exponentially distributed and independent with mean 1/λ Arrival counts ~ Poisson(λ)

Interarrival time ~ Exp(1/λ)

Stationary & Independent

Chapter 4. Statistical Models in Simulation

Memoryless

38

Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Poisson Distribution – Splitting and Pooling ƒ Splitting: • Suppose each event of a Poisson process can be classified as Type I, with probability p and Type II, with probability 1-p. • N(t) = N1(t) + N2(t), where N1(t) and N2(t) are both Poisson processes with rates λ p and λ (1-p) N(t) ~ Poisson(λ)

λ

λp λ(1-p)

N1(t) ~ Poisson[λp] N2(t) ~ Poisson[λ(1-p)]

ƒ Pooling: • Suppose two Poisson processes are pooled together • N1(t) + N2(t) = N(t), where N(t) is a Poisson processes with rates λ1 + λ2 N1(t) ~ Poisson[λ1] N2(t) ~ Poisson[λ2] Chapter 4. Statistical Models in Simulation

λ1

λ1 + λ2

N(t) ~ Poisson(λ1 + λ2)

λ2 39

Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Poisson Distribution – Empirical Distributions ƒ A distribution whose parameters are the observed values in a sample of data. • May be used when it is impossible or unnecessary to establish that a random variable has any particular parametric distribution. • Advantage: no assumption beyond the observed values in the sample. • Disadvantage: sample might not cover the entire range of possible values.

Chapter 4. Statistical Models in Simulation

40

Dr. Mesut Güneş

Computer Science, Informatik 4 Communication and Distributed Systems

Summary ƒ The world that the simulation analyst sees is probabilistic, not deterministic. ƒ In this chapter: • Reviewed several important probability distributions. • Showed applications of the probability distributions in a simulation context.

ƒ Important task in simulation modeling is the collection and analysis of input data, e.g., hypothesize a distributional form for the input data. ƒ Student should know: • Difference between discrete, continuous, and empirical distributions. • Poisson process and its properties.

Chapter 4. Statistical Models in Simulation

41

Dr. Mesut Güneş

Simulation - I4 * Lehrstuhl fuer Informatik * RWTH Aachen

Computer Science, Informatik 4. Communication and Distributed Systems ..... In this section, we will learn about: • Bernoulli trials and Bernoulli distribution.

345KB Sizes 1 Downloads 176 Views

Recommend Documents

Simulation - I4 * Lehrstuhl fuer Informatik * RWTH Aachen
Computer Science, Informatik 4. Communication and Distributed Systems. 5. Chapter 4. Statistical Models in Simulation. Discrete Random Variables.

Informatik - GitHub
to obtain the academic degree Bachelor of Science submitted to the Faculty Physics, Mathematics and Computer Science of the Johannes Gutenberg-University Mainz on 2015-09-01 by [email protected]. Version: 1.2-pdf ...... to bend this metric to a

Bachelorarbeit Informatik - GitHub
Oct 10, 2011 - the entire network, but it is not easy to get an overview of the current network state. ... able to raise it's share (Fig. 1.2). An InfiniBand interconnect is cost efficient ... The last section lays down the management services within

stadtplan aachen pdf
Sign in. Loading… Page 1. Whoops! There was a problem loading more pages. stadtplan aachen pdf. stadtplan aachen pdf. Open. Extract. Open with. Sign In.

Seminar Aachen-Köln-Lille-Siegen
Mar 11, 2015 - For further information concerning this meeting please send ... The above two products are dual to each other for Bachmann's bi-brackets, in a.

Seminar Aachen-Köln-Lille-Siegen
Mar 11, 2015 - meeting please send an email to [email protected] or ... about the dimensions of its subspaces and its ultimate link to the algebra of.

unit-i4 2- BY Civildatas.blogspot.in.pdf
which they disintegrate. Specific Gravity: The specific gravity of most of the stones lies between 2.3 to 2.5. Thermal Movement: Thermal movements alone are ...

The RWTH Machine Translation System
Jun 19, 2006 - We present the statistical machine translation system used by RWTH in the second TC-STAR evaluation. We give a short overview of the system as .... tactically and semantically meaningful sentence-like units, which pass all ...

Das-Erstellen-Eines-Informatik-Controllingkonzeptes-German ...
Study On-line and Download Ebook TWiki: Professionelle Wikis Erstellen (German Edition). Download Wolf Marbach ebook. file at no cost and this file pdf ...

Report on Disruptive Technologies for years ... - Institut für Informatik
for years 2020-2030. Version August ... 3. Table of contents of Appendix Report on Disruptive. Technologies. 1. ..... problems in computer science. Quantum ...

The RWTH Phrase-based Statistical Machine ...
lations of automatic speech recognition output for Chinese-. English and Japanese-English. ..... We call this the IBM1 deletion model. It counts all source ..... on Language Engineering, Center for Language and Speech. Processing, Baltimore ...

Aachen, Germany - December 2016.pdf
Sign in. Loading… Whoops! There was a problem loading more pages. Retrying... Whoops! There was a problem previewing this document. Retrying.

Report on Disruptive Technologies for years ... - Institut für Informatik
More lack of abilities of current computers can be found in the area of unsolved problems in computer science. Quantum Computing might solve some of these.

FAKULT¨AT F¨UR INFORMATIK Adding C++ Support to ... - GitHub
Sep 16, 2013 - of the language are taken into account in an attempt to build a better C++ language flavor. Several analyses are ... 3.1.10 OtherMPSInstruments . ..... In this work we describe a C++ programming language implementation6 on top of mbedd

The RWTH Statistical Machine Translation System for ...
Lehrstuhl für Informatik 6, Computer Science Department. RWTH Aachen ... machine translation system that was used in the evaluation campaign of the ...

EB-12-V32-I4-P329.pdf
from the social utility function (Harsanyi social function). ... K and human capital H. The production function of a representative firm is ... EB-12-V32-I4-P329.pdf.

DH I4 V17 December 2015.pdf
... and social media in. general. Watching people on their. phones all the time is distracting. to everyone around them. People are missing some of the. greatest ...

The RWTH Phrase-based Statistical Machine ... - Semantic Scholar
The RWTH Phrase-based Statistical Machine Translation System ... machine translation system that was used in the evaluation ..... OOVs (Running Words). 133.

DH I4 V17 December 2015.pdf
Page 1 of 7. AG clubs help spread holiday cheer. Changes to SAT. format. important for. colleges and. students. Avon Grove High School, West Grove, Pa. The Devil's Herald. Friday, December 18, 2015 Volume 17 Issue 4. HIGH SCHOOL LIFE. By. Ward Taraba

Welkenrather Strafie 120 - D - 52074 Aachen
tems to be included in the German or European wind loading code. ... given extemal pressure distribution on e. g. the wind parallel wall the pressure distribu-.

Welkenrather Strafie 120 - D - 52074 Aachen
office building 'Stadttor Dusseldorf . The wind loads for the glass panels of the large atrium glass walls and the convective facades as determined by a wind ...