SlideShare a Scribd company logo
1 of 12
Inferential Statistics
What we Studied
• Measures of Central Tendency
• Measures of Dispersion
• Basics of Probability
• Marginal Probability
• Bayes Theorem
• Probability Distributions
– Binomial
– Poisson
– Normal
What we will Cover
• Mutually exclusive Vs Independent Events.
• Conditional Probability.
• Bayes Theorem.
• Applying Probability Concepts.
• Applying Distribution Concepts.
• Applying Probability & Distribution in R.
• AOC’s.
Mutually ExclusiveVs Independent Events
Basic Event Types
• Mutually Exclusive Events
• Non Exclusive Events
• Independent Events
• Non Independent Events.
MUTUALLY EXCLUSIVE INDEPENDENT
Both Events cannot happen at the same
time.
Happening of one event cannot impact the
happening of another event.
Occurrence of one event will lead to non-
occurrence of another
1st event has no influence on the 2nd event.
Within the single event. Outside the single event.
P(A n B) = 0 P(A n B) is non zero
Additive in nature Multiplicative in nature
Discrete Probabilities
Example
1. A survey of magazine subscribers showed that 45.8% rented a car during the past
12 months for business purposes, 54% rented a car for personal reasons, and 30%
for both personal & business reasons.
a. What is the prob. That a subscriber rented a car for both business or personal
reasons. P(rent for Business) + P(rent for personal) = 45.8% + 54% = 99.8%
b. What is the prob. That a subscriber did not rent a car for either business or
personal reasons. 1 – P(rent for business / personal) = 1-99.8% =0.2%
2. NBA shooter converts 93% of its shots. During the game the same NBA shooter is
fouled and is awarded two shots.
a. What is the prob. That he will make both shots. P(first shot)*p(second shot) –
93% * 93% = 86.49%
b. What is the prob. That he will make at least one shot. 1 – prob(no hit) = 1 – 0.5%
= 99.5%
c. What is the prob. That he will miss both shots. p(no hit) = P(miss first hit)* P(miss
second hit) = 7% * 7% = 0.5%
Conditional Proabability
Example
3. Visa Card studied how frequently, young consumers, ages 18-24, use plastic cards.
The results provided the following probabilities.
• Prob. That a consumer uses a plastic card when making a purchase .37
• Given that consumer uses a plastic card, there is a .19 prob. That the consumer is
18-24 years old.
• Given that consumer uses a plastic card, there is a .81 prob. That the consumer is
24+ years old.
• 14% of the consumer population is b/w 18-24 years
a) Given the consumer is b/w 18-24, what is the prob. that the consumer uses
plastic card = p(plastic/age =18-24) = 0.0703/0.14 =0.5021
18-24 24+ total
Uses plastic 0.37*0.19= 0.0703 0.37*0.81= 0.2997 0.37
Does not use plastic 0.14-0.0703= 0.0697 0.86-0.2997= 0.5603 1-0.37= 0.63
ages 0.14 1-0.14= 0.86 1
Conditional Proabability
Example
3. Visa Card studied how frequently, young consumers, ages 18-24, use plastic cards.
The results provided the following probabilities.
• Prob. That a consumer uses a plastic card when making a purchase .37
• Given that consumer uses a plastic card, there is a .19 prob. That the consumer is
18-24 years old.
• Given that consumer uses a plastic card, there is a .81 prob. That the consumer is
24+ years old.
• 14% of the consumer population is b/w 18-24 years
b) Given the consumer is 24+, what is the prob. that the consumer uses plastic card
P(usage/ age 24+) = 0.2997/0.86 = 0.0035
c) What is the interpretations of the probabilities shown above.
18-24 24+ total
Uses plastic 0.37*0.19= 0.0703 0.37*0.81= 0.2997 0.37
Does not use plastic 0.14-0.0703= 0.0697 0.86-0.2997= 0.5603 1-0.37= 0.63
ages 0.14 1-0.14= 0.86 1
BayesTheorem
Example
4. A local bank reviewed its credit card policy with the intention of recalling some of its
credit cards. In the past approx. 5% of cardholders defaulted, leaving the bank
unable to collect outstanding balance. Hence, management established a prior
probability of 0.05 that any particular cardholder will default. The bank also
found that the probability of missing a monthly payment is .20 for customers who
do not default. Of course, the probability of missing a monthly payment for those
who default is 0.5.
Q: Given that a customer missed one or more monthly payments, compute the prob.
That a customer will default
D = Default, Dc = customer doesn’t default, M = missed payment.
P(D) = 5% P(D c ) = 95% P(M|D c ) = 20% P(M|D) = 100%
P(D|M) = P(D∩M)/ P(M) = P(D∩M)/ ( P(D∩M)+P(Dc∩M))
P(D|M) = 5%*100% / (5%*100%)+(95%*20%) = 20.83%
Identifying ProbabilityTechnique
Applying Probability Concepts: -
Key Steps: -
a) Identify the problem
b) Categorize the problem into Exclusive or Independence.
c) Check if Conditional Probability is applied.
d) Check for Bayes Theorem application.
• Flipping a coin
• Flipping a coin twice, probability of getting a both heads
• Flipping a coin twice, probability of getting both heads with a 1st coin already
giving a head.
• Flipping a coin twice, probability of getting both heads, with one coin already
giving a head.
Identifying DistributionTechnique
Applying Distribution Concepts: -
Key Steps: -
a) Extending the probability to a sample of data ; for ex. Coin tossing 1000 times.
b) Above is a probability distribution.
c) Determine the data i.e. Discrete or Continuous.
d) If Discrete and has only two outcomes, the events are independent apply binom
e) If time comes in picture, think Poisson
f) If data is continuous with mean & S.D. provided, think Normal Dist.
Binomial & Poisson
Binomial Distribution: -
1. The census current population survey shows 28% of individuals , ages 25 and
older have completed 4 years of college. For a sample of 15 individuals, ages 25
and older, answer the following.
A) What is the prob. 4 will have completed four years of college
P(x = 4) = 15C4*0.28^4*0.72^11 = binompdf(15,0.28,4) = 0.2262
A) What is the prob. 3 or more will have completed 4 years of college
P(3<= x <=15) = 1 - P(0<= x <=2) = 1 - binomcdf(15,0.28,2) = 0.8355
Poisson Distribution.
2. An average of 15 aircrafts accidents occur each year. Compute the following
a) Mean number of aircraft accidents during a month.E(X) = 15/12 = 1.25
b) Probability of no accidents during a month. P(X=0)=Poisson(0,1.25,TRUE)=0.286505
c) Probability of exactly one accident during a month.
P(X=0)=Poisson(1,1.25,FALSE)=0.358131
d) Probability of more than one accident during a month. 1-P(X=1) =
1-POISSON(1,1.25, FALSE) = 0.641869
Normal Distribution
Normal Distribution: -
3. During early 2012, economic hardship was stretching the limits of France welfare
system. One indicator of the level of hardship was the increase in the number of
people bringing items to the pawnbroker. Assume the number of people visiting
the pawnshop is normally distributed with the mean of 658.
a) Suppose you learn that on 3% of days, 610 or fewer people bought items to the
pawnshop. What is the S.d. of the no. of people bringing items to the pawnshop.
Population mean = 658 i.e p(x< 658)=0.03 i.e z value (610-658/ sd )=
zvalue (0.03)=-1.88;sd = 25.5319
b) On any given day, what is the prob. That b/w 600 and 700 people bring items to
the pawnshop
P(600<x<700) = NORMDIST(700,658,25.5319,TRUE)-NORMDIST(600,658,25.5319,TRUE)=0.938
a) How many people bring items to the pawnshop on the busiest 3% of days.
NORM.INV(0.97,658,25.5319) = 706.0202

More Related Content

Similar to Additional Reading material-Probability.ppt

Probability Distributions
Probability Distributions Probability Distributions
Probability Distributions Anthony J. Evans
 
1) Those methods involving the collection, presentation, and chara.docx
1) Those methods involving the collection, presentation, and chara.docx1) Those methods involving the collection, presentation, and chara.docx
1) Those methods involving the collection, presentation, and chara.docxdorishigh
 
Classification methods and assessment.pdf
Classification methods and assessment.pdfClassification methods and assessment.pdf
Classification methods and assessment.pdfLeonardo Auslender
 
Statistik Chapter 5 (1)
Statistik Chapter 5 (1)Statistik Chapter 5 (1)
Statistik Chapter 5 (1)WanBK Leo
 
4. Choice Decision BE under certainity _II_ _1_.pptx
4. Choice Decision BE under certainity _II_ _1_.pptx4. Choice Decision BE under certainity _II_ _1_.pptx
4. Choice Decision BE under certainity _II_ _1_.pptxSyedMuhammadSaad11
 
Binomial distribution
Binomial distributionBinomial distribution
Binomial distributionGlobal Polis
 
presentation on calculation of sample size
presentation on calculation of sample sizepresentation on calculation of sample size
presentation on calculation of sample sizeRichaMishra186341
 
Question 1 Independent random samples taken on two university .docx
Question 1 Independent random samples taken on two university .docxQuestion 1 Independent random samples taken on two university .docx
Question 1 Independent random samples taken on two university .docxIRESH3
 
Why I hate minimisation
Why I hate minimisationWhy I hate minimisation
Why I hate minimisationStephen Senn
 
Applied Data Science for monetization: pitfalls, common misconceptions, and n...
Applied Data Science for monetization: pitfalls, common misconceptions, and n...Applied Data Science for monetization: pitfalls, common misconceptions, and n...
Applied Data Science for monetization: pitfalls, common misconceptions, and n...DevGAMM Conference
 
Statr sessions 9 to 10
Statr sessions 9 to 10Statr sessions 9 to 10
Statr sessions 9 to 10Ruru Chowdhury
 
QNT 351 Final Exam Answers 2015 version
QNT 351 Final Exam Answers 2015 versionQNT 351 Final Exam Answers 2015 version
QNT 351 Final Exam Answers 2015 versionvincenzwhaley
 
QNT 351 Final Exam Answers 2015 version
QNT 351 Final Exam Answers 2015 versionQNT 351 Final Exam Answers 2015 version
QNT 351 Final Exam Answers 2015 versioncelestiaorias
 
QNT 351 Final Exam Answers 2015 version
QNT 351 Final Exam Answers 2015 versionQNT 351 Final Exam Answers 2015 version
QNT 351 Final Exam Answers 2015 versioncelestiaorias
 
QNT 351 Final Exam Answers 2015 version
QNT 351 Final Exam Answers 2015 versionQNT 351 Final Exam Answers 2015 version
QNT 351 Final Exam Answers 2015 versioncelestiaorias
 
QNT 351 Final Exam Answers 2015 version
QNT 351 Final Exam Answers 2015 versionQNT 351 Final Exam Answers 2015 version
QNT 351 Final Exam Answers 2015 versioncelestiaorias
 
QNT 351 Final Exam Answers 2015 version
QNT 351 Final Exam Answers 2015 versionQNT 351 Final Exam Answers 2015 version
QNT 351 Final Exam Answers 2015 versionkainemanz
 

Similar to Additional Reading material-Probability.ppt (20)

Probability Distributions
Probability Distributions Probability Distributions
Probability Distributions
 
1) Those methods involving the collection, presentation, and chara.docx
1) Those methods involving the collection, presentation, and chara.docx1) Those methods involving the collection, presentation, and chara.docx
1) Those methods involving the collection, presentation, and chara.docx
 
Classification methods and assessment.pdf
Classification methods and assessment.pdfClassification methods and assessment.pdf
Classification methods and assessment.pdf
 
Statistik Chapter 5 (1)
Statistik Chapter 5 (1)Statistik Chapter 5 (1)
Statistik Chapter 5 (1)
 
Ch13 slides
Ch13 slidesCh13 slides
Ch13 slides
 
4. Choice Decision BE under certainity _II_ _1_.pptx
4. Choice Decision BE under certainity _II_ _1_.pptx4. Choice Decision BE under certainity _II_ _1_.pptx
4. Choice Decision BE under certainity _II_ _1_.pptx
 
Binomial distribution
Binomial distributionBinomial distribution
Binomial distribution
 
presentation on calculation of sample size
presentation on calculation of sample sizepresentation on calculation of sample size
presentation on calculation of sample size
 
Question 1 Independent random samples taken on two university .docx
Question 1 Independent random samples taken on two university .docxQuestion 1 Independent random samples taken on two university .docx
Question 1 Independent random samples taken on two university .docx
 
Why I hate minimisation
Why I hate minimisationWhy I hate minimisation
Why I hate minimisation
 
Mock 2015
Mock 2015Mock 2015
Mock 2015
 
Applied Data Science for monetization: pitfalls, common misconceptions, and n...
Applied Data Science for monetization: pitfalls, common misconceptions, and n...Applied Data Science for monetization: pitfalls, common misconceptions, and n...
Applied Data Science for monetization: pitfalls, common misconceptions, and n...
 
Probability
ProbabilityProbability
Probability
 
Statr sessions 9 to 10
Statr sessions 9 to 10Statr sessions 9 to 10
Statr sessions 9 to 10
 
QNT 351 Final Exam Answers 2015 version
QNT 351 Final Exam Answers 2015 versionQNT 351 Final Exam Answers 2015 version
QNT 351 Final Exam Answers 2015 version
 
QNT 351 Final Exam Answers 2015 version
QNT 351 Final Exam Answers 2015 versionQNT 351 Final Exam Answers 2015 version
QNT 351 Final Exam Answers 2015 version
 
QNT 351 Final Exam Answers 2015 version
QNT 351 Final Exam Answers 2015 versionQNT 351 Final Exam Answers 2015 version
QNT 351 Final Exam Answers 2015 version
 
QNT 351 Final Exam Answers 2015 version
QNT 351 Final Exam Answers 2015 versionQNT 351 Final Exam Answers 2015 version
QNT 351 Final Exam Answers 2015 version
 
QNT 351 Final Exam Answers 2015 version
QNT 351 Final Exam Answers 2015 versionQNT 351 Final Exam Answers 2015 version
QNT 351 Final Exam Answers 2015 version
 
QNT 351 Final Exam Answers 2015 version
QNT 351 Final Exam Answers 2015 versionQNT 351 Final Exam Answers 2015 version
QNT 351 Final Exam Answers 2015 version
 

More from HaritikaChhatwal1

Visualization IN DATA ANALYTICS IN TIME SERIES
Visualization IN DATA ANALYTICS IN TIME SERIESVisualization IN DATA ANALYTICS IN TIME SERIES
Visualization IN DATA ANALYTICS IN TIME SERIESHaritikaChhatwal1
 
TS Decomposition IN data Time Series Fore
TS Decomposition IN data Time Series ForeTS Decomposition IN data Time Series Fore
TS Decomposition IN data Time Series ForeHaritikaChhatwal1
 
TIMES SERIES FORECASTING ON HISTORICAL DATA IN R
TIMES SERIES FORECASTING ON HISTORICAL DATA  IN RTIMES SERIES FORECASTING ON HISTORICAL DATA  IN R
TIMES SERIES FORECASTING ON HISTORICAL DATA IN RHaritikaChhatwal1
 
SMOTE and K-Fold Cross Validation-Presentation.pptx
SMOTE and K-Fold Cross Validation-Presentation.pptxSMOTE and K-Fold Cross Validation-Presentation.pptx
SMOTE and K-Fold Cross Validation-Presentation.pptxHaritikaChhatwal1
 
Factor Analysis-Presentation DATA ANALYTICS
Factor Analysis-Presentation DATA ANALYTICSFactor Analysis-Presentation DATA ANALYTICS
Factor Analysis-Presentation DATA ANALYTICSHaritikaChhatwal1
 
Decision Tree_Loan Delinquent_Problem Statement.pdf
Decision Tree_Loan Delinquent_Problem Statement.pdfDecision Tree_Loan Delinquent_Problem Statement.pdf
Decision Tree_Loan Delinquent_Problem Statement.pdfHaritikaChhatwal1
 
Frequency Based Classification Algorithms_ important
Frequency Based Classification Algorithms_ importantFrequency Based Classification Algorithms_ important
Frequency Based Classification Algorithms_ importantHaritikaChhatwal1
 
M2W1 - FBS - Descriptive Statistics_Mentoring Presentation.pptx
M2W1 - FBS - Descriptive Statistics_Mentoring Presentation.pptxM2W1 - FBS - Descriptive Statistics_Mentoring Presentation.pptx
M2W1 - FBS - Descriptive Statistics_Mentoring Presentation.pptxHaritikaChhatwal1
 
Introduction to R _IMPORTANT FOR DATA ANALYTICS
Introduction to R _IMPORTANT FOR DATA ANALYTICSIntroduction to R _IMPORTANT FOR DATA ANALYTICS
Introduction to R _IMPORTANT FOR DATA ANALYTICSHaritikaChhatwal1
 
BUSINESS ANALYTICS WITH R SOFTWARE DIAST
BUSINESS ANALYTICS WITH R SOFTWARE DIASTBUSINESS ANALYTICS WITH R SOFTWARE DIAST
BUSINESS ANALYTICS WITH R SOFTWARE DIASTHaritikaChhatwal1
 
SESSION 1-2 [Autosaved] [Autosaved].pptx
SESSION 1-2 [Autosaved] [Autosaved].pptxSESSION 1-2 [Autosaved] [Autosaved].pptx
SESSION 1-2 [Autosaved] [Autosaved].pptxHaritikaChhatwal1
 
WORKSHEET INTRO AND TVM _SESSION 1 AND 2.pdf
WORKSHEET INTRO AND TVM _SESSION 1 AND 2.pdfWORKSHEET INTRO AND TVM _SESSION 1 AND 2.pdf
WORKSHEET INTRO AND TVM _SESSION 1 AND 2.pdfHaritikaChhatwal1
 
Epigeum at ntunive singapore MED900.pptx
Epigeum at ntunive singapore MED900.pptxEpigeum at ntunive singapore MED900.pptx
Epigeum at ntunive singapore MED900.pptxHaritikaChhatwal1
 
MED 900 Correlational Studies online safety sake.pptx
MED 900 Correlational Studies online safety sake.pptxMED 900 Correlational Studies online safety sake.pptx
MED 900 Correlational Studies online safety sake.pptxHaritikaChhatwal1
 
Nw Microsoft PowerPoint Presentation.pptx
Nw Microsoft PowerPoint Presentation.pptxNw Microsoft PowerPoint Presentation.pptx
Nw Microsoft PowerPoint Presentation.pptxHaritikaChhatwal1
 
HOWs CORRELATIONAL STUDIES are performed
HOWs CORRELATIONAL STUDIES are performedHOWs CORRELATIONAL STUDIES are performed
HOWs CORRELATIONAL STUDIES are performedHaritikaChhatwal1
 
CHAPTER 4 -TYPES OF BUSINESS.pptx
CHAPTER 4 -TYPES OF BUSINESS.pptxCHAPTER 4 -TYPES OF BUSINESS.pptx
CHAPTER 4 -TYPES OF BUSINESS.pptxHaritikaChhatwal1
 
CHAPTER 3-ENTREPRENEURSHIP [Autosaved].pptx
CHAPTER 3-ENTREPRENEURSHIP [Autosaved].pptxCHAPTER 3-ENTREPRENEURSHIP [Autosaved].pptx
CHAPTER 3-ENTREPRENEURSHIP [Autosaved].pptxHaritikaChhatwal1
 

More from HaritikaChhatwal1 (20)

Visualization IN DATA ANALYTICS IN TIME SERIES
Visualization IN DATA ANALYTICS IN TIME SERIESVisualization IN DATA ANALYTICS IN TIME SERIES
Visualization IN DATA ANALYTICS IN TIME SERIES
 
TS Decomposition IN data Time Series Fore
TS Decomposition IN data Time Series ForeTS Decomposition IN data Time Series Fore
TS Decomposition IN data Time Series Fore
 
TIMES SERIES FORECASTING ON HISTORICAL DATA IN R
TIMES SERIES FORECASTING ON HISTORICAL DATA  IN RTIMES SERIES FORECASTING ON HISTORICAL DATA  IN R
TIMES SERIES FORECASTING ON HISTORICAL DATA IN R
 
SMOTE and K-Fold Cross Validation-Presentation.pptx
SMOTE and K-Fold Cross Validation-Presentation.pptxSMOTE and K-Fold Cross Validation-Presentation.pptx
SMOTE and K-Fold Cross Validation-Presentation.pptx
 
Factor Analysis-Presentation DATA ANALYTICS
Factor Analysis-Presentation DATA ANALYTICSFactor Analysis-Presentation DATA ANALYTICS
Factor Analysis-Presentation DATA ANALYTICS
 
Decision Tree_Loan Delinquent_Problem Statement.pdf
Decision Tree_Loan Delinquent_Problem Statement.pdfDecision Tree_Loan Delinquent_Problem Statement.pdf
Decision Tree_Loan Delinquent_Problem Statement.pdf
 
Frequency Based Classification Algorithms_ important
Frequency Based Classification Algorithms_ importantFrequency Based Classification Algorithms_ important
Frequency Based Classification Algorithms_ important
 
M2W1 - FBS - Descriptive Statistics_Mentoring Presentation.pptx
M2W1 - FBS - Descriptive Statistics_Mentoring Presentation.pptxM2W1 - FBS - Descriptive Statistics_Mentoring Presentation.pptx
M2W1 - FBS - Descriptive Statistics_Mentoring Presentation.pptx
 
Introduction to R _IMPORTANT FOR DATA ANALYTICS
Introduction to R _IMPORTANT FOR DATA ANALYTICSIntroduction to R _IMPORTANT FOR DATA ANALYTICS
Introduction to R _IMPORTANT FOR DATA ANALYTICS
 
BUSINESS ANALYTICS WITH R SOFTWARE DIAST
BUSINESS ANALYTICS WITH R SOFTWARE DIASTBUSINESS ANALYTICS WITH R SOFTWARE DIAST
BUSINESS ANALYTICS WITH R SOFTWARE DIAST
 
SESSION 1-2 [Autosaved] [Autosaved].pptx
SESSION 1-2 [Autosaved] [Autosaved].pptxSESSION 1-2 [Autosaved] [Autosaved].pptx
SESSION 1-2 [Autosaved] [Autosaved].pptx
 
WORKSHEET INTRO AND TVM _SESSION 1 AND 2.pdf
WORKSHEET INTRO AND TVM _SESSION 1 AND 2.pdfWORKSHEET INTRO AND TVM _SESSION 1 AND 2.pdf
WORKSHEET INTRO AND TVM _SESSION 1 AND 2.pdf
 
Epigeum at ntunive singapore MED900.pptx
Epigeum at ntunive singapore MED900.pptxEpigeum at ntunive singapore MED900.pptx
Epigeum at ntunive singapore MED900.pptx
 
MED 900 Correlational Studies online safety sake.pptx
MED 900 Correlational Studies online safety sake.pptxMED 900 Correlational Studies online safety sake.pptx
MED 900 Correlational Studies online safety sake.pptx
 
Nw Microsoft PowerPoint Presentation.pptx
Nw Microsoft PowerPoint Presentation.pptxNw Microsoft PowerPoint Presentation.pptx
Nw Microsoft PowerPoint Presentation.pptx
 
HOWs CORRELATIONAL STUDIES are performed
HOWs CORRELATIONAL STUDIES are performedHOWs CORRELATIONAL STUDIES are performed
HOWs CORRELATIONAL STUDIES are performed
 
DIAS PRESENTATION.pptx
DIAS PRESENTATION.pptxDIAS PRESENTATION.pptx
DIAS PRESENTATION.pptx
 
FULLTEXT01.pdf
FULLTEXT01.pdfFULLTEXT01.pdf
FULLTEXT01.pdf
 
CHAPTER 4 -TYPES OF BUSINESS.pptx
CHAPTER 4 -TYPES OF BUSINESS.pptxCHAPTER 4 -TYPES OF BUSINESS.pptx
CHAPTER 4 -TYPES OF BUSINESS.pptx
 
CHAPTER 3-ENTREPRENEURSHIP [Autosaved].pptx
CHAPTER 3-ENTREPRENEURSHIP [Autosaved].pptxCHAPTER 3-ENTREPRENEURSHIP [Autosaved].pptx
CHAPTER 3-ENTREPRENEURSHIP [Autosaved].pptx
 

Recently uploaded

Unveiling Insights: The Role of a Data Analyst
Unveiling Insights: The Role of a Data AnalystUnveiling Insights: The Role of a Data Analyst
Unveiling Insights: The Role of a Data AnalystSamantha Rae Coolbeth
 
Call Girls In Mahipalpur O9654467111 Escorts Service
Call Girls In Mahipalpur O9654467111  Escorts ServiceCall Girls In Mahipalpur O9654467111  Escorts Service
Call Girls In Mahipalpur O9654467111 Escorts ServiceSapana Sha
 
From idea to production in a day – Leveraging Azure ML and Streamlit to build...
From idea to production in a day – Leveraging Azure ML and Streamlit to build...From idea to production in a day – Leveraging Azure ML and Streamlit to build...
From idea to production in a day – Leveraging Azure ML and Streamlit to build...Florian Roscheck
 
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
Customer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptxCustomer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptxEmmanuel Dauda
 
Low Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service Bhilai
Low Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service BhilaiLow Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service Bhilai
Low Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service BhilaiSuhani Kapoor
 
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...Suhani Kapoor
 
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...Jack DiGiovanna
 
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...dajasot375
 
Call Girls In Noida City Center Metro 24/7✡️9711147426✡️ Escorts Service
Call Girls In Noida City Center Metro 24/7✡️9711147426✡️ Escorts ServiceCall Girls In Noida City Center Metro 24/7✡️9711147426✡️ Escorts Service
Call Girls In Noida City Center Metro 24/7✡️9711147426✡️ Escorts Servicejennyeacort
 
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.pptdokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.pptSonatrach
 
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /WhatsappsBeautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsappssapnasaifi408
 
RA-11058_IRR-COMPRESS Do 198 series of 1998
RA-11058_IRR-COMPRESS Do 198 series of 1998RA-11058_IRR-COMPRESS Do 198 series of 1998
RA-11058_IRR-COMPRESS Do 198 series of 1998YohFuh
 
Dubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls DubaiDubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls Dubaihf8803863
 
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service AmravatiVIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service AmravatiSuhani Kapoor
 
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdfMarket Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdfRachmat Ramadhan H
 

Recently uploaded (20)

Unveiling Insights: The Role of a Data Analyst
Unveiling Insights: The Role of a Data AnalystUnveiling Insights: The Role of a Data Analyst
Unveiling Insights: The Role of a Data Analyst
 
Call Girls In Mahipalpur O9654467111 Escorts Service
Call Girls In Mahipalpur O9654467111  Escorts ServiceCall Girls In Mahipalpur O9654467111  Escorts Service
Call Girls In Mahipalpur O9654467111 Escorts Service
 
From idea to production in a day – Leveraging Azure ML and Streamlit to build...
From idea to production in a day – Leveraging Azure ML and Streamlit to build...From idea to production in a day – Leveraging Azure ML and Streamlit to build...
From idea to production in a day – Leveraging Azure ML and Streamlit to build...
 
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
Customer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptxCustomer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptx
 
Low Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service Bhilai
Low Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service BhilaiLow Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service Bhilai
Low Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service Bhilai
 
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
 
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
 
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
 
E-Commerce Order PredictionShraddha Kamble.pptx
E-Commerce Order PredictionShraddha Kamble.pptxE-Commerce Order PredictionShraddha Kamble.pptx
E-Commerce Order PredictionShraddha Kamble.pptx
 
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
 
Call Girls In Noida City Center Metro 24/7✡️9711147426✡️ Escorts Service
Call Girls In Noida City Center Metro 24/7✡️9711147426✡️ Escorts ServiceCall Girls In Noida City Center Metro 24/7✡️9711147426✡️ Escorts Service
Call Girls In Noida City Center Metro 24/7✡️9711147426✡️ Escorts Service
 
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.pptdokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
 
Deep Generative Learning for All - The Gen AI Hype (Spring 2024)
Deep Generative Learning for All - The Gen AI Hype (Spring 2024)Deep Generative Learning for All - The Gen AI Hype (Spring 2024)
Deep Generative Learning for All - The Gen AI Hype (Spring 2024)
 
Delhi 99530 vip 56974 Genuine Escort Service Call Girls in Kishangarh
Delhi 99530 vip 56974 Genuine Escort Service Call Girls in  KishangarhDelhi 99530 vip 56974 Genuine Escort Service Call Girls in  Kishangarh
Delhi 99530 vip 56974 Genuine Escort Service Call Girls in Kishangarh
 
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /WhatsappsBeautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsapps
 
RA-11058_IRR-COMPRESS Do 198 series of 1998
RA-11058_IRR-COMPRESS Do 198 series of 1998RA-11058_IRR-COMPRESS Do 198 series of 1998
RA-11058_IRR-COMPRESS Do 198 series of 1998
 
Dubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls DubaiDubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls Dubai
 
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service AmravatiVIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
 
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdfMarket Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
 

