加州大学伯克利分校Stat2.2x Probability 概率初步学习笔记: Section 1 The Two Fundamental Rules (1.5-1.6)
Stat2.2x Probability(概率)课程由加州大学伯克利分校(University of California, Berkeley)于2014年在edX平台讲授。
Summary
Bayes Theorem $$P(A_i|B)=\frac{P(B|A_i)\cdot P(A_i)}{\sum_{j}P(B|A_j)\cdot P(A_j)}$$ where $$P(B)=\sum_{j}P(B|A_j)\cdot P(A_j)$$
GRADED EXERCISE SET 2
PROBLEM 1
Cards are dealt from a well shuffled standard deck. Find the chance that:
1A the first card is not a heart
1B the 10th card is the ace of spades
1C the 10th card is the ace of spades, given that the 50th card is the ace of diamonds
1D the 32nd card is red, given that the 51st and 52nd cards are red
1E the 51st card is red, given that the 32nd and 52nd cards are red
Solution
1A) $$P(\text{first card is not heart})=1-P(\text{first card is heart})=1-\frac{13}{52}=\frac{3}{4}$$
1B) Each card is randomly drawn thus the chance of a specific card is equivalent: $$P(\text{10th is ace of spades})=\frac{1}{52}$$
1C) There are 51 cards except the given card ace of diamonds, thus $$P(\text{10th is ace of spades}\ |\ \text{50th is ace of diamonds})=\frac{1}{51}$$
1D) $$P(\text{32nd is red}\ |\ \text{51st and 52nd are red})=\frac{26-2}{52-2}=\frac{12}{25}$$
1E) $$P(\text{51st is red}\ |\ \text{32nd and 52nd are red})=\frac{26-2}{52-2}=\frac{12}{25}$$
PROBLEM 2
A person is selected at random from a population that has the following characteristics: 65% of the people are men; the others are women 12% of the men are smokers 7% of the women are smokers
2A Find (correct to four decimal places) the chance that the selected person is a non-smoker, given that the person is a man.
2B Find (correct to four decimal places) the chance that the selected person is a woman who smokes.
2C Find (correct to four decimal places) the chance that the selected person is a smoker.
2D Given that the selected person is a smoker, what is the chance that the person is a woman? Please give your answer correct to four decimal places.
2E Find (correct to four decimal places) the chance that the selected person is a man or a non-smoker.
Solution
2A) $$P(\text{non-smoker}\ |\ \text{man})=1-0.12=0.88$$
2B) $$P(\text{woman & smoker})=(1-0.65)\times0.07=0.0245$$
2C) $$P(\text{smoker})=P(\text{smoker & man})+P(\text{smoker & woman})$$ $$=0.65\times0.12+(1-0.65)\times0.07=0.1025$$
2D) $$P(\text{woman}\ |\ \text{smoker})=\frac{P(\text{woman & smoker})}{P(\text{smoker})}=\frac{0.35\times0.07}{0.1025}=0.2390244$$
2E) $$P(\text{man or non-smoker})=P(\text{man})+P(\text{non-smoker})-P(\text{man & non-smoker})$$ $$=0.65+(1-0.1025)-0.65\times0.88=0.9755$$
PROBLEM 3
I am with a group of five of my friends. A box contains 8 pieces each of milk chocolate, white chocolate, and dark chocolate. The box is passed around the six of us, with each person taking 4 pieces. Assume that each person chooses at random without replacement from the available pieces. I am the last person to whom the box is passed. Find the chance that I pick 4 dark chocolates.
Solution
It it no difference between "I" am the first and "I" am the last. $$P=\frac{C_{8}^{4}}{C_{24}^{4}}=\frac{35}{5313}=0.006587615$$ $C_{n}^{m}=\frac{n!}{m!\cdot(n-m)!}$ and its R function is $\text{choose(n, m)}$.
PROBLEM 4
An urn contains 10 white balls and 5 blue balls. Draws are made repeatedly from the urn as follows. On each draw, a ball is drawn and its color noted; then it is replaced in the urn along with 3 more balls of its color. For example, if you draw a white ball the first time, then you will put it back in the urn along with 3 more white balls. So you will end up with 13 white balls and 5 blue balls.
4A Find the chance that the first ball drawn is blue.
4B Find the chance that the second ball drawn is blue, given that the first ball drawn is blue.
4C Find the chance that the second ball drawn is blue.
4D Find the chance that the first ball drawn is blue, given that the second ball drawn is blue.
Solution
4A) $$P(\text{first is blue})=\frac{5}{10+5}=\frac{1}{3}$$
4B) If the first is blue then it would be 10 white balls and 8 blue balls before the second draw. Hence $$P(\text{second is blue}\ |\ \text{first is blue})=\frac{8}{10+8}=\frac{4}{9}$$
4C) $$P(\text{second is blue})=P(\text{second is blue & first is white})+P(\text{second is blue & first is blue})$$ $$=P(\text{first is white})\cdot P(\text{second is blue}\ |\ \text{first is white})$$ $$+P(\text{first is blue})\cdot P(\text{second is blue}\ |\ \text{first is blue})$$ $$=\frac{10}{15}\times\frac{5}{13+5}+\frac{5}{15}\times\frac{8}{10+8}=\frac{1}{3}$$
4D) $$P(\text{first is blue}\ |\ \text{second is blue})=\frac{P(\text{first & second are blue})}{P(\text{second is blue})}=\frac{\frac{5}{15}\times\frac{8}{10+8}}{\frac{1}{3}}=\frac{4}{9}$$
加州大学伯克利分校Stat2.2x Probability 概率初步学习笔记: Section 1 The Two Fundamental Rules (1.5-1.6)的更多相关文章
- 加州大学伯克利分校Stat2.2x Probability 概率初步学习笔记: Section 5 The accuracy of simple random samples
Stat2.2x Probability(概率)课程由加州大学伯克利分校(University of California, Berkeley)于2014年在edX平台讲授. PDF笔记下载(Acad ...
- 加州大学伯克利分校Stat2.2x Probability 概率初步学习笔记: Section 4 The Central Limit Theorem
Stat2.2x Probability(概率)课程由加州大学伯克利分校(University of California, Berkeley)于2014年在edX平台讲授. PDF笔记下载(Acad ...
- 加州大学伯克利分校Stat2.2x Probability 概率初步学习笔记: Section 3 The law of averages, and expected values
Stat2.2x Probability(概率)课程由加州大学伯克利分校(University of California, Berkeley)于2014年在edX平台讲授. PDF笔记下载(Acad ...
- 加州大学伯克利分校Stat2.2x Probability 概率初步学习笔记: Section 2 Random sampling with and without replacement
Stat2.2x Probability(概率)课程由加州大学伯克利分校(University of California, Berkeley)于2014年在edX平台讲授. PDF笔记下载(Acad ...
- 加州大学伯克利分校Stat2.2x Probability 概率初步学习笔记: Final
Stat2.2x Probability(概率)课程由加州大学伯克利分校(University of California, Berkeley)于2014年在edX平台讲授. PDF笔记下载(Acad ...
- 加州大学伯克利分校Stat2.2x Probability 概率初步学习笔记: Midterm
Stat2.2x Probability(概率)课程由加州大学伯克利分校(University of California, Berkeley)于2014年在edX平台讲授. PDF笔记下载(Acad ...
- 加州大学伯克利分校Stat2.3x Inference 统计推断学习笔记: FINAL
Stat2.3x Inference(统计推断)课程由加州大学伯克利分校(University of California, Berkeley)于2014年在edX平台讲授. PDF笔记下载(Acad ...
- 加州大学伯克利分校Stat2.3x Inference 统计推断学习笔记: Section 2 Testing Statistical Hypotheses
Stat2.3x Inference(统计推断)课程由加州大学伯克利分校(University of California, Berkeley)于2014年在edX平台讲授. PDF笔记下载(Acad ...
- 加州大学伯克利分校Stat2.3x Inference 统计推断学习笔记: Section 1 Estimating unknown parameters
Stat2.3x Inference(统计推断)课程由加州大学伯克利分校(University of California, Berkeley)于2014年在edX平台讲授. PDF笔记下载(Acad ...
随机推荐
- 2016shenyang-1002-HDU5893-List wants to travel-树链剖分+线段树维护不同区间段个数
肯定先无脑树链剖分,然后线段树维护一段区间不同个数,再维护一个左右端点的费用. 线段树更新,pushDown,pushUp的时候要注意考虑链接位置的费用是否相同 还有就是树链剖分操作的时候,维护上一个 ...
- 几种任务调度的 Java 实现方法与比较
综观目前的 Web 应用,多数应用都具备任务调度的功能.本文由浅入深介绍了几种任务调度的 Java 实现方法,包括 Timer,Scheduler, Quartz 以及 JCron Tab,并对其优缺 ...
- 我的权限系统设计实现MVC4 + WebAPI + EasyUI + Knockout(五)框架及Web项目的组件化
一.组件化印象 1.先给大家看一张截图 如果我告诉大家,这就是一个web管理系统发布后的所有内容,你们会不会觉得太简洁了,只有一个web.config.一个Global.asax文件,其它的都是dll ...
- 20160307 - 双击打开 Js 扩展名的附件要保持留心
Windows Script Host 技术是一门很老的技术,它让 Windows 的自带脚本 VBScript 和 JScript 可以操作 Windows ActiveX 对象,这样的脚本具有本地 ...
- Java序列化中的SerialVersionUid
版权声明:本文为博主fbysss原创文章,转载请注明出处 作者:fbysssmsn:jameslastchina@hotmail.com blog:blog.csdn.NET/fbysss声明:本文 ...
- SNMP 原理与实战详解
原文地址:http://freeloda.blog.51cto.com/2033581/1306743 原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 .作者信息和本声明.否则将追究法 ...
- BGP--边界网关协议
要全面了解BGP,首先我们要回答以下看上去很简单的问题:为什么需要BGP,也就是说BGP是如何产生的,它解决了什么问题.带着以上问题,我们先简单的回顾一个路由协议发展的轨迹. 首先路由的实质是描述一个 ...
- Oracle 11g 7个压缩包说明
最初,我以为都要解压.无意间看到的一博客,明白压缩包的含义.哈哈 Oracle11g有多张安装光盘: 文件名称 ...
- Ubuntu安装出现左上角光标一直闪解决方式
Ubuntu安装出现左上角光标一直闪解决方式: 01下载ubunu http://cn.ubuntu.com/download/ 02.软碟通 http://pan.baidu.com/s/1qY8O ...
- HTML5+AJAX原生分块上传文件的关键参数设置
processData:false 这是jquery.ajax的一个参数.默认值为true,表示会将非字符串对象自动变成k1=v1&k2=v2的形式,例如一个数组参数{d:[1,2]},到服务 ...