CCST9017 Hidden Order in Daily Life: A Mathematical Perspective. Lecture 8. Statistical Frauds and Benford s Law

Size: px
Start display at page:

Download "CCST9017 Hidden Order in Daily Life: A Mathematical Perspective. Lecture 8. Statistical Frauds and Benford s Law"

Transcription

1 CCST9017 Hidden Order in Daily Life: A Mathematical Perspective Lecture 8 Statistical Frauds and Benford s Law Dr. S. P. Yung (9017) Dr. Z. Hua (9017B) Department of Mathematics, HKU

2 Outline Recall on probabilities rules Simple application Example of Traps Fabricated list Probability of 5 heads or 5 tails in a row from 120 tosses Benford s Law Heuristic Reason for Benford s Law 2

3 Recall on probabilities rules All other possible outcomes of an event A is called A complement, denoted as A C. P(A) denotes the probability that A occurs. Rule 0 : 0 P (A) 1. Rule 1 : P(A) + P(A C ) = 1. Rule 2 : If A and B are mutually exclusive, then P(A or B) = P(A) + P(B). Rule 3 : If A and B are independent, then P(A and B) = P(A) x P(B). Rule 4 : If B is a subset of A, then P(B) P(A). 3

4 Simple application Recall P(A) = # of occurrences of event A Total # of occurrences of all possible events It can be used, say, to find the number of fishes in a lake. Let the number of fishes in the lake is N. We first catch, say 500 fishes from the lake, mark them with labels on their bodies and release them back to the lake. We then catch, say 200 fishes from the lake and find that 100 are marked by us before. Since the probability of catching a marked fish is given both by 500/N and 100/200, so they much be equal and so 500/N = 100/200. Thus we have N = 500*200/100=1000! 4

5 Simple application In general, suppose that the number of fishes in the lake is N and we catch M fishes, mark and release them, then M/N = m/n. If m marked fishes are found from catching n fishes, then N = Mn/m. * More example on Monte Carlo simulation: Computation of pi 5

6 Example of traps Suppose that a drug test is run in a city that has a large population, of which only 1% are drug junkies. Suppose that the drug test is very reliable and has a 98% successful detection rate (i.e., drug junkies test positive with probability 0.98, and non-drug-users test positive with probability 0.02). If a person is chosen randomly and was tested with positive result, that person is two times more likely to be a non-drug-user than a junky! To see this, let s draw a tree diagram: Example taken from The Difficulty of Faking Data, Theodore P. Hill. 6

7 Tree Diagram, Example of Traps Tested Negative Non-Junky 0.02 Tested Positive 0.02 Tested Negative 0.01 Junky 0.98 Tested Positive 7

8 Example of traps From Rule 3, the probability of a non-drug-user tested positive is: 0.99 * 0.02 = The probability of a junky tested positive is: 0.01 * 0.98 = , which is almost half of ! So if tested positive, it is twice likely to be a non-drug-user! This is one of the false-positives" in medical testings. 8

9 Example of traps In some cases, we could even manipulate our conclusion from the data. Suppose the followings are the prices of two fruits and we want to come to the conclusion of whether the fruit prices (a) remain unchanged, (b) increase, or (c) decrease Apples $1 $2 Oranges $2 $1 9

10 Example of traps (I) If we look at the average prices, the answer is (a) remain unchanged Apples $1 $2 Oranges $2 $1 Average Price $1.5 $1.5 10

11 Example of traps (II) If we look at the average price of percentages using the prices at 2000 as 100%, the answer is (b) 25% increase Apples 100% ($1) 200% ($2) Oranges 100% ($2) 50% ($1) Average price of percentages 100% ($1.5) 125% ($1.5) 11

12 Example of traps (III) If we look at the average price of percentages using the prices at 2010 as 100%, the answer is (c) 25% decrease Apples 50% ($1) 100% ($2) Oranges 200% ($2) 100% ($1) Average price of percentages 125% ($1.5) 100% ($1.5) 12

13 Example of traps So to avoid being mis-led in a statistical report, we should not only look at one single index, but also look at others as well, such as the mode (i.e. the value which occurs most frequently), the median (i.e. the value which is in the middle of the population, with 50% below and 50% over it), the mean (arithmetical average),.. etc. 13

14 Fabricated list One of the data sets is obtained by tossing a fair coin 120 times, with Head =1 and Tail =0, and another data set is a fabricated list. Can you distinguish them? Sequence A Sequence B 14

15 Fabricated list RHS is from simulating the process by EXCEL. rand() gives you a random number in (0,1). int(x) will give you the integral part of the number x. For example, int(0.9)=0 and int(1.1)=1. Thus the process of flipping a fair coin can be generated by using =int(2*rand()) in EXCEL. *Random number generation: Computational vs Physical Middle-square method of von Neumann 15

16 Which one is fabricated? We want to compute the probability of getting a successive run (heads or tails) of certain length in a given number of coin tosses. Say, we want to calculate the probability that in n fair coin tosses, a run of r heads or r tails occurs (r =< n). Let (i,j) be the situation that there are still j tosses to go and the last i tosses are of the same outcome, but so far no run of r heads or r tails. X.XH.H-.- or X.XT.T-.- i heads j toss left i tails j toss left 16

17 Which one is fabricated? Let u(i,j) be the probability of getting a run of either r heads or r tails in n fair coin tosses given the current situation is (i,j). Then we have the following recursive relation : u(i,j) =0.5*u(i+1,j-1) + 0.5*u(1,j-1). Toss the coin one more, then j will decrease by one to j-1. There are two possible situations: (i) the outcome is the same as the last i tosses then we are in situation (i+1,j-1) and the probability is 0.5. (ii) the outcome is different from the last i tosses then we have (1,j-1) and the probability is

