review 2
play

Review (2) Area de Ingeniera Telemtica http://www.tlm.unavarra.es - PowerPoint PPT Presentation

rea de Ingeniera Telemtica PROTOCOLOS Y SERVICIOS DE INTERNET Review (2) Area de Ingeniera Telemtica http://www.tlm.unavarra.es Mster en Tecnologas Informticas Contents PROTOCOLOS Y SERVICIOS DE rea de Ingeniera Telemtica


  1. Área de Ingeniería Telemática PROTOCOLOS Y SERVICIOS DE INTERNET Review (2) Area de Ingeniería Telemática http://www.tlm.unavarra.es Máster en Tecnologías Informáticas

  2. Contents PROTOCOLOS Y SERVICIOS DE Área de Ingeniería Telemática • Probability review and tips – Random variables INTERNET – Random number generation – Basic modeling – Poisson process

  3. Contents PROTOCOLOS Y SERVICIOS DE Área de Ingeniería Telemática • Probability review and tips – Random variables INTERNET – Random number generation – Basic modeling – Poisson process

  4. ¿ Why random variables ? PROTOCOLOS Y SERVICIOS DE Área de Ingeniería Telemática • Imagine the time it takes a user to download a Web resource • It depends on: The size of the resource, how fast the web server disk is, the load the disk is serving, how powerful the CPU of the INTERNET server is, how fast the server bus is, how many other devices are using that bus, how many other processes are using the CPU and how, how much RAM/L1-3cache the server has and whether it is paging/swapping, how the web server writes in the TCP buffer (size of the chunks), the flow control TCP buffer size in the client, the buffer size used by the TCP server, how much traffic (and how) is the server sending/receiving through the NIC, the network between client and server (delay, loss or not for each packet), the Path MTU, the timer values configured in the server and client (delayed ACK, retransmission timers), the power of the client CPU, the implementation of TCP in the client, how the client retrieves the data from the TCP buffer, the RAM size at the client, how many other processes are running in the client, etc etc etc … • Too many parameters !!!! • It is much easier to describe the world in a probabilistic way than in a deterministic one

  5. Probability PROTOCOLOS Y SERVICIOS DE Área de Ingeniería Telemática • A random variable (r.v.) X is the outcome of a random event expressed as a numeric value • The Cummulative Distribution Function (CDF) provides the fixed probability that the r.v. will not exceed a value x INTERNET CDF ( X ) " F X ( x ) " P ( X # x ) • The Complementary Cummulative Distribution Function (CCDF) : CCDF ( X ) " F X ( x ) " 1 # F X ( x ) " P ( X > x ) • Discrete r.v. : takes values from a finite or a countably infinite set of values 0.4 • Probability Distribution or Probability Mass 0.35 Function of a discrete r.v. : 0.3 0.25 p(x) 0.2 p X [ x i ] " P ( X = x i ) 0.15 0.1 " 0.05 [ ] " 0 p X x i # [ ] p X x i = 1 0 0 1 2 3 4 5 6 7 i = 1 x

  6. Continuous rr.vv. PROTOCOLOS Y SERVICIOS DE Área de Ingeniería Telemática • Continuous r.v. : takes values from an uncountably infinite set of values R X • Probability Density Function of a f X ( x ) " dF X ( x ) = dP ( X # x ) continuous r.v. : INTERNET dx dx x 2 $ P ( x 1 < X " x 2 ) = F X ( x 2 ) # F X ( x 1 ) = f X ( u ) du x 1 " f X ( x ) dx = 1 ( ) f X ( x ) " 0 x # R X R X P ( x 1 < X " x 2 ) = P ( x 1 " X " x 2 ) = P ( x 1 " X < x 2 ) = P ( x 1 < X < x 2 ) The probability is in the area

  7. Moments PROTOCOLOS Y SERVICIOS DE Área de Ingeniería Telemática • Expected value of a continuous random variable X (a.k.a. expectation, mean, first moment): # $ E [ X ] " µ X " u f X ( u ) du INTERNET - # • n th moment of X: # E [ X n ] " $ u n f X ( u ) du - # • Related with the variability is the variance : 2 = E X 2 2 p ( u ) du 2 = E ( X $ µ X ) 2 % [ ] = [ ] $ E X [ ] $ µ X 2 & = E X 2 ( ) ( ) [ ] Var ( X ) " # X u $ µ u $% • Standard deviation : Var ( X ) " X # c v = " X • Coefficient of variation: µ X

  8. Commonly Encountered Distributions PROTOCOLOS Y SERVICIOS DE Área de Ingeniería Telemática Exponential p ( x ) = ! e ! ! x x > 0 INTERNET 2 " % ! 1 x ! µ 1 $ ' 2 # ! & Normal p ( x ) = e !" < x < " 2 " ! ! x ! ! x > ! p ( x ) = ( x ! ! ) " ! 1 e # Gamma # " " ( " ) ! x ! ! !" < x < " Extreme " F ( x ) = e ! e 2 ! 1 " log x ! µ % 1 $ ' Lognormal 2 # ! & p ( x ) = e x > 0 x ! 2 " p ( x ) = ! k ! x ! ! ! 1 Pareto x > k b ! x " $ % p ( x ) = bx b ! 1 ' # a & a b e x > 0 Weibull

  9. Contents PROTOCOLOS Y SERVICIOS DE Área de Ingeniería Telemática • Probability review and tips – Random variables INTERNET – Random number generation – Basic modeling – Poisson process

  10. Random number generation PROTOCOLOS Y SERVICIOS DE Área de Ingeniería Telemática • We first try to generate random numbers from a uniform distribution • Independent INTERNET f ( x ) 1 1 0

  11. Pseudo-random numbers PROTOCOLOS Y SERVICIOS DE Área de Ingeniería Telemática • They look like random • Known the seed they are predictable • They even have a period INTERNET • Example: Linear Congruential Method ( ) mod m X i + 1 = aX i + c • What about a non uniform distribution?

  12. Inverse-transform Technique PROTOCOLOS Y SERVICIOS DE Área de Ingeniería Telemática • F(x) is the CDF of the target r.v. • X uniform r.v. in [0,1] • Generate a sample r 1 from X INTERNET • Use the inverse function to obtain x 1 = F -1 (x) • x 1 is a sample from a r.v. with CDF F(x) • Of course it is easier if F(x) has a simple analytical inverse

  13. Example: Exponential distribution PROTOCOLOS Y SERVICIOS DE Área de Ingeniería Telemática f ( x ) = " e # " x F ( x ) = 1 " e " # x INTERNET " # X R = 1 " e " # X 1 " R = e ln(1 " R ) = " # X X = " ln(1 " R ) = F " 1 ( R ) # ó X = " ln( R ) = F " 1 ( R ) # (Both R and 1-R are uniform rr.vv.)

  14. Inverse-transform Technique PROTOCOLOS Y SERVICIOS DE Área de Ingeniería Telemática • “Easy” distributions: Triangular, Weibull, Pareto • F(x) could come from experimental samples – Use interpolation for a little improvement INTERNET • For discrete rr.vv. only a table is needed • “Hard” ones: Gamma, Normal, Beta • Numerical approximations to the CDF or to the inverse CDF could also be useful

  15. Techniques based on properties PROTOCOLOS Y SERVICIOS DE Área de Ingeniería Telemática Example: Gaussian distribution Z 1 and Z 2 rr.vv. ϕ (0,1) • • They are the rectangular coordinates of a point (Z 1 ,Z 2 ) INTERNET • In polar coordinates: # ( ) Z 1 = B cos " $ ( ) Z 2 = B sin " % • The radial coordinate B is a r.v. from an exponential distribution • The angular coordinate is a r.v. from an uniform distribution • They are independent So two samples from ϕ (0,1) can be obtained with two samples from • an uniform distribution ( ) cos 2 # R 2 ( ) Z 1 = " 2ln R 1 ( ) sin 2 # R 2 ( ) Z 2 = " 2ln R 1 And from Y = ϕ ( µ , σ ) : • Y = µ + " Z i

  16. Contents PROTOCOLOS Y SERVICIOS DE Área de Ingeniería Telemática • Probability review and tips – Random variables INTERNET – Random number generation – Basic modeling – Poisson process

  17. Building a model PROTOCOLOS Y SERVICIOS DE Área de Ingeniería Telemática • Sample the phenomenon • Select a known distribution that “is similar” • Estimate the parameters of this distribution INTERNET • Test to see how good the fit is for the original purpose

  18. Building a model: example PROTOCOLOS Y SERVICIOS DE Área de Ingeniería Telemática • Sample the phenomenon – Duration of phone calls • Select a known distribution that “is similar” INTERNET • Estimate the parameters of this distribution • Test to see how good the fit is for the original purpose Call durations (minutes) 8.2947495235 2.1268147168 0.5884509608 3.5020706914 5.2125237671 2.8848404480 6.2123475174 4.2605010872 …

  19. Building a model: example PROTOCOLOS Y SERVICIOS DE Área de Ingeniería Telemática • Sample the phenomenon • Select a known distribution that “is similar” – Example: visual inspection … mmm … looks like exponential INTERNET • Estimate the parameters of this distribution • Test to see how good the fit is for the original purpose 0.35 Call durations (minutes) 0.3 Probability density function 8.2947495235 0.25 2.1268147168 0.5884509608 0.2 3.5020706914 0.15 5.2125237671 0.1 2.8848404480 0.05 6.2123475174 4.2605010872 0 0 1 2 3 4 5 6 7 8 9 10 … Call duration (min)

  20. Building a model: example PROTOCOLOS Y SERVICIOS DE Área de Ingeniería Telemática • Sample the phenomenon • Select a known distribution that “is similar” P [ X i > t ] = e " # t • Estimate the parameters of this distribution INTERNET – Example: for exponential distribution, CCDF in a log-linear plot – Use least squares fitting to estimate the slope • Test to see how good the fit is for the original purpose 1 Call durations (minutes) 8.2947495235 2.1268147168 0.5884509608 P(X>x) 3.5020706914 5.2125237671 0.1 2.8848404480 6.2123475174 4.2605010872 0 1 2 3 4 5 6 7 8 9 10 … Call duration (min)

  21. Drawing a distribution PROTOCOLOS Y SERVICIOS DE Área de Ingeniería Telemática Discrete r.v. • Obtain samples • Compute histogram INTERNET 200 150 Dice result count Count 1 162 100 2 177 3 171 50 4 167 5 155 0 0 1 2 3 4 5 6 7 6 168 Dice result

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend