I. Introduction to probability, 1

Size: px
Start display at page:

Download "I. Introduction to probability, 1"

Transcription

1 GEOS 33000/EVOL January 2006 updated January 10, 2006 Page 1 I. Introduction to probability, 1 1 Sample Space and Basic Probability 1.1 Theoretical space of outcomes of conceptual experiment 1.2 Point: one theoretically possible outcome (indecomposable event) Denote number of points by N 1.3 Event: consists of one or more points 1.4 Example: Space consisting of outcomes of tossing three coins Space has 8 points: 1.HHH, 2.HHT, 3.HTH, 4.HTT, 5.TTT, 6.TTH, 7.THT, 8.THH Assume all eight points have same probability (i.e. coin fair) Then probability of point (event) i; P (E i ) = 1/N = 1/8 for all i. 1.5 Now consider compound (decomposable) event A Let A 1 be heads first. Then P (A 1 ) = N A1 N = 4/8 = 1/ Now let A 2 be heads second. Then P (A 2 ) = N A2 N = 4/8 = 1/ Define A 1 A 2 (also written A 1 A 2 ) as the event heads first and heads second. This is the intersection of A 1 and A 2. Then P (A 1 A 2 ) = N A1 A 2 N = 2/8 = 1/ Define A 1 A 2 as heads first or heads second. This is the union of A 1 and A 2. (NB: or here means and/or.) Then P (A 1 A 2 ) = N A1 A 2 N = 6/8 = 3/4

2 GEOS 33000/EVOL January 2006 updated January 10, 2006 Page 2 In general, P (A 1 A 2 ) = P (A 1 ) + P (A 2 ) P (A 1 A 2 ). The last term avoids double-counting Define A as the event not-a Then P (A ) = 1 P (A) Summation of probabilities If E 1,..., E N are all the possible points in the space, then N i=1 P (E i ) = 1. 2 Conditional Probability 2.1 Definition Probability of an event given prior occurrence of another event Alternative: probability of an event, considered as a member of a subpopulation of events satisfying a certain condition. 2.2 Notation P (A 2 A 1 ) 2.3 Example Probability of heads second (A 2 ) given heads first (A 1 ) P (A 2 A 1 ) = N A1 A 2 /N A1 = 2/4 = 1/2 2.4 General form: P (A 2 A 1 ) = P (A 1A 2 ) P (A 1 ). This is often written as P (A H) = P (AH), where A denotes the event and H the prior P (H) Hypothesis. From this we get an important equivalent form: P (AH) = P (A H) P (H) 2.5 Relationship to correlation If P (A H) = P (A) = P (A H ), then H has no bearing on probability of A.

3 GEOS 33000/EVOL January 2006 updated January 10, 2006 Page Example of importance of considering conditional probability Suppose there is a fairly accurate test for a particular illness X. Let + and - denote a positive and negative outcome of the test. P (+ X) = 0.98 (true positives) P ( X) = 0.02 (false negatives) P (+ X ) = (false positives) P ( X ) = (true negatives) Suppose in addition that the true frequency of the illness in the population is I.e. P (X) = and P (X ) = If you have a positive test result, what is the probability that you have the illness? P (X +) = P (X +) P (+) = P (X)P (+ X) P (+) In turn, P (+) = P (+ X) P (X) + P (+ X ) P (X ) In the case at hand, P (+) = (0.0001)(0.98) + (0.001)(0.9999) = , therefore P (X +) = (0.0001)(0.98)/( ) = Thus, even though the test is very accurate, because the true incidence is so low, most positives are false positives. The probability that you have the illness, given a positive result, is relatively low. 3 Independent Events 3.1 Definition A 1 and A 2 are independent iff P (A 1 A 2 ) = P (A 1 ) P (A 2 ). Establishment of independence may be a priori or empirical.