18 Which one is fabricated? All the different situations are listed in the nodes of the diagram, and we want to find u(i,j) at those nodes. Chart that denotes all the situations: j i 18

19 Probability of 5 heads or 5 tails in a row from 120 tosses We already knew the following boundary conditions: u(i,0)=0 for i=1,2,.,r-1. u(r,j)=1 for j=0,1,2,.,n-r. For the probability of getting 5 heads or 5 tails in 120 fair coin tosses (n=120, r=5), we have u(1,0)=u(2,0)=.=u(4,0)=0. u(5,0)=u(5,1)=.=u(5,115)=1. 19

20 Computing u(i,1), i=1,2,3,4. From u(i,j)=0.5*u(i+1,j-1) + 0.5*u(1,j-1), we have u(4,1)=0.5*u(5,0)+0.5*u(1,0)=1/2 u(3,1)=0.5*u(4,0)+0.5*u(1,0)=0 u(2,1)=0.5*u(3,0)+0.5*u(1,0)=0 u(1,1)=0.5*u(2,0)+0.5*u(1,0)=0 20

21 Computing u(i,2), i=1,2,3,4. u(4,2)=0.5*u(5,1)+0.5*u(1,1)=1/2 u(3,2)=0.5*u(4,1)+0.5*u(1,1)=1/4 u(2,2)=0.5*u(3,1)+0.5*u(1,1)=0 u(1,2)=0.5*u(2,1)+0.5*u(1,1)=0 21

22 Computing u(i,3), i=1,2,3,4. u(4,3)=0.5*u(5,2)+0.5*u(1,2)=1/2 u(3,3)=0.5*u(4,2)+0.5*u(1,2)=1/4 u(2,3)=0.5*u(3,2)+0.5*u(1,2)=1/8 u(1,3)=0.5*u(2,2)+0.5*u(1,2)=0 22

23 Computing u(i,4), i=1,2,3,4. u(4,4)=0.5*u(5,3)+0.5*u(1,3)=1/2 u(3,4)=0.5*u(4,3)+0.5*u(1,3)=1/4 u(2,4)=0.5*u(3,3)+0.5*u(1,3)=1/8 u(1,4)=0.5*u(2,3)+0.5*u(1,3)=1/16 23

24 Computing u(i,5), i=1,2,3,4. u(4,5)=0.5*u(5,4)+0.5*u(1,4)=17/32 u(3,5)=0.5*u(4,4)+0.5*u(1,4)=9/32 u(2,5)=0.5*u(3,4)+0.5*u(1,4)=5/32 u(1,5)=0.5*u(2,4)+0.5*u(1,4)=3/32 and so on for the other cases. 24

25 Which one is fabricated? n The probability of getting 5 heads or 5 tails in 120 tosses is u(1,119)= which is very high; but this is only observed in Sequence B but not found in Sequence A. n The probability of not observing 5 heads or 5 tails in a row is 1- u(1,119)= around 1%. n Most likely, Sequence A is a fake one! 25

26 Benford s Law n n [Small observation, Big discovery] In 1881, a Mathematician Simon Newcomb noticed that the pages of logarithm tables with small initial digits were dirtier than those with larger initial digits, such that 1>2>3>4>5>6>7>8>9. In 1938, a Physicist Frank Benford proposed the Benford s law based on the empirical evident: P(The first significant digit = d) = log 10 (1+1/d) for d=1,2,3,4,5,6,7,8,9. 26

27 Frequency of First Digits, from 1 to 9. Digit Probability

28 Frequency of First Digits, from 1 to 9. From "The First-Digit Phenomenon" by T. P. Hill, American Scientist, July-August [The New York Times, Tuesday, August 4, 1998] 28

29 First Significant Digits in Tax Data 29

30 Detecting Frauds, Benford s Law. n An interesting application of Benford s Law is to help in detecting possible fraud in tax returns. n Empirical research in US has shown that the interest paid and received are very good fit to Benford s Law. So any deviations from the Benford s Law could be possible fraud cases. 30

31 Heuristic Reason for Benford s Law n Suppose in month 0, Hang Seng Index is 100. n We assume that it increases at a rate of 10 % per year (it in general can be any r%). n Let f(1) be the number of years for the index to reach 200 from 100, then we have 100*(1.1) f(1) =200 or f(1)=(log(200)-log(100)) / log(1+1/10) 31

32 Heuristic Reason for Benford s Law n Let f(2) be the number of years for the index to reach 300 from 200, then we have 200*(1.1) f(2) =300 or f(2)=(log(300)-log(200)) / log(1+1/10) n Thus we have for d=1,2,3,4,5,6,7,8,9 f(d) = (log(100(d+1))-log(100d)) /log(1+1/10) n We note that log(100d)=log(100)+log(d) and log(100(d+1))=log(100)+log(d+1). 32

33 Heuristic Reason for Benford s Law n Thus f(d) can be simplified as follows: f(d) = log(1+1/d) / log(1+1/10) n We also note that log(10)=1 and total time of all first digit changings is given by F:=f(1)+f(2)+ +f(9) =log(10)/log(1+1/10). n Therefore the probability of observing d (d=1,2,3,4,5,6,7,8,9) as the first digit is P(first digit=d) = f(d)/f = log(1+1/d). 33

34 Assignment 8 Due date: November 5 (before 1:00pm) Please put your assignment into the assignment box. Please write your tutorial group number on the right hand corner of your assignment. 1. Two checkers are employed for checking (proofreading) a book. Checker I found 30 errors (typos) and Checker II found 25 errors (typos). Suppose among those errors found by Checkers I & II, there are only 15 in common. Please find the total number of errors (typos) in the book. 34

35 Assignment 8 2.In the section Heuristic Reason for Benford s Law, suppose that in month 0, Hang Seng Index is 100 and it increases at a rate of r% (for some r >0) per year. Show that P(first digit = d) = log(1+1/d). 35

36 Reference Darrell Huff and Irving Geis, How to Lie With Statistics, Penguin, S.D.Levitt and S.J.Dubner, Freakonomics, Henk Tijms, Understanding Probability, Cambridge University Press, Ted Hill, The Difficulty of Faking Data, Chance Magazine, (3),

Probability Rules. 2) The probability, P, of any event ranges from which of the following?

Probability Rules. 2) The probability, P, of any event ranges from which of the following? Name: WORKSHEET : Date: Answer the following questions. 1) Probability of event E occurring is... P(E) = Number of ways to get E/Total number of outcomes possible in S, the sample space....if. 2) The probability,

More information

log

log Benford s Law Dr. Theodore Hill asks his mathematics students at the Georgia Institute of Technology to go home and either flip a coin 200 times and record the results, or merely pretend to flip a coin

More information

November 6, Chapter 8: Probability: The Mathematics of Chance

November 6, Chapter 8: Probability: The Mathematics of Chance Chapter 8: Probability: The Mathematics of Chance November 6, 2013 Last Time Crystallographic notation Groups Crystallographic notation The first symbol is always a p, which indicates that the pattern

More information

Lecture 6 Probability

Lecture 6 Probability Lecture 6 Probability Example: When you toss a coin, there are only two possible outcomes, heads and tails. What if we toss a coin two times? Figure below shows the results of tossing a coin 5000 times

More information

Probability. Ms. Weinstein Probability & Statistics

Probability. Ms. Weinstein Probability & Statistics Probability Ms. Weinstein Probability & Statistics Definitions Sample Space The sample space, S, of a random phenomenon is the set of all possible outcomes. Event An event is a set of outcomes of a random

More information

CS 237: Probability in Computing

CS 237: Probability in Computing CS 237: Probability in Computing Wayne Snyder Computer Science Department Boston University Lecture 5: o Independence reviewed; Bayes' Rule o Counting principles and combinatorics; o Counting considered

More information

ECON 214 Elements of Statistics for Economists

ECON 214 Elements of Statistics for Economists ECON 214 Elements of Statistics for Economists Session 4 Probability Lecturer: Dr. Bernardin Senadza, Dept. of Economics Contact Information: bsenadza@ug.edu.gh College of Education School of Continuing

More information

Simple Probability. Arthur White. 28th September 2016

Simple Probability. Arthur White. 28th September 2016 Simple Probability Arthur White 28th September 2016 Probabilities are a mathematical way to describe an uncertain outcome. For eample, suppose a physicist disintegrates 10,000 atoms of an element A, and

More information

, x {1, 2, k}, where k > 0. (a) Write down P(X = 2). (1) (b) Show that k = 3. (4) Find E(X). (2) (Total 7 marks)

, x {1, 2, k}, where k > 0. (a) Write down P(X = 2). (1) (b) Show that k = 3. (4) Find E(X). (2) (Total 7 marks) 1. The probability distribution of a discrete random variable X is given by 2 x P(X = x) = 14, x {1, 2, k}, where k > 0. Write down P(X = 2). (1) Show that k = 3. Find E(X). (Total 7 marks) 2. In a game

More information

Exam III Review Problems

Exam III Review Problems c Kathryn Bollinger and Benjamin Aurispa, November 10, 2011 1 Exam III Review Problems Fall 2011 Note: Not every topic is covered in this review. Please also take a look at the previous Week-in-Reviews

More information

Section 6.1 #16. Question: What is the probability that a five-card poker hand contains a flush, that is, five cards of the same suit?

Section 6.1 #16. Question: What is the probability that a five-card poker hand contains a flush, that is, five cards of the same suit? Section 6.1 #16 What is the probability that a five-card poker hand contains a flush, that is, five cards of the same suit? page 1 Section 6.1 #38 Two events E 1 and E 2 are called independent if p(e 1

More information

Raise your hand if you rode a bus within the past month. Record the number of raised hands.

Raise your hand if you rode a bus within the past month. Record the number of raised hands. 166 CHAPTER 3 PROBABILITY TOPICS Raise your hand if you rode a bus within the past month. Record the number of raised hands. Raise your hand if you answered "yes" to BOTH of the first two questions. Record

More information

Chapter 5 - Elementary Probability Theory

Chapter 5 - Elementary Probability Theory Chapter 5 - Elementary Probability Theory Historical Background Much of the early work in probability concerned games and gambling. One of the first to apply probability to matters other than gambling

More information

CSC/MATA67 Tutorial, Week 12

CSC/MATA67 Tutorial, Week 12 CSC/MATA67 Tutorial, Week 12 November 23, 2017 1 More counting problems A class consists of 15 students of whom 5 are prefects. Q: How many committees of 8 can be formed if each consists of a) exactly

More information

Probability and Randomness. Day 1

Probability and Randomness. Day 1 Probability and Randomness Day 1 Randomness and Probability The mathematics of chance is called. The probability of any outcome of a chance process is a number between that describes the proportion of

More information

Chapter 1. Probability

Chapter 1. Probability Chapter 1. Probability 1.1 Basic Concepts Scientific method a. For a given problem, we define measures that explains the problem well. b. Data is collected with observation and the measures are calculated.

More information

Grade 8 Math Assignment: Probability

Grade 8 Math Assignment: Probability Grade 8 Math Assignment: Probability Part 1: Rock, Paper, Scissors - The Study of Chance Purpose An introduction of the basic information on probability and statistics Materials: Two sets of hands Paper

More information

INDEPENDENT AND DEPENDENT EVENTS UNIT 6: PROBABILITY DAY 2

INDEPENDENT AND DEPENDENT EVENTS UNIT 6: PROBABILITY DAY 2 INDEPENDENT AND DEPENDENT EVENTS UNIT 6: PROBABILITY DAY 2 WARM UP Students in a mathematics class pick a card from a standard deck of 52 cards, record the suit, and return the card to the deck. The results

More information

Theory of Probability - Brett Bernstein

Theory of Probability - Brett Bernstein Theory of Probability - Brett Bernstein Lecture 3 Finishing Basic Probability Review Exercises 1. Model flipping two fair coins using a sample space and a probability measure. Compute the probability of

More information

A Probability Work Sheet

A Probability Work Sheet A Probability Work Sheet October 19, 2006 Introduction: Rolling a Die Suppose Geoff is given a fair six-sided die, which he rolls. What are the chances he rolls a six? In order to solve this problem, we

More information

Fraud Detection using Benford s Law

Fraud Detection using Benford s Law Fraud Detection using Benford s Law The Hidden Secrets of Numbers James J.W. Lee MBA (Iowa,US), B.Acc (S pore), FCPA (S pore), FCPA (Aust.), CA (M sia), CFE, CIA, CISA, CISSP, CGEIT Contents I. History

More information

Independent Events B R Y

Independent Events B R Y . Independent Events Lesson Objectives Understand independent events. Use the multiplication rule and the addition rule of probability to solve problems with independent events. Vocabulary independent

More information

Benford s Law: Tables of Logarithms, Tax Cheats, and The Leading Digit Phenomenon

Benford s Law: Tables of Logarithms, Tax Cheats, and The Leading Digit Phenomenon Benford s Law: Tables of Logarithms, Tax Cheats, and The Leading Digit Phenomenon Michelle Manes (manes@usc.edu) USC Women in Math 24 April, 2008 History (1881) Simon Newcomb publishes Note on the frequency

More information

Contents 2.1 Basic Concepts of Probability Methods of Assigning Probabilities Principle of Counting - Permutation and Combination 39

Contents 2.1 Basic Concepts of Probability Methods of Assigning Probabilities Principle of Counting - Permutation and Combination 39 CHAPTER 2 PROBABILITY Contents 2.1 Basic Concepts of Probability 38 2.2 Probability of an Event 39 2.3 Methods of Assigning Probabilities 39 2.4 Principle of Counting - Permutation and Combination 39 2.5

More information

Such a description is the basis for a probability model. Here is the basic vocabulary we use.

Such a description is the basis for a probability model. Here is the basic vocabulary we use. 5.2.1 Probability Models When we toss a coin, we can t know the outcome in advance. What do we know? We are willing to say that the outcome will be either heads or tails. We believe that each of these

More information

Chapter 1. Probability

Chapter 1. Probability Chapter 1. Probability 1.1 Basic Concepts Scientific method a. For a given problem, we define measures that explains the problem well. b. Data is collected with observation and the measures are calculated.

More information

( ) Online MC Practice Quiz KEY Chapter 5: Probability: What Are The Chances?

( ) Online MC Practice Quiz KEY Chapter 5: Probability: What Are The Chances? Online MC Practice Quiz KEY Chapter 5: Probability: What Are The Chances? 1. Research on eating habits of families in a large city produced the following probabilities if a randomly selected household

More information

STAT 155 Introductory Statistics. Lecture 11: Randomness and Probability Model

STAT 155 Introductory Statistics. Lecture 11: Randomness and Probability Model The UNIVERSITY of NORTH CAROLINA at CHAPEL HILL STAT 155 Introductory Statistics Lecture 11: Randomness and Probability Model 10/5/06 Lecture 11 1 The Monty Hall Problem Let s Make A Deal: a game show

More information

4.1 Sample Spaces and Events

4.1 Sample Spaces and Events 4.1 Sample Spaces and Events An experiment is an activity that has observable results. Examples: Tossing a coin, rolling dice, picking marbles out of a jar, etc. The result of an experiment is called an

More information

Probability Models. Section 6.2

Probability Models. Section 6.2 Probability Models Section 6.2 The Language of Probability What is random? Empirical means that it is based on observation rather than theorizing. Probability describes what happens in MANY trials. Example

More information

Probability MAT230. Fall Discrete Mathematics. MAT230 (Discrete Math) Probability Fall / 37

Probability MAT230. Fall Discrete Mathematics. MAT230 (Discrete Math) Probability Fall / 37 Probability MAT230 Discrete Mathematics Fall 2018 MAT230 (Discrete Math) Probability Fall 2018 1 / 37 Outline 1 Discrete Probability 2 Sum and Product Rules for Probability 3 Expected Value MAT230 (Discrete

More information

Probability and the Monty Hall Problem Rong Huang January 10, 2016

Probability and the Monty Hall Problem Rong Huang January 10, 2016 Probability and the Monty Hall Problem Rong Huang January 10, 2016 Warm-up: There is a sequence of number: 1, 2, 4, 8, 16, 32, 64, How does this sequence work? How do you get the next number from the previous

More information

The study of probability is concerned with the likelihood of events occurring. Many situations can be analyzed using a simplified model of probability

The study of probability is concerned with the likelihood of events occurring. Many situations can be analyzed using a simplified model of probability The study of probability is concerned with the likelihood of events occurring Like combinatorics, the origins of probability theory can be traced back to the study of gambling games Still a popular branch

More information

Probability I Sample spaces, outcomes, and events.

Probability I Sample spaces, outcomes, and events. Probability I Sample spaces, outcomes, and events. When we perform an experiment, the result is called the outcome. The set of possible outcomes is the sample space and any subset of the sample space is

More information

STOR 155 Introductory Statistics. Lecture 10: Randomness and Probability Model

STOR 155 Introductory Statistics. Lecture 10: Randomness and Probability Model The UNIVERSITY of NORTH CAROLINA at CHAPEL HILL STOR 155 Introductory Statistics Lecture 10: Randomness and Probability Model 10/6/09 Lecture 10 1 The Monty Hall Problem Let s Make A Deal: a game show

More information

November 8, Chapter 8: Probability: The Mathematics of Chance

November 8, Chapter 8: Probability: The Mathematics of Chance Chapter 8: Probability: The Mathematics of Chance November 8, 2013 Last Time Probability Models and Rules Discrete Probability Models Equally Likely Outcomes Crystallographic notation The first symbol

More information

CSI 23 LECTURE NOTES (Ojakian) Topics 5 and 6: Probability Theory

CSI 23 LECTURE NOTES (Ojakian) Topics 5 and 6: Probability Theory CSI 23 LECTURE NOTES (Ojakian) Topics 5 and 6: Probability Theory 1. Probability Theory OUTLINE (References: 5.1, 5.2, 6.1, 6.2, 6.3) 2. Compound Events (using Complement, And, Or) 3. Conditional Probability

More information

CHAPTER 2 PROBABILITY. 2.1 Sample Space. 2.2 Events

CHAPTER 2 PROBABILITY. 2.1 Sample Space. 2.2 Events CHAPTER 2 PROBABILITY 2.1 Sample Space A probability model consists of the sample space and the way to assign probabilities. Sample space & sample point The sample space S, is the set of all possible outcomes

More information

Honors Precalculus Chapter 9 Summary Basic Combinatorics

Honors Precalculus Chapter 9 Summary Basic Combinatorics Honors Precalculus Chapter 9 Summary Basic Combinatorics A. Factorial: n! means 0! = Why? B. Counting principle: 1. How many different ways can a license plate be formed a) if 7 letters are used and each

More information

Grade 6 Math Circles Fall Oct 14/15 Probability

Grade 6 Math Circles Fall Oct 14/15 Probability 1 Faculty of Mathematics Waterloo, Ontario Centre for Education in Mathematics and Computing Grade 6 Math Circles Fall 2014 - Oct 14/15 Probability Probability is the likelihood of an event occurring.

More information

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Study Guide for Test III (MATH 1630) Name MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Find the number of subsets of the set. 1) {x x is an even

More information

Discrete Structures for Computer Science

Discrete Structures for Computer Science Discrete Structures for Computer Science William Garrison bill@cs.pitt.edu 6311 Sennott Square Lecture #23: Discrete Probability Based on materials developed by Dr. Adam Lee The study of probability is

More information

Lecture 4: Chapter 4

Lecture 4: Chapter 4 Lecture 4: Chapter 4 C C Moxley UAB Mathematics 19 September 16 4.2 Basic Concepts of Probability Procedure Event Simple Event Sample Space 4.2 Basic Concepts of Probability Procedure Event Simple Event

More information

Week 3 Classical Probability, Part I

Week 3 Classical Probability, Part I Week 3 Classical Probability, Part I Week 3 Objectives Proper understanding of common statistical practices such as confidence intervals and hypothesis testing requires some familiarity with probability

More information

Chapter 5: Probability: What are the Chances? Section 5.2 Probability Rules

Chapter 5: Probability: What are the Chances? Section 5.2 Probability Rules + Chapter 5: Probability: What are the Chances? Section 5.2 + Two-Way Tables and Probability When finding probabilities involving two events, a two-way table can display the sample space in a way that

More information

Example 1. An urn contains 100 marbles: 60 blue marbles and 40 red marbles. A marble is drawn from the urn, what is the probability that the marble

Example 1. An urn contains 100 marbles: 60 blue marbles and 40 red marbles. A marble is drawn from the urn, what is the probability that the marble Example 1. An urn contains 100 marbles: 60 blue marbles and 40 red marbles. A marble is drawn from the urn, what is the probability that the marble is blue? Assumption: Each marble is just as likely to

More information

Probability and Statistics. Copyright Cengage Learning. All rights reserved.

Probability and Statistics. Copyright Cengage Learning. All rights reserved. Probability and Statistics Copyright Cengage Learning. All rights reserved. 14.2 Probability Copyright Cengage Learning. All rights reserved. Objectives What Is Probability? Calculating Probability by

More information

Empirical (or statistical) probability) is based on. The empirical probability of an event E is the frequency of event E.

Empirical (or statistical) probability) is based on. The empirical probability of an event E is the frequency of event E. Probability and Statistics Chapter 3 Notes Section 3-1 I. Probability Experiments. A. When weather forecasters say There is a 90% chance of rain tomorrow, or a doctor says There is a 35% chance of a successful

More information

Probability. March 06, J. Boulton MDM 4U1. P(A) = n(a) n(s) Introductory Probability

Probability. March 06, J. Boulton MDM 4U1. P(A) = n(a) n(s) Introductory Probability Most people think they understand odds and probability. Do you? Decision 1: Pick a card Decision 2: Switch or don't Outcomes: Make a tree diagram Do you think you understand probability? Probability Write

More information

Section 7.3 and 7.4 Probability of Independent Events

Section 7.3 and 7.4 Probability of Independent Events Section 7.3 and 7.4 Probability of Independent Events Grade 7 Review Two or more events are independent when one event does not affect the outcome of the other event(s). For example, flipping a coin and

More information

The next several lectures will be concerned with probability theory. We will aim to make sense of statements such as the following:

The next several lectures will be concerned with probability theory. We will aim to make sense of statements such as the following: CS 70 Discrete Mathematics for CS Fall 2004 Rao Lecture 14 Introduction to Probability The next several lectures will be concerned with probability theory. We will aim to make sense of statements such

More information

Answer each of the following problems. Make sure to show your work.

Answer each of the following problems. Make sure to show your work. Answer each of the following problems. Make sure to show your work. 1. A board game requires each player to roll a die. The player with the highest number wins. If a player wants to calculate his or her

More information

Tail. Tail. Head. Tail. Head. Head. Tree diagrams (foundation) 2 nd throw. 1 st throw. P (tail and tail) = P (head and tail) or a tail.

Tail. Tail. Head. Tail. Head. Head. Tree diagrams (foundation) 2 nd throw. 1 st throw. P (tail and tail) = P (head and tail) or a tail. When you flip a coin, you might either get a head or a tail. The probability of getting a tail is one chance out of the two possible outcomes. So P (tail) = Complete the tree diagram showing the coin being

More information

4.3 Rules of Probability

4.3 Rules of Probability 4.3 Rules of Probability If a probability distribution is not uniform, to find the probability of a given event, add up the probabilities of all the individual outcomes that make up the event. Example:

More information

Probability - Chapter 4

Probability - Chapter 4 Probability - Chapter 4 In this chapter, you will learn about probability its meaning, how it is computed, and how to evaluate it in terms of the likelihood of an event actually happening. A cynical person

More information

Probability. The MEnTe Program Math Enrichment through Technology. Title V East Los Angeles College

Probability. The MEnTe Program Math Enrichment through Technology. Title V East Los Angeles College Probability The MEnTe Program Math Enrichment through Technology Title V East Los Angeles College 2003 East Los Angeles College. All rights reserved. Topics Introduction Empirical Probability Theoretical

More information

Lenarz Math 102 Practice Exam # 3 Name: 1. A 10-sided die is rolled 100 times with the following results:

Lenarz Math 102 Practice Exam # 3 Name: 1. A 10-sided die is rolled 100 times with the following results: Lenarz Math 102 Practice Exam # 3 Name: 1. A 10-sided die is rolled 100 times with the following results: Outcome Frequency 1 8 2 8 3 12 4 7 5 15 8 7 8 8 13 9 9 10 12 (a) What is the experimental probability

More information

Math 14 Lecture Notes Ch. 3.3

Math 14 Lecture Notes Ch. 3.3 3.3 Two Basic Rules of Probability If we want to know the probability of drawing a 2 on the first card and a 3 on the 2 nd card from a standard 52-card deck, the diagram would be very large and tedious

More information

Section : Combinations and Permutations

Section : Combinations and Permutations Section 11.1-11.2: Combinations and Permutations Diana Pell A construction crew has three members. A team of two must be chosen for a particular job. In how many ways can the team be chosen? How many words

More information

Math 227 Elementary Statistics. Bluman 5 th edition

Math 227 Elementary Statistics. Bluman 5 th edition Math 227 Elementary Statistics Bluman 5 th edition CHAPTER 4 Probability and Counting Rules 2 Objectives Determine sample spaces and find the probability of an event using classical probability or empirical

More information

CC-13. Start with a plan. How many songs. are there MATHEMATICAL PRACTICES

CC-13. Start with a plan. How many songs. are there MATHEMATICAL PRACTICES CC- Interactive Learning Solve It! PURPOSE To determine the probability of a compound event using simple probability PROCESS Students may use simple probability by determining the number of favorable outcomes

More information

Name Class Date. Introducing Probability Distributions

Name Class Date. Introducing Probability Distributions Name Class Date Binomial Distributions Extension: Distributions Essential question: What is a probability distribution and how is it displayed? 8-6 CC.9 2.S.MD.5(+) ENGAGE Introducing Distributions Video

More information

Chapter 3: Elements of Chance: Probability Methods

Chapter 3: Elements of Chance: Probability Methods Chapter 3: Elements of Chance: Methods Department of Mathematics Izmir University of Economics Week 3-4 2014-2015 Introduction In this chapter we will focus on the definitions of random experiment, outcome,

More information

Applied Statistics I

Applied Statistics I Applied Statistics I Liang Zhang Department of Mathematics, University of Utah June 12, 2008 Liang Zhang (UofU) Applied Statistics I June 12, 2008 1 / 29 In Probability, our main focus is to determine

More information

PROBABILITY. 1. Introduction. Candidates should able to:

PROBABILITY. 1. Introduction. Candidates should able to: PROBABILITY Candidates should able to: evaluate probabilities in simple cases by means of enumeration of equiprobable elementary events (e.g for the total score when two fair dice are thrown), or by calculation

More information

Algebra 1B notes and problems May 14, 2009 Independent events page 1

Algebra 1B notes and problems May 14, 2009 Independent events page 1 May 14, 009 Independent events page 1 Independent events In the last lesson we were finding the probability that a 1st event happens and a nd event happens by multiplying two probabilities For all the

More information

Axiomatic Probability

Axiomatic Probability Axiomatic Probability The objective of probability is to assign to each event A a number P(A), called the probability of the event A, which will give a precise measure of the chance thtat A will occur.

More information

Chapter 4: Probability and Counting Rules

Chapter 4: Probability and Counting Rules Chapter 4: Probability and Counting Rules Before we can move from descriptive statistics to inferential statistics, we need to have some understanding of probability: Ch4: Probability and Counting Rules

More information

Probability as a general concept can be defined as the chance of an event occurring.

Probability as a general concept can be defined as the chance of an event occurring. 3. Probability In this chapter, you will learn about probability its meaning, how it is computed, and how to evaluate it in terms of the likelihood of an event actually happening. Probability as a general

More information

Basic Probability. Let! = # 8 # < 13, # N -,., and / are the subsets of! such that - = multiples of four. = factors of 24 / = square numbers