Additional Reading material-Probability.ppt

  • 2. What we Studied • Measures of Central Tendency • Measures of Dispersion • Basics of Probability • Marginal Probability • Bayes Theorem • Probability Distributions – Binomial – Poisson – Normal
  • 3. What we will Cover • Mutually exclusive Vs Independent Events. • Conditional Probability. • Bayes Theorem. • Applying Probability Concepts. • Applying Distribution Concepts. • Applying Probability & Distribution in R. • AOC’s.
  • 4. Mutually ExclusiveVs Independent Events Basic Event Types • Mutually Exclusive Events • Non Exclusive Events • Independent Events • Non Independent Events. MUTUALLY EXCLUSIVE INDEPENDENT Both Events cannot happen at the same time. Happening of one event cannot impact the happening of another event. Occurrence of one event will lead to non- occurrence of another 1st event has no influence on the 2nd event. Within the single event. Outside the single event. P(A n B) = 0 P(A n B) is non zero Additive in nature Multiplicative in nature
  • 5. Discrete Probabilities Example 1. A survey of magazine subscribers showed that 45.8% rented a car during the past 12 months for business purposes, 54% rented a car for personal reasons, and 30% for both personal & business reasons. a. What is the prob. That a subscriber rented a car for both business or personal reasons. P(rent for Business) + P(rent for personal) = 45.8% + 54% = 99.8% b. What is the prob. That a subscriber did not rent a car for either business or personal reasons. 1 – P(rent for business / personal) = 1-99.8% =0.2% 2. NBA shooter converts 93% of its shots. During the game the same NBA shooter is fouled and is awarded two shots. a. What is the prob. That he will make both shots. P(first shot)*p(second shot) – 93% * 93% = 86.49% b. What is the prob. That he will make at least one shot. 1 – prob(no hit) = 1 – 0.5% = 99.5% c. What is the prob. That he will miss both shots. p(no hit) = P(miss first hit)* P(miss second hit) = 7% * 7% = 0.5%
  • 6. Conditional Proabability Example 3. Visa Card studied how frequently, young consumers, ages 18-24, use plastic cards. The results provided the following probabilities. • Prob. That a consumer uses a plastic card when making a purchase .37 • Given that consumer uses a plastic card, there is a .19 prob. That the consumer is 18-24 years old. • Given that consumer uses a plastic card, there is a .81 prob. That the consumer is 24+ years old. • 14% of the consumer population is b/w 18-24 years a) Given the consumer is b/w 18-24, what is the prob. that the consumer uses plastic card = p(plastic/age =18-24) = 0.0703/0.14 =0.5021 18-24 24+ total Uses plastic 0.37*0.19= 0.0703 0.37*0.81= 0.2997 0.37 Does not use plastic 0.14-0.0703= 0.0697 0.86-0.2997= 0.5603 1-0.37= 0.63 ages 0.14 1-0.14= 0.86 1
  • 7. Conditional Proabability Example 3. Visa Card studied how frequently, young consumers, ages 18-24, use plastic cards. The results provided the following probabilities. • Prob. That a consumer uses a plastic card when making a purchase .37 • Given that consumer uses a plastic card, there is a .19 prob. That the consumer is 18-24 years old. • Given that consumer uses a plastic card, there is a .81 prob. That the consumer is 24+ years old. • 14% of the consumer population is b/w 18-24 years b) Given the consumer is 24+, what is the prob. that the consumer uses plastic card P(usage/ age 24+) = 0.2997/0.86 = 0.0035 c) What is the interpretations of the probabilities shown above. 18-24 24+ total Uses plastic 0.37*0.19= 0.0703 0.37*0.81= 0.2997 0.37 Does not use plastic 0.14-0.0703= 0.0697 0.86-0.2997= 0.5603 1-0.37= 0.63 ages 0.14 1-0.14= 0.86 1
  • 8. BayesTheorem Example 4. A local bank reviewed its credit card policy with the intention of recalling some of its credit cards. In the past approx. 5% of cardholders defaulted, leaving the bank unable to collect outstanding balance. Hence, management established a prior probability of 0.05 that any particular cardholder will default. The bank also found that the probability of missing a monthly payment is .20 for customers who do not default. Of course, the probability of missing a monthly payment for those who default is 0.5. Q: Given that a customer missed one or more monthly payments, compute the prob. That a customer will default D = Default, Dc = customer doesn’t default, M = missed payment. P(D) = 5% P(D c ) = 95% P(M|D c ) = 20% P(M|D) = 100% P(D|M) = P(D∩M)/ P(M) = P(D∩M)/ ( P(D∩M)+P(Dc∩M)) P(D|M) = 5%*100% / (5%*100%)+(95%*20%) = 20.83%
  • 9. Identifying ProbabilityTechnique Applying Probability Concepts: - Key Steps: - a) Identify the problem b) Categorize the problem into Exclusive or Independence. c) Check if Conditional Probability is applied. d) Check for Bayes Theorem application. • Flipping a coin • Flipping a coin twice, probability of getting a both heads • Flipping a coin twice, probability of getting both heads with a 1st coin already giving a head. • Flipping a coin twice, probability of getting both heads, with one coin already giving a head.
  • 10. Identifying DistributionTechnique Applying Distribution Concepts: - Key Steps: - a) Extending the probability to a sample of data ; for ex. Coin tossing 1000 times. b) Above is a probability distribution. c) Determine the data i.e. Discrete or Continuous. d) If Discrete and has only two outcomes, the events are independent apply binom e) If time comes in picture, think Poisson f) If data is continuous with mean & S.D. provided, think Normal Dist.
  • 11. Binomial & Poisson Binomial Distribution: - 1. The census current population survey shows 28% of individuals , ages 25 and older have completed 4 years of college. For a sample of 15 individuals, ages 25 and older, answer the following. A) What is the prob. 4 will have completed four years of college P(x = 4) = 15C4*0.28^4*0.72^11 = binompdf(15,0.28,4) = 0.2262 A) What is the prob. 3 or more will have completed 4 years of college P(3<= x <=15) = 1 - P(0<= x <=2) = 1 - binomcdf(15,0.28,2) = 0.8355 Poisson Distribution. 2. An average of 15 aircrafts accidents occur each year. Compute the following a) Mean number of aircraft accidents during a month.E(X) = 15/12 = 1.25 b) Probability of no accidents during a month. P(X=0)=Poisson(0,1.25,TRUE)=0.286505 c) Probability of exactly one accident during a month. P(X=0)=Poisson(1,1.25,FALSE)=0.358131 d) Probability of more than one accident during a month. 1-P(X=1) = 1-POISSON(1,1.25, FALSE) = 0.641869
  • 12. Normal Distribution Normal Distribution: - 3. During early 2012, economic hardship was stretching the limits of France welfare system. One indicator of the level of hardship was the increase in the number of people bringing items to the pawnbroker. Assume the number of people visiting the pawnshop is normally distributed with the mean of 658. a) Suppose you learn that on 3% of days, 610 or fewer people bought items to the pawnshop. What is the S.d. of the no. of people bringing items to the pawnshop. Population mean = 658 i.e p(x< 658)=0.03 i.e z value (610-658/ sd )= zvalue (0.03)=-1.88;sd = 25.5319 b) On any given day, what is the prob. That b/w 600 and 700 people bring items to the pawnshop P(600<x<700) = NORMDIST(700,658,25.5319,TRUE)-NORMDIST(600,658,25.5319,TRUE)=0.938 a) How many people bring items to the pawnshop on the busiest 3% of days. NORM.INV(0.97,658,25.5319) = 706.0202