understanding randomness. many phenomena in the world are random: ◦ nobody can guess the outcome...

7
Chapter 11 Understanding Randomness

Upload: felix-spencer

Post on 21-Jan-2016

212 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Understanding Randomness.  Many phenomena in the world are random: ◦ Nobody can guess the outcome before it happens. ◦ When we want things to be fair,

Chapter 11

Understanding Randomness

Page 2: Understanding Randomness.  Many phenomena in the world are random: ◦ Nobody can guess the outcome before it happens. ◦ When we want things to be fair,

Many phenomena in the world are random:◦ Nobody can guess the outcome before it happens.◦ When we want things to be fair, usually some

underlying set of outcomes will be equally likely Example:

◦ Flip a fair coin. ◦ Roll a die

Randomness

Page 3: Understanding Randomness.  Many phenomena in the world are random: ◦ Nobody can guess the outcome before it happens. ◦ When we want things to be fair,

When we survey a small group of people, how do we know this sample is truly representative of the overall population?

How do insurance companies, casinos determine their profit even though the outcomes are truly random?

Questions

Page 4: Understanding Randomness.  Many phenomena in the world are random: ◦ Nobody can guess the outcome before it happens. ◦ When we want things to be fair,

The best ways we know to generate data that give a fair and accurate picture of the world rely on randomness, and the ways in which we draw conclusions from those data depend on the randomness, too.

Why Be Random?

Page 5: Understanding Randomness.  Many phenomena in the world are random: ◦ Nobody can guess the outcome before it happens. ◦ When we want things to be fair,

It’s surprisingly difficult to generate random values even when they’re equally likely.

Computers have become a popular way to generate random numbers. ◦ Even though they often do much better than

humans, computers can’t generate truly random numbers either.

◦ Since computers follow programs, the “random” numbers we get from computers are really pseudorandom.

◦ Fortunately, pseudorandom values are good enough for most purposes.

It’s Not Easy Being Random

Page 6: Understanding Randomness.  Many phenomena in the world are random: ◦ Nobody can guess the outcome before it happens. ◦ When we want things to be fair,

We need an imitation of a real process so we can manipulate and control it. We are going to simulate reality.

Simulations can provide us with useful insights about the real world.

We use Table of Random Digits to obtain simulated outcome.

A simulation model can help us investigate a question when we can’t (or don’t want to) collect data, and a mathematical answer is hard to calculate.

A Simulation

Page 7: Understanding Randomness.  Many phenomena in the world are random: ◦ Nobody can guess the outcome before it happens. ◦ When we want things to be fair,

Page 299 – 301 Problem # 7, 9, 31.

Homework Assignment