Basic Probability. Let! = # 8 # < 13, # N -,., and / are the subsets of! such that - = multiples of four. = factors of 24 / = square numbers Basic Probability Let! = # 8 # < 13, # N -,., and / are the subsets of! such that - = multiples of four. = factors of 24 / = square numbers (a) List the elements of!. (b) (i) Draw a Venn diagram to show

More information

Chapter 5 Probability

Chapter 5 Probability Chapter 5 Probability Math150 What s the likelihood of something occurring? Can we answer questions about probabilities using data or experiments? For instance: 1) If my parking meter expires, I will probably

More information

CHAPTERS 14 & 15 PROBABILITY STAT 203

CHAPTERS 14 & 15 PROBABILITY STAT 203 CHAPTERS 14 & 15 PROBABILITY STAT 203 Where this fits in 2 Up to now, we ve mostly discussed how to handle data (descriptive statistics) and how to collect data. Regression has been the only form of statistical

More information

Chapter 6: Probability and Simulation. The study of randomness

Chapter 6: Probability and Simulation. The study of randomness Chapter 6: Probability and Simulation The study of randomness 6.1 Randomness Probability describes the pattern of chance outcomes. Probability is the basis of inference Meaning, the pattern of chance outcomes

More information

Probability: Terminology and Examples Spring January 1, / 22

Probability: Terminology and Examples Spring January 1, / 22 Probability: Terminology and Examples 18.05 Spring 2014 January 1, 2017 1 / 22 Board Question Deck of 52 cards 13 ranks: 2, 3,..., 9, 10, J, Q, K, A 4 suits:,,,, Poker hands Consists of 5 cards A one-pair

More information

Key Concepts. Theoretical Probability. Terminology. Lesson 11-1

Key Concepts. Theoretical Probability. Terminology. Lesson 11-1 Key Concepts Theoretical Probability Lesson - Objective Teach students the terminology used in probability theory, and how to make calculations pertaining to experiments where all outcomes are equally

More information

The Teachers Circle Mar. 20, 2012 HOW TO GAMBLE IF YOU MUST (I ll bet you $5 that if you give me $10, I ll give you $20.)

The Teachers Circle Mar. 20, 2012 HOW TO GAMBLE IF YOU MUST (I ll bet you $5 that if you give me $10, I ll give you $20.) The Teachers Circle Mar. 2, 22 HOW TO GAMBLE IF YOU MUST (I ll bet you $ that if you give me $, I ll give you $2.) Instructor: Paul Zeitz (zeitzp@usfca.edu) Basic Laws and Definitions of Probability If

More information

Benford s Law, data mining, and financial fraud: a case study in New York State Medicaid data

Benford s Law, data mining, and financial fraud: a case study in New York State Medicaid data Data Mining IX 195 Benford s Law, data mining, and financial fraud: a case study in New York State Medicaid data B. Little 1, R. Rejesus 2, M. Schucking 3 & R. Harris 4 1 Department of Mathematics, Physics,

More information

MATH CALCULUS & STATISTICS/BUSN - PRACTICE EXAM #2 - FALL DR. DAVID BRIDGE

MATH CALCULUS & STATISTICS/BUSN - PRACTICE EXAM #2 - FALL DR. DAVID BRIDGE MATH 2053 - CALCULUS & STATISTICS/BUSN - PRACTICE EXAM #2 - FALL 2009 - DR. DAVID BRIDGE MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Solve the

More information

Section Introduction to Sets

Section Introduction to Sets Section 1.1 - Introduction to Sets Definition: A set is a well-defined collection of objects usually denoted by uppercase letters. Definition: The elements, or members, of a set are denoted by lowercase

More information

Skills we've learned. Skills we need. 7 3 Independent and Dependent Events. March 17, Alg2 Notes 7.3.notebook

Skills we've learned. Skills we need. 7 3 Independent and Dependent Events. March 17, Alg2 Notes 7.3.notebook 7 3 Independent and Dependent Events Skills we've learned 1. In a box of 25 switches, 3 are defective. What is the probability of randomly selecting a switch that is not defective? 2. There are 12 E s

More information

Answer each of the following problems. Make sure to show your work.

Answer each of the following problems. Make sure to show your work. Answer each of the following problems. Make sure to show your work. 1. A board game requires each player to roll a die. The player with the highest number wins. If a player wants to calculate his or her

More information

Probability and Counting Techniques

Probability and Counting Techniques Probability and Counting Techniques Diana Pell (Multiplication Principle) Suppose that a task consists of t choices performed consecutively. Suppose that choice 1 can be performed in m 1 ways; for each

More information

Classical Definition of Probability Relative Frequency Definition of Probability Some properties of Probability

Classical Definition of Probability Relative Frequency Definition of Probability Some properties of Probability PROBABILITY Recall that in a random experiment, the occurrence of an outcome has a chance factor and cannot be predicted with certainty. Since an event is a collection of outcomes, its occurrence cannot

More information

Math Exam 2 Review. NOTE: For reviews of the other sections on Exam 2, refer to the first page of WIR #4 and #5.

Math Exam 2 Review. NOTE: For reviews of the other sections on Exam 2, refer to the first page of WIR #4 and #5. Math 166 Fall 2008 c Heather Ramsey Page 1 Math 166 - Exam 2 Review NOTE: For reviews of the other sections on Exam 2, refer to the first page of WIR #4 and #5. Section 3.2 - Measures of Central Tendency

More information

Math Exam 2 Review. NOTE: For reviews of the other sections on Exam 2, refer to the first page of WIR #4 and #5.

Math Exam 2 Review. NOTE: For reviews of the other sections on Exam 2, refer to the first page of WIR #4 and #5. Math 166 Fall 2008 c Heather Ramsey Page 1 Math 166 - Exam 2 Review NOTE: For reviews of the other sections on Exam 2, refer to the first page of WIR #4 and #5. Section 3.2 - Measures of Central Tendency