4 GEOS 33000/EVOL January 2006 updated January 10, 2006 Page 4 4 Combinatorials We need a general way to deal with spaces that have many more events than three coin tosses. 4.1 Derivation with respect to 5-card poker hands Deck consists of four suits of 13 cards each First draw: each card has probability 1/52 Second draw: each card has probability 1/51, etc. Thus, total number of hands is This includes all permutations But we don t care about the order in which they are drawn. For any given five cards, there are arrangements or permutations. Thus the number of unique hands is (52)(51)(50)(49)(48) (5)(4)(3)(2)(1) Use notation n! (n-factorial), where n! = n(n 1)(n 2)...(1), and 0! = 1 by convention. So, number of unique hands is (52)(51)(50)(49)(48) 5! Note that (52)(51)(50)(49)(48) = 52!/47! Thus the number of unique hands is 52! 5!47! ) = n! 4.2 In general, ( n r r!(n r)! is the number of unique ways of choosing n items r at a time. 4.3 Example: probability of drawing a flush in poker (all five cards of the same suit) For each suit, the number of ways of drawing five cards is ( 13 5 of flushes is (4)(1287) or The number of hands in a deck is ( ) 52 5 or 2,598,960. ) or Thus the number

5 GEOS 33000/EVOL January 2006 updated January 10, 2006 Page 5 Thus the probability of a flush is 5148/2,598,960, or , or about 1 in 505. Programming note: Factorials blow up quickly. Use log factorial trick (or intrinsic function if available) for number of combinations: ln ( ) n r = ln(n!) ln(r!) ln([n r]!) Let s 1 = ln(n!) = n i=1 ln(i) Let s 2 = ln(r!) = r i=1 ln(i) Let s 3 = ln([n r]!) = n r i=1 ln(i) Let a = s 1 s 2 s 3 Then ( ) n r = exp(a) 5 Binomial Distribution 5.1 b(k; n, p) = ( ) n k p k (1 p) (n k) This is the probability of exactly k successes in n independent trials, each with probability of success p. In this expression, p k gives the probability of k successes, (1 p) (n k) gives the probability of (n k) failures, and ( ) n k gives the number of ways of placing the k successes. For example, if n = 4 and k = 2, the successes can be on trials 1 and 2, 1 and 3, 1 and 4, 2 and 3, 2 and 4, or 3 and 4.

6 GEOS 33000/EVOL January 2006 updated January 10, 2006 Page 6 Binomial probabilities n=100; p=0.1 n=100; p=0.05 n=10; p=0.5 b(k;n,p) k We are often interested not in probability of an exact number of outcomes, but rather in sum of probabilities of a range of outcomes. 5.2 Applications Sampling Does observed number of events exceed or fall short of what we would expect just from sampling error (given some prior estimate of p)? Binomial confidence limits Standard error of observed number of successes: SE(k) = np(1 p), assuming p here is the true value. Generally we use the observed p as an estimate. Standard error of observed proportion: SE(k/n) = that p is the true value. p(1 p)/n, again assuming

7 GEOS 33000/EVOL January 2006 updated January 10, 2006 Page 7 Because binomial distribution is approximately symmetrical (in fact, approximately normal), one can tack an arbitrary number of standard errors on either side of observation. A more exact approach especially when p is near 0 or near 1, and the distribution is more skewed is to take sum of binomial probabilities on either side of observed value (of n or k/n) until the cumulative probability reaches some conventional value. (See Buzas [1990], J. Paleontol. 64:842-3; Raup [1991] In Gilinsky and Signor, eds. Analytical Paleobiology [Short Courses in Paleontology Number 4].) Example: A. Suppose we collect 100 individuals from a bed, 10% of which belong to species Standard error approach: SE = p ± 1SE = (0.07, 0.13). Exact approach: (0.1)(0.9)/100 = Thus, estimated Choose an arbitrary width of confidence interval. ±1SE corresponds to roughly 68% of area under normal curve, so let s say we want to find values of k k low and k up so that there is a probability of 0.34 of falling at above k low but below 10, and a probability of 0.34 of falling at or below k up but above 10. Calculate the binomial probabilities k b(k) P ( k) P ( k) P (between 10 and k)

8 GEOS 33000/EVOL January 2006 updated January 10, 2006 Page 8 Thus, k low = 7 and k up = 14. The corresponding confidence interval is (7,14). The difference relative to the standard-error approximation reflects the slight asymmetry in the binomial distribution. NB Another valid approach is to find the values of k corresponding to lower and upper tail areas of 16%. (This is what Raup [1991] does.) Doing so yields a confidence interval of (7,13). The two approaches differ slightly in this case because the cumulative probability at k = 10 is equal to rather than Distinguishing proportions: Do two samples yield sufficiently different values of k/n that we can conclude the underlying values of p are different? Example: Suppose we took a second sample of 100 and found that 5 individuals belong to species A. The probability of getting 5 or fewer individuals of species A, if p = 0.1, is equal to (see foregoing table). Therefore, the difference is conspicuous, but not significant at the conventional 5% level Power: How large does n need to be be to distinguish two proportions with a stated level of certainty? Trends Does the number of changes in a given direction exceed what we would expect (given some a priori null hypothesis about p)? (See Raup and Crick [1981].) Probability of at least m out of n changes in one direction: P ( m) = [2] n i=m ( n i) p i (1 p) (n i). The factor of 2 before the sum is included for a two-tailed test (no prior reason to test for changes in one direction or the other). It is omitted for a one-tailed test Selectivity in extinction Do some groups show higher or lower proportional extinction than would be expected for p based on entire ensemble of taxa? (See Raup and Marshall [1980] Paleobiology 6:9-23.)

9 GEOS 33000/EVOL January 2006 updated January 10, 2006 Page 9 Hypothetical data Group N N(extinct) %(extinct) Calculation P (one-tailed) P ( 10 p = 0.366) P ( 10 p = 0.366) P ( 5 p = 0.366) P ( 25 p = 0.366) P ( 25 p = 0.366) Total Multinomial Distribution Binomial based on two outcomes: success and failure. Suppose there are three possible outcomes, with probabilities p 1, p 2, and p 3 (where i p i = 1). Then the probability of exactly k 1 outcomes of type 1, k 2 of type 2, and k 3 of type 3 (where i k i = n) is given by P (k 1, k 2, k 3 ; p 1, p 2, p 3, n) = n! k 1!k 2!k 3! pk 1 1 p k 2 2 p k In general:p (k i ; p i, n) = n! i k i! i p k i i 7 Poisson Approximation to Binomial 7.1 Suppose we have very many trials each with low probability of success. I.e. n is large and p is small (while λ = np is of intermediate value). 7.2 Consider ratio of adjacent terms in binomial: b(k; n, p) b(k 1; n, p) = ( n k ) p k (1 p) (n k) ( ) n k 1 p (k 1) (1 p) (n k+1) Some very tedious steps show that this is approximately equal to np/k for n large and p small, i.e. it is approximately equal to λ/k. 7.3 Now consider the probability of zero successes: b(0; n, p) = (1 p) n = (1 λ n )n This is approximately equal to exp( λ) for large n. (Remember, lim n (1 + x/n) n = e x.)

10 GEOS 33000/EVOL January 2006updated January 10, 2006 Page Thus, recalling the ratio between adjacent terms, we have: b(0; n, p) e λ, b(1; n, p) λ 1 e λ, and so on. b(2; n, p) λ λ 2 1 e λ, b(3; n, p) λ λ λ e λ, λ λk 7.5 In general, P (k; λ) = e k! Poisson probabilities 0.8 λ = 0.1 λ = 1 λ = 2 λ = Probability k

11 GEOS 33000/EVOL January 2006updated January 10, 2006 Page Application of Poisson to continuous-time process rather than discrete trials Let process act at constant rate r over a span of time t. Then λ = rt, and number of events follows Poisson distribution. (See waiting times, next set of notes.) Poisson distribution for continuous process is exact, not approximate. 7.7 Some Applications of Poisson distribution Multiple occurrences of rare events Let p be the probability of an event per unit time interval. Let n be the number time intervals, and let λ = np. Let P n,x be the probability that event occurs at least x times in n time intervals. Then: P n,x = 1 x 1 k=0 λ λk e k! Applications: Floods, earthquakes, etc. Example: mass extinctions Let p = 0.01 per m.y. (5 big events in past 500 m.y.) What is the probability of at least five events in 500 m.y.? For this problem, λ = = 5, and P 500,5 is equal to only 0.56, even though our estimate of λ comes directly from the observed data. What is the probability of at least two events in only 50 m.y.? For this problem, λ = = 0.5, and P 50,2 is equal to So we would be a bit surprised to find two of the big five within only 50 m.y. of each other, but not terribly surprised.

12 GEOS 33000/EVOL January 2006updated January 10, 2006 Page 12 Figure 1. Probability of multiple rare events.

13 GEOS 33000/EVOL January 2006updated January 10, 2006 Page Number of direct descendants of a lineage of duration t. (See Foote [1996].) Let p be the origination rate per lineage-million-years. If the duration is already given as t, then the probability of exactly k direct descendants is given by Spatial patterning pt (pt)k P (k; p, t) = e k! Suppose there are N equal-area cells in a grid, and a total of n occurrences. If they are dropped in at random, then λ is the average number of occurrences per cell: λ = n/n. The probability of exactly k hits in a cell is given by P (k; λ). Example: WWII bomb strikes in London. N = 576, n = 537, λ = k N observed N expectedbypoisson SOURCE: Feller This example shows that randomly placed events often appear clustered. 7.8 Comment: With modern computers, binomial is generally easy to compute, so there may be no real need for Poisson approximation in the case of discrete trials (as opposed to temporally or spatially continuous processes).

II. Introduction to probability, 2

II. Introduction to probability, 2 GEOS 33000/EVOL 33000 5 January 2006 updated January 10, 2006 Page 1 II. Introduction to probability, 2 1 Random Variables 1.1 Definition: A random variable is a function defined on a sample space. In

More information

Mathematics. ( : Focus on free Education) (Chapter 16) (Probability) (Class XI) Exercise 16.2

Mathematics. (  : Focus on free Education) (Chapter 16) (Probability) (Class XI) Exercise 16.2 ( : Focus on free Education) Exercise 16.2 Question 1: A die is rolled. Let E be the event die shows 4 and F be the event die shows even number. Are E and F mutually exclusive? Answer 1: When a die is

More information

Probability (10A) Young Won Lim 6/12/17

Probability (10A) Young Won Lim 6/12/17 Probability (10A) Copyright (c) 2017 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later

More information

Conditional Probability

Conditional Probability Conditional Probability Idea have performed a chance experiment but don t know the outcome (ω), but have some partial information (event A) about ω. Question: given this partial information what s the

More information

What is Probability? Probability. Sample Spaces and Events. Simple Event

What is Probability? Probability. Sample Spaces and Events. Simple Event What is Probability? Probability Peter Lo Probability is the numerical measure of likelihood that the event will occur. Simple Event Joint Event Compound Event Lies between 0 & 1 Sum of events is 1 1.5

More information

Sec$on Summary. Assigning Probabilities Probabilities of Complements and Unions of Events Conditional Probability

Sec$on Summary. Assigning Probabilities Probabilities of Complements and Unions of Events Conditional Probability Section 7.2 Sec$on Summary Assigning Probabilities Probabilities of Complements and Unions of Events Conditional Probability Independence Bernoulli Trials and the Binomial Distribution Random Variables

More information

27 Binary Arithmetic: An Application to Programming

27 Binary Arithmetic: An Application to Programming 27 Binary Arithmetic: An Application to Programming In the previous section we looked at the binomial distribution. The binomial distribution is essentially the mathematics of repeatedly flipping a coin

More information

p. 4-1 Random Variables

p. 4-1 Random Variables Random Variables A Motivating Example Experiment: Sample k students without replacement from the population of all n students (labeled as 1, 2,, n, respectively) in our class. = {all combinations} = {{i

More information

Probability deals with modeling of random phenomena (phenomena or experiments whose outcomes may vary)

Probability deals with modeling of random phenomena (phenomena or experiments whose outcomes may vary) Chapter 14 From Randomness to Probability How to measure a likelihood of an event? How likely is it to answer correctly one out of two true-false questions on a quiz? Is it more, less, or equally likely

More information

Why should you care?? Intellectual curiosity. Gambling. Mathematically the same as the ESP decision problem we discussed in Week 4.

Why should you care?? Intellectual curiosity. Gambling. Mathematically the same as the ESP decision problem we discussed in Week 4. I. Probability basics (Sections 4.1 and 4.2) Flip a fair (probability of HEADS is 1/2) coin ten times. What is the probability of getting exactly 5 HEADS? What is the probability of getting exactly 10

More information

What is a random variable

What is a random variable OKAN UNIVERSITY FACULTY OF ENGINEERING AND ARCHITECTURE MATH 256 Probability and Random Processes 04 Random Variables Fall 20 Yrd. Doç. Dr. Didem Kivanc Tureli didemk@ieee.org didem.kivanc@okan.edu.tr

More information

Example. If 4 tickets are drawn with replacement from ,

Example. If 4 tickets are drawn with replacement from , Example. If 4 tickets are drawn with replacement from 1 2 2 4 6, what are the chances that we observe exactly two 2 s? Exactly two 2 s in a sequence of four draws can occur in many ways. For example, (

More information

Lecture Notes 1 Basic Probability. Elements of Probability. Conditional probability. Sequential Calculation of Probability

Lecture Notes 1 Basic Probability. Elements of Probability. Conditional probability. Sequential Calculation of Probability Lecture Notes 1 Basic Probability Set Theory Elements of Probability Conditional probability Sequential Calculation of Probability Total Probability and Bayes Rule Independence Counting EE 178/278A: Basic

More information

Week 2: Probability: Counting, Sets, and Bayes

Week 2: Probability: Counting, Sets, and Bayes Statistical Methods APPM 4570/5570, STAT 4000/5000 21 Probability Introduction to EDA Week 2: Probability: Counting, Sets, and Bayes Random variable Random variable is a measurable quantity whose outcome

More information

Expected Value 7/7/2006

Expected Value 7/7/2006 Expected Value 7/7/2006 Definition Let X be a numerically-valued discrete random variable with sample space Ω and distribution function m(x). The expected value E(X) is defined by E(X) = x Ω x m(x), provided

More information

Deep Learning for Computer Vision

Deep Learning for Computer Vision Deep Learning for Computer Vision Lecture 3: Probability, Bayes Theorem, and Bayes Classification Peter Belhumeur Computer Science Columbia University Probability Should you play this game? Game: A fair

More information

Lecture 1 : The Mathematical Theory of Probability

Lecture 1 : The Mathematical Theory of Probability Lecture 1 : The Mathematical Theory of Probability 0/ 30 1. Introduction Today we will do 2.1 and 2.2. We will skip Chapter 1. We all have an intuitive notion of probability. Let s see. What is the probability

More information

Introduction Probability. Math 141. Introduction to Probability and Statistics. Albyn Jones

Introduction Probability. Math 141. Introduction to Probability and Statistics. Albyn Jones Math 141 to and Statistics Albyn Jones Mathematics Department Library 304 jones@reed.edu www.people.reed.edu/ jones/courses/141 September 3, 2014 Motivation How likely is an eruption at Mount Rainier in

More information

CS206 Review Sheet 3 October 24, 2018

CS206 Review Sheet 3 October 24, 2018 CS206 Review Sheet 3 October 24, 2018 After ourintense focusoncounting, wecontinue withthestudyofsomemoreofthebasic notions from Probability (though counting will remain in our thoughts). An important

More information

Notation: X = random variable; x = particular value; P(X = x) denotes probability that X equals the value x.

Notation: X = random variable; x = particular value; P(X = x) denotes probability that X equals the value x. Ch. 16 Random Variables Def n: A random variable is a numerical measurement of the outcome of a random phenomenon. A discrete random variable is a random variable that assumes separate values. # of people

More information

Discrete Distributions

Discrete Distributions A simplest example of random experiment is a coin-tossing, formally called Bernoulli trial. It happens to be the case that many useful distributions are built upon this simplest form of experiment, whose

More information

9/6/2016. Section 5.1 Probability. Equally Likely Model. The Division Rule: P(A)=#(A)/#(S) Some Popular Randomizers.

9/6/2016. Section 5.1 Probability. Equally Likely Model. The Division Rule: P(A)=#(A)/#(S) Some Popular Randomizers. Chapter 5: Probability and Discrete Probability Distribution Learn. Probability Binomial Distribution Poisson Distribution Some Popular Randomizers Rolling dice Spinning a wheel Flipping a coin Drawing

More information

4/17/2012. NE ( ) # of ways an event can happen NS ( ) # of events in the sample space

4/17/2012. NE ( ) # of ways an event can happen NS ( ) # of events in the sample space I. Vocabulary: A. Outcomes: the things that can happen in a probability experiment B. Sample Space (S): all possible outcomes C. Event (E): one outcome D. Probability of an Event (P(E)): the likelihood

More information

CHAPTER - 16 PROBABILITY Random Experiment : If an experiment has more than one possible out come and it is not possible to predict the outcome in advance then experiment is called random experiment. Sample

More information

Discrete Probability Distribution

Discrete Probability Distribution Shapes of binomial distributions Discrete Probability Distribution Week 11 For this activity you will use a web applet. Go to http://socr.stat.ucla.edu/htmls/socr_eperiments.html and choose Binomial coin

More information

Events A and B are said to be independent if the occurrence of A does not affect the probability of B.

Events A and B are said to be independent if the occurrence of A does not affect the probability of B. Independent Events Events A and B are said to be independent if the occurrence of A does not affect the probability of B. Probability experiment of flipping a coin and rolling a dice. Sample Space: {(H,

More information

Quantitative Methods for Decision Making

Quantitative Methods for Decision Making January 14, 2012 Lecture 3 Probability Theory Definition Mutually exclusive events: Two events A and B are mutually exclusive if A B = φ Definition Special Addition Rule: Let A and B be two mutually exclusive

More information

Lecture Lecture 5

Lecture Lecture 5 Lecture 4 --- Lecture 5 A. Basic Concepts (4.1-4.2) 1. Experiment: A process of observing a phenomenon that has variation in its outcome. Examples: (E1). Rolling a die, (E2). Drawing a card form a shuffled

More information

Probability Distributions for Discrete RV

Probability Distributions for Discrete RV An example: Assume we toss a coin 3 times and record the outcomes. Let X i be a random variable defined by { 1, if the i th outcome is Head; X i = 0, if the i th outcome is Tail; Let X be the random variable

More information

Probability Pearson Education, Inc. Slide

Probability Pearson Education, Inc. Slide Probability The study of probability is concerned with random phenomena. Even though we cannot be certain whether a given result will occur, we often can obtain a good measure of its likelihood, or probability.

More information

Math Bootcamp 2012 Miscellaneous

Math Bootcamp 2012 Miscellaneous Math Bootcamp 202 Miscellaneous Factorial, combination and permutation The factorial of a positive integer n denoted by n!, is the product of all positive integers less than or equal to n. Define 0! =.

More information

Statistical Experiment A statistical experiment is any process by which measurements are obtained.

Statistical Experiment A statistical experiment is any process by which measurements are obtained. (التوزيعات الا حتمالية ( Distributions Probability Statistical Experiment A statistical experiment is any process by which measurements are obtained. Examples of Statistical Experiments Counting the number

More information

Lecture 12. Poisson random variables

Lecture 12. Poisson random variables 18.440: Lecture 12 Poisson random variables Scott Sheffield MIT 1 Outline Poisson random variable definition Poisson random variable properties Poisson random variable problems 2 Outline Poisson random

More information

Outline. 1. Define likelihood 2. Interpretations of likelihoods 3. Likelihood plots 4. Maximum likelihood 5. Likelihood ratio benchmarks

Outline. 1. Define likelihood 2. Interpretations of likelihoods 3. Likelihood plots 4. Maximum likelihood 5. Likelihood ratio benchmarks Outline 1. Define likelihood 2. Interpretations of likelihoods 3. Likelihood plots 4. Maximum likelihood 5. Likelihood ratio benchmarks Likelihood A common and fruitful approach to statistics is to assume

More information

Probability (Devore Chapter Two)

Probability (Devore Chapter Two) Probability (Devore Chapter Two) 1016-345-01: Probability and Statistics for Engineers Fall 2012 Contents 0 Administrata 2 0.1 Outline....................................... 3 1 Axiomatic Probability 3

More information

Probability: Terminology and Examples Class 2, Jeremy Orloff and Jonathan Bloom

Probability: Terminology and Examples Class 2, Jeremy Orloff and Jonathan Bloom 1 Learning Goals Probability: Terminology and Examples Class 2, 18.05 Jeremy Orloff and Jonathan Bloom 1. Know the definitions of sample space, event and probability function. 2. Be able to organize a

More information

Probabilistic models

Probabilistic models Probabilistic models Kolmogorov (Andrei Nikolaevich, 1903 1987) put forward an axiomatic system for probability theory. Foundations of the Calculus of Probabilities, published in 1933, immediately became

More information

Statistics Statistical Process Control & Control Charting

Statistics Statistical Process Control & Control Charting Statistics Statistical Process Control & Control Charting Cayman Systems International 1/22/98 1 Recommended Statistical Course Attendance Basic Business Office, Staff, & Management Advanced Business Selected

More information

ECE 450 Lecture 2. Recall: Pr(A B) = Pr(A) + Pr(B) Pr(A B) in general = Pr(A) + Pr(B) if A and B are m.e. Lecture Overview

ECE 450 Lecture 2. Recall: Pr(A B) = Pr(A) + Pr(B) Pr(A B) in general = Pr(A) + Pr(B) if A and B are m.e. Lecture Overview ECE 450 Lecture 2 Recall: Pr(A B) = Pr(A) + Pr(B) Pr(A B) in general = Pr(A) + Pr(B) if A and B are m.e. Lecture Overview Conditional Probability, Pr(A B) Total Probability Bayes Theorem Independent Events

More information

2. In a clinical trial of certain new treatment, we may be interested in the proportion of patients cured.

2. In a clinical trial of certain new treatment, we may be interested in the proportion of patients cured. Discrete probability distributions January 21, 2013 Debdeep Pati Random Variables 1. Events are not very convenient to use. 2. In a clinical trial of certain new treatment, we may be interested in the

More information

STAT 430/510 Probability

STAT 430/510 Probability STAT 430/510 Probability Hui Nie Lecture 3 May 28th, 2009 Review We have discussed counting techniques in Chapter 1. Introduce the concept of the probability of an event. Compute probabilities in certain

More information

Steve Smith Tuition: Maths Notes

Steve Smith Tuition: Maths Notes Maths Notes : Discrete Random Variables Version. Steve Smith Tuition: Maths Notes e iπ + = 0 a + b = c z n+ = z n + c V E + F = Discrete Random Variables Contents Intro The Distribution of Probabilities

More information

MODULE 2 RANDOM VARIABLE AND ITS DISTRIBUTION LECTURES DISTRIBUTION FUNCTION AND ITS PROPERTIES

MODULE 2 RANDOM VARIABLE AND ITS DISTRIBUTION LECTURES DISTRIBUTION FUNCTION AND ITS PROPERTIES MODULE 2 RANDOM VARIABLE AND ITS DISTRIBUTION LECTURES 7-11 Topics 2.1 RANDOM VARIABLE 2.2 INDUCED PROBABILITY MEASURE 2.3 DISTRIBUTION FUNCTION AND ITS PROPERTIES 2.4 TYPES OF RANDOM VARIABLES: DISCRETE,

More information

Probability. VCE Maths Methods - Unit 2 - Probability

Probability. VCE Maths Methods - Unit 2 - Probability Probability Probability Tree diagrams La ice diagrams Venn diagrams Karnough maps Probability tables Union & intersection rules Conditional probability Markov chains 1 Probability Probability is the mathematics

More information

Discrete Random Variable

Discrete Random Variable Discrete Random Variable Outcome of a random experiment need not to be a number. We are generally interested in some measurement or numerical attribute of the outcome, rather than the outcome itself. n

More information

Common Discrete Distributions

Common Discrete Distributions Common Discrete Distributions Statistics 104 Autumn 2004 Taken from Statistics 110 Lecture Notes Copyright c 2004 by Mark E. Irwin Common Discrete Distributions There are a wide range of popular discrete

More information

Applied Statistics I

Applied Statistics I Applied Statistics I Liang Zhang Department of Mathematics, University of Utah June 17, 2008 Liang Zhang (UofU) Applied Statistics I June 17, 2008 1 / 22 Random Variables Definition A dicrete random variable

More information

CS 361: Probability & Statistics

CS 361: Probability & Statistics September 12, 2017 CS 361: Probability & Statistics Correlation Summary of what we proved We wanted a way of predicting y from x We chose to think in standard coordinates and to use a linear predictor

More information

BINOMIAL DISTRIBUTION

BINOMIAL DISTRIBUTION BINOMIAL DISTRIBUTION The binomial distribution is a particular type of discrete pmf. It describes random variables which satisfy the following conditions: 1 You perform n identical experiments (called

More information

CISC 1100/1400 Structures of Comp. Sci./Discrete Structures Chapter 7 Probability. Outline. Terminology and background. Arthur G.

CISC 1100/1400 Structures of Comp. Sci./Discrete Structures Chapter 7 Probability. Outline. Terminology and background. Arthur G. CISC 1100/1400 Structures of Comp. Sci./Discrete Structures Chapter 7 Probability Arthur G. Werschulz Fordham University Department of Computer and Information Sciences Copyright Arthur G. Werschulz, 2017.

More information

SDS 321: Introduction to Probability and Statistics

SDS 321: Introduction to Probability and Statistics SDS 321: Introduction to Probability and Statistics Lecture 2: Conditional probability Purnamrita Sarkar Department of Statistics and Data Science The University of Texas at Austin www.cs.cmu.edu/ psarkar/teaching

More information

Probability Dr. Manjula Gunarathna 1

Probability Dr. Manjula Gunarathna 1 Probability Dr. Manjula Gunarathna Probability Dr. Manjula Gunarathna 1 Introduction Probability theory was originated from gambling theory Probability Dr. Manjula Gunarathna 2 History of Probability Galileo

More information

Probability: Why do we care? Lecture 2: Probability and Distributions. Classical Definition. What is Probability?

Probability: Why do we care? Lecture 2: Probability and Distributions. Classical Definition. What is Probability? Probability: Why do we care? Lecture 2: Probability and Distributions Sandy Eckel seckel@jhsph.edu 22 April 2008 Probability helps us by: Allowing us to translate scientific questions into mathematical

More information

7.1 What is it and why should we care?

7.1 What is it and why should we care? Chapter 7 Probability In this section, we go over some simple concepts from probability theory. We integrate these with ideas from formal language theory in the next chapter. 7.1 What is it and why should

More information

Lecture 2: Discrete Probability Distributions

Lecture 2: Discrete Probability Distributions Lecture 2: Discrete Probability Distributions IB Paper 7: Probability and Statistics Carl Edward Rasmussen Department of Engineering, University of Cambridge February 1st, 2011 Rasmussen (CUED) Lecture

More information

n N CHAPTER 1 Atoms Thermodynamics Molecules Statistical Thermodynamics (S.T.)

n N CHAPTER 1 Atoms Thermodynamics Molecules Statistical Thermodynamics (S.T.) CHAPTER 1 Atoms Thermodynamics Molecules Statistical Thermodynamics (S.T.) S.T. is the key to understanding driving forces. e.g., determines if a process proceeds spontaneously. Let s start with entropy

More information

6.2 Introduction to Probability. The Deal. Possible outcomes: STAT1010 Intro to probability. Definitions. Terms: What are the chances of?

6.2 Introduction to Probability. The Deal. Possible outcomes: STAT1010 Intro to probability. Definitions. Terms: What are the chances of? 6.2 Introduction to Probability Terms: What are the chances of?! Personal probability (subjective) " Based on feeling or opinion. " Gut reaction.! Empirical probability (evidence based) " Based on experience

More information

Homework 4 Solution, due July 23

Homework 4 Solution, due July 23 Homework 4 Solution, due July 23 Random Variables Problem 1. Let X be the random number on a die: from 1 to. (i) What is the distribution of X? (ii) Calculate EX. (iii) Calculate EX 2. (iv) Calculate Var

More information

Probability (Devore Chapter Two)

Probability (Devore Chapter Two) Probability (Devore Chapter Two) 1016-345-01: Probability and Statistics for Engineers Spring 2013 Contents 0 Preliminaries 3 0.1 Motivation..................................... 3 0.2 Administrata...................................

More information

The Bernoulli distribution has only two outcomes, Y, success or failure, with values one or zero. The probability of success is p.

The Bernoulli distribution has only two outcomes, Y, success or failure, with values one or zero. The probability of success is p. The Bernoulli distribution has onl two outcomes, Y, success or failure, with values one or zero. The probabilit of success is p. The probabilit distribution f() is denoted as B (p), the formula is: f ()

More information

Conditional Probability

Conditional Probability Conditional Probability Conditional Probability The Law of Total Probability Let A 1, A 2,..., A k be mutually exclusive and exhaustive events. Then for any other event B, P(B) = P(B A 1 ) P(A 1 ) + P(B

More information

Chapter 2 PROBABILITY SAMPLE SPACE

Chapter 2 PROBABILITY SAMPLE SPACE Chapter 2 PROBABILITY Key words: Sample space, sample point, tree diagram, events, complement, union and intersection of an event, mutually exclusive events; Counting techniques: multiplication rule, permutation,

More information

1. Discrete Distributions

1. Discrete Distributions Virtual Laboratories > 2. Distributions > 1 2 3 4 5 6 7 8 1. Discrete Distributions Basic Theory As usual, we start with a random experiment with probability measure P on an underlying sample space Ω.

More information

Probability and distributions. Francesco Corona

Probability and distributions. Francesco Corona Probability Probability and distributions Francesco Corona Department of Computer Science Federal University of Ceará, Fortaleza Probability Many kinds of studies can be characterised as (repeated) experiments

More information

Lectures on Elementary Probability. William G. Faris

Lectures on Elementary Probability. William G. Faris Lectures on Elementary Probability William G. Faris February 22, 2002 2 Contents 1 Combinatorics 5 1.1 Factorials and binomial coefficients................. 5 1.2 Sampling with replacement.....................

More information

PERMUTATIONS, COMBINATIONS AND DISCRETE PROBABILITY

PERMUTATIONS, COMBINATIONS AND DISCRETE PROBABILITY Friends, we continue the discussion with fundamentals of discrete probability in the second session of third chapter of our course in Discrete Mathematics. The conditional probability and Baye s theorem

More information

More on Distribution Function

More on Distribution Function More on Distribution Function The distribution of a random variable X can be determined directly from its cumulative distribution function F X. Theorem: Let X be any random variable, with cumulative distribution

More information

2. AXIOMATIC PROBABILITY

2. AXIOMATIC PROBABILITY IA Probability Lent Term 2. AXIOMATIC PROBABILITY 2. The axioms The formulation for classical probability in which all outcomes or points in the sample space are equally likely is too restrictive to develop

More information

Lecture 2: Probability and Distributions

Lecture 2: Probability and Distributions Lecture 2: Probability and Distributions Ani Manichaikul amanicha@jhsph.edu 17 April 2007 1 / 65 Probability: Why do we care? Probability helps us by: Allowing us to translate scientific questions info

More information

Discrete Distributions

Discrete Distributions Discrete Distributions STA 281 Fall 2011 1 Introduction Previously we defined a random variable to be an experiment with numerical outcomes. Often different random variables are related in that they have

More information

Lecture 8: Probability

Lecture 8: Probability Lecture 8: Probability The idea of probability is well-known The flipping of a balanced coin can produce one of two outcomes: T (tail) and H (head) and the symmetry between the two outcomes means, of course,

More information

Chapter 4: An Introduction to Probability and Statistics

Chapter 4: An Introduction to Probability and Statistics Chapter 4: An Introduction to Probability and Statistics 4. Probability The simplest kinds of probabilities to understand are reflected in everyday ideas like these: (i) if you toss a coin, the probability

More information

CS4705. Probability Review and Naïve Bayes. Slides from Dragomir Radev

CS4705. Probability Review and Naïve Bayes. Slides from Dragomir Radev CS4705 Probability Review and Naïve Bayes Slides from Dragomir Radev Classification using a Generative Approach Previously on NLP discriminative models P C D here is a line with all the social media posts

More information

LECTURE NOTES by DR. J.S.V.R. KRISHNA PRASAD

LECTURE NOTES by DR. J.S.V.R. KRISHNA PRASAD .0 Introduction: The theory of probability has its origin in the games of chance related to gambling such as tossing of a coin, throwing of a die, drawing cards from a pack of cards etc. Jerame Cardon,

More information

Conditional Probability (cont'd)

Conditional Probability (cont'd) Conditional Probability (cont'd) April 26, 2006 Conditional Probability (cont'd) Midterm Problems In a ten-question true-false exam, nd the probability that a student get a grade of 70 percent or better

More information

STA 2023 EXAM-2 Practice Problems. Ven Mudunuru. From Chapters 4, 5, & Partly 6. With SOLUTIONS

STA 2023 EXAM-2 Practice Problems. Ven Mudunuru. From Chapters 4, 5, & Partly 6. With SOLUTIONS STA 2023 EXAM-2 Practice Problems From Chapters 4, 5, & Partly 6 With SOLUTIONS Mudunuru, Venkateswara Rao STA 2023 Spring 2016 1 1. A committee of 5 persons is to be formed from 6 men and 4 women. What

More information

Discrete Probability

Discrete Probability Discrete Probability Counting Permutations Combinations r- Combinations r- Combinations with repetition Allowed Pascal s Formula Binomial Theorem Conditional Probability Baye s Formula Independent Events

More information

Chapter 8 Sequences, Series, and Probability

Chapter 8 Sequences, Series, and Probability Chapter 8 Sequences, Series, and Probability Overview 8.1 Sequences and Series 8.2 Arithmetic Sequences and Partial Sums 8.3 Geometric Sequences and Partial Sums 8.5 The Binomial Theorem 8.6 Counting Principles

More information

Notes Week 2 Chapter 3 Probability WEEK 2 page 1

Notes Week 2 Chapter 3 Probability WEEK 2 page 1 Notes Week 2 Chapter 3 Probability WEEK 2 page 1 The sample space of an experiment, sometimes denoted S or in probability theory, is the set that consists of all possible elementary outcomes of that experiment

More information

MATH 10 INTRODUCTORY STATISTICS

MATH 10 INTRODUCTORY STATISTICS MATH 10 INTRODUCTORY STATISTICS Ramesh Yapalparvi Week 2 Chapter 4 Bivariate Data Data with two/paired variables, Pearson correlation coefficient and its properties, general variance sum law Chapter 6

More information

Introduction to Statistics

Introduction to Statistics Introduction to Statistics Preliminary Lecture Notes Adolfo J. Rumbos November 28, 2008 2 Contents 1 Preface 5 2 Introduction to Statistical Inference 7 2.1 Activity #1: An Age Discrimination Case?............

More information

Advanced Herd Management Probabilities and distributions

Advanced Herd Management Probabilities and distributions Advanced Herd Management Probabilities and distributions Anders Ringgaard Kristensen Slide 1 Outline Probabilities Conditional probabilities Bayes theorem Distributions Discrete Continuous Distribution

More information

CS 361: Probability & Statistics

CS 361: Probability & Statistics February 26, 2018 CS 361: Probability & Statistics Random variables The discrete uniform distribution If every value of a discrete random variable has the same probability, then its distribution is called

More information

1. When applied to an affected person, the test comes up positive in 90% of cases, and negative in 10% (these are called false negatives ).

1. When applied to an affected person, the test comes up positive in 90% of cases, and negative in 10% (these are called false negatives ). CS 70 Discrete Mathematics for CS Spring 2006 Vazirani Lecture 8 Conditional Probability A pharmaceutical company is marketing a new test for a certain medical condition. According to clinical trials,

More information

ACMS Statistics for Life Sciences. Chapter 13: Sampling Distributions

ACMS Statistics for Life Sciences. Chapter 13: Sampling Distributions ACMS 20340 Statistics for Life Sciences Chapter 13: Sampling Distributions Sampling We use information from a sample to infer something about a population. When using random samples and randomized experiments,

More information

Probability Experiments, Trials, Outcomes, Sample Spaces Example 1 Example 2

Probability Experiments, Trials, Outcomes, Sample Spaces Example 1 Example 2 Probability Probability is the study of uncertain events or outcomes. Games of chance that involve rolling dice or dealing cards are one obvious area of application. However, probability models underlie

More information

2. Conditional Probability

2. Conditional Probability ENGG 2430 / ESTR 2004: Probability and Statistics Spring 2019 2. Conditional Probability Andrej Bogdanov Coins game Toss 3 coins. You win if at least two come out heads. S = { HHH, HHT, HTH, HTT, THH,

More information

Business Statistics PROBABILITY DISTRIBUTIONS

Business Statistics PROBABILITY DISTRIBUTIONS Business Statistics PROBABILITY DISTRIBUTIONS CONTENTS Probability distribution functions (discrete) Characteristics of a discrete distribution Example: uniform (discrete) distribution Example: Bernoulli

More information

EXAM. Exam #1. Math 3342 Summer II, July 21, 2000 ANSWERS

EXAM. Exam #1. Math 3342 Summer II, July 21, 2000 ANSWERS EXAM Exam # Math 3342 Summer II, 2 July 2, 2 ANSWERS i pts. Problem. Consider the following data: 7, 8, 9, 2,, 7, 2, 3. Find the first quartile, the median, and the third quartile. Make a box and whisker

More information

Chapter 3: Random Variables 1

Chapter 3: Random Variables 1 Chapter 3: Random Variables 1 Yunghsiang S. Han Graduate Institute of Communication Engineering, National Taipei University Taiwan E-mail: yshan@mail.ntpu.edu.tw 1 Modified from the lecture notes by Prof.

More information

STA 2023 EXAM-2 Practice Problems From Chapters 4, 5, & Partly 6. With SOLUTIONS

STA 2023 EXAM-2 Practice Problems From Chapters 4, 5, & Partly 6. With SOLUTIONS STA 2023 EXAM-2 Practice Problems From Chapters 4, 5, & Partly 6 With SOLUTIONS Mudunuru Venkateswara Rao, Ph.D. STA 2023 Fall 2016 Venkat Mu ALL THE CONTENT IN THESE SOLUTIONS PRESENTED IN BLUE AND BLACK

More information

Binomial Probability. Permutations and Combinations. Review. History Note. Discuss Quizzes/Answer Questions. 9.0 Lesson Plan

Binomial Probability. Permutations and Combinations. Review. History Note. Discuss Quizzes/Answer Questions. 9.0 Lesson Plan 9.0 Lesson Plan Discuss Quizzes/Answer Questions History Note Review Permutations and Combinations Binomial Probability 1 9.1 History Note Pascal and Fermat laid out the basic rules of probability in a

More information

Chapter 2 Class Notes

Chapter 2 Class Notes Chapter 2 Class Notes Probability can be thought of in many ways, for example as a relative frequency of a long series of trials (e.g. flips of a coin or die) Another approach is to let an expert (such

More information

ECE353: Probability and Random Processes. Lecture 5 - Cumulative Distribution Function and Expectation

ECE353: Probability and Random Processes. Lecture 5 - Cumulative Distribution Function and Expectation ECE353: Probability and Random Processes Lecture 5 - Cumulative Distribution Function and Expectation Xiao Fu School of Electrical Engineering and Computer Science Oregon State University E-mail: xiao.fu@oregonstate.edu

More information

Phys 160 Thermodynamics and Statistical Physics. Lecture 8 Randomness and Probability

Phys 160 Thermodynamics and Statistical Physics. Lecture 8 Randomness and Probability Phys 160 Thermodynamics and Statistical Physics Lecture 8 Randomness and Probability All life and even science provide examples of situations where we are confronted with possibilities whose outcomes we

More information

Discrete Mathematics and Probability Theory Spring 2016 Rao and Walrand Note 14

Discrete Mathematics and Probability Theory Spring 2016 Rao and Walrand Note 14 CS 70 Discrete Mathematics and Probability Theory Spring 2016 Rao and Walrand Note 14 Introduction One of the key properties of coin flips is independence: if you flip a fair coin ten times and get ten

More information

Probability and Probability Distributions. Dr. Mohammed Alahmed

Probability and Probability Distributions. Dr. Mohammed Alahmed Probability and Probability Distributions 1 Probability and Probability Distributions Usually we want to do more with data than just describing them! We might want to test certain specific inferences about

More information

Name: Firas Rassoul-Agha

Name: Firas Rassoul-Agha Midterm 1 - Math 5010 - Spring 016 Name: Firas Rassoul-Agha Solve the following 4 problems. You have to clearly explain your solution. The answer carries no points. Only the work does. CALCULATORS ARE

More information

Probability Method in Civil Engineering Prof. Dr. Rajib Maity Department of Civil Engineering Indian Institute of Technology, Kharagpur

Probability Method in Civil Engineering Prof. Dr. Rajib Maity Department of Civil Engineering Indian Institute of Technology, Kharagpur Probability Method in Civil Engineering Prof. Dr. Rajib Maity Department of Civil Engineering Indian Institute of Technology, Kharagpur Lecture No. # 34 Probability Models using Discrete Probability Distributions

More information

Lecture 2. Binomial and Poisson Probability Distributions

Lecture 2. Binomial and Poisson Probability Distributions Durkin, Lecture 2, Page of 6 Lecture 2 Binomial and Poisson Probability Distributions ) Bernoulli Distribution or Binomial Distribution: Consider a situation where there are only two possible outcomes

More information