More information

Bell Work. Warm-Up Exercises. Two six-sided dice are rolled. Find the probability of each sum or 7

Bell Work. Warm-Up Exercises. Two six-sided dice are rolled. Find the probability of each sum or 7 Warm-Up Exercises Two six-sided dice are rolled. Find the probability of each sum. 1. 7 Bell Work 2. 5 or 7 3. You toss a coin 3 times. What is the probability of getting 3 heads? Warm-Up Notes Exercises

More information

Probability Concepts and Counting Rules

Probability Concepts and Counting Rules Probability Concepts and Counting Rules Chapter 4 McGraw-Hill/Irwin Dr. Ateq Ahmed Al-Ghamedi Department of Statistics P O Box 80203 King Abdulaziz University Jeddah 21589, Saudi Arabia ateq@kau.edu.sa

More information

(a) Suppose you flip a coin and roll a die. Are the events obtain a head and roll a 5 dependent or independent events?

(a) Suppose you flip a coin and roll a die. Are the events obtain a head and roll a 5 dependent or independent events? Unit 6 Probability Name: Date: Hour: Multiplication Rule of Probability By the end of this lesson, you will be able to Understand Independence Use the Multiplication Rule for independent events Independent

More information

The topic for the third and final major portion of the course is Probability. We will aim to make sense of statements such as the following:

The topic for the third and final major portion of the course is Probability. We will aim to make sense of statements such as the following: CS 70 Discrete Mathematics for CS Spring 2006 Vazirani Lecture 17 Introduction to Probability The topic for the third and final major portion of the course is Probability. We will aim to make sense of

More information

JIGSAW ACTIVITY, TASK # Make sure your answer in written in the correct order. Highest powers of x should come first, down to the lowest powers.

JIGSAW ACTIVITY, TASK # Make sure your answer in written in the correct order. Highest powers of x should come first, down to the lowest powers. JIGSAW ACTIVITY, TASK #1 Your job is to multiply and find all the terms in ( 1) Recall that this means ( + 1)( + 1)( + 1)( + 1) Start by multiplying: ( + 1)( + 1) x x x x. x. + 4 x x. Write your answer

More information

The Coin Toss Experiment

The Coin Toss Experiment Experiments p. 1/1 The Coin Toss Experiment Perhaps the simplest probability experiment is the coin toss experiment. Experiments p. 1/1 The Coin Toss Experiment Perhaps the simplest probability experiment

More information

Contemporary Mathematics Math 1030 Sample Exam I Chapters Time Limit: 90 Minutes No Scratch Paper Calculator Allowed: Scientific

Contemporary Mathematics Math 1030 Sample Exam I Chapters Time Limit: 90 Minutes No Scratch Paper Calculator Allowed: Scientific Contemporary Mathematics Math 1030 Sample Exam I Chapters 13-15 Time Limit: 90 Minutes No Scratch Paper Calculator Allowed: Scientific Name: The point value of each problem is in the left-hand margin.

More information

WEEK 7 REVIEW. Multiplication Principle (6.3) Combinations and Permutations (6.4) Experiments, Sample Spaces and Events (7.1)

WEEK 7 REVIEW. Multiplication Principle (6.3) Combinations and Permutations (6.4) Experiments, Sample Spaces and Events (7.1) WEEK 7 REVIEW Multiplication Principle (6.3) Combinations and Permutations (6.4) Experiments, Sample Spaces and Events (7.) Definition of Probability (7.2) WEEK 8-7.3, 7.4 and Test Review THE MULTIPLICATION

More information

Mathacle. Name: Date:

Mathacle. Name: Date: Quiz Probability 1.) A telemarketer knows from past experience that when she makes a call, the probability that someone will answer the phone is 0.20. What is probability that the next two phone calls

More information

CH 13. Probability and Data Analysis

CH 13. Probability and Data Analysis 11.1: Find Probabilities and Odds 11.2: Find Probabilities Using Permutations 11.3: Find Probabilities Using Combinations 11.4: Find Probabilities of Compound Events 11.5: Analyze Surveys and Samples 11.6:

More information

STAT 430/510 Probability

STAT 430/510 Probability STAT 430/510 Probability Hui Nie Lecture 1 May 26th, 2009 Introduction Probability is the study of randomness and uncertainty. In the early days, probability was associated with games of chance, such as

More information

7.1 Experiments, Sample Spaces, and Events

7.1 Experiments, Sample Spaces, and Events 7.1 Experiments, Sample Spaces, and Events An experiment is an activity that has observable results. Examples: Tossing a coin, rolling dice, picking marbles out of a jar, etc. The result of an experiment

More information

November 11, Chapter 8: Probability: The Mathematics of Chance

November 11, Chapter 8: Probability: The Mathematics of Chance Chapter 8: Probability: The Mathematics of Chance November 11, 2013 Last Time Probability Models and Rules Discrete Probability Models Equally Likely Outcomes Probability Rules Probability Rules Rule 1.

More information

Stat210 WorkSheet#2 Chapter#2

Stat210 WorkSheet#2 Chapter#2 1. When rolling a die 5 times, the number of elements of the sample space equals.(ans.=7,776) 2. If an experiment consists of throwing a die and then drawing a letter at random from the English alphabet,

More information

Probability with Engineering Applications ECE 313 Section C Lecture 1. Lav R. Varshney 28 August 2017

Probability with Engineering Applications ECE 313 Section C Lecture 1. Lav R. Varshney 28 August 2017 Probability with Engineering Applications ECE 313 Section C Lecture 1 Lav R. Varshney 28 August 2017 1 2 3 4 Carbon Nanotube Computers Carbon nanotubes can be grown in parallel lines, but imperfections

More information