概率论快速学习03:概率公理补充
原创地址: http://www.cnblogs.com/Alandre/ (泥沙砖瓦浆木匠),需要转载的,保留下! Thanks
“应注意到一个析取命题的对立命题是由该析取命题各部分的对立内容构成的一个合取命题” ——奥卡姆的威廉著,《逻辑学论文》
Written In The Font
I like maths when i was young,but I need to record them. So I am writing with some demos of Python
Content
If two events, A and B are independent then the joint probability is
For example, if two coins are flipped the chance of both being heads is
In Python
A = set([1,2,3,4,5]) B = set([2,4,3,5,6]) C = set([4,6,7,4,2,1]) print(A & B & C)
Output:
{2, 4} |
# & find the objects the same in Set
If either event A or event B or both events occur on a single performance of an experiment this is called the union of the events A and B denoted as:
.
If two events are mutually exclusive then the probability of either occurring is
For example, the chance of rolling a 1 or 2 on a six-sided die is
In Python
A = set([1,2,3,4,5]) B = set([2,4,3,5,6]) C = set([4,6,7,4,2,1]) print(A | B | C)
Output:
{1, 2, 3, 4, 5, 6, 7} |
# | find all the objects the set has
If the events are not mutually exclusive then
Proved
For example:
Let’s use Python to show u an example about devil's bones (骰子,不是 魔鬼的骨头哈)
A = set([1,2,3,4,5,6]) # the all results of devil's bones B = set([2,4,3]) # the A event results C = set([4,6]) # the B event results P_B = 1/2 P_C = 1/3 D = B | C print(D) P_D = 2/3 print(P_D == (P_B+P_C - 1/6))
Output:
{2, 3, 4, 6} |
Let me show u some others :
If u r tired , please have a tea , or look far to make u feel better.If u r ok, Go on!
Conditional probability is the probability of some event A, given the occurrence of some other event B. Conditional probability is written:
,
Some authors, such as De Finetti, prefer to introduce conditional probability as an axiom of probability:
①
Given two events A and B from the sigma-field of a probability space with P(B) > 0, the conditional probability of A given Bis defined as the quotient of the probability of the joint of events A and B, and the probability of B:
②
the ①② expressions are the same. Maybe u can remember one , the other will be easy to be coverted.So I am going to tell an excemple to let u remmeber it(them):
“the phone has a power supply (B), the phone can be used to call others(A).”
One → : When the phone has a full power supply , u can call others.
Two →P(B): has a power supply
Three = One + Two → U can call others about your love with others.
do u remember it?
Editor's Note
“路漫漫其修远兮,吾将上下而求索”
The Next
cya soon. We meet a big mess called The total probability and Bayes .
The total probability
Bayes (Thomas, 1702-1761,) ;
if u wanna talk with me , add the follow:
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· 单线程的Redis速度为什么快?
· Pantheons:用 TypeScript 打造主流大模型对话的一站式集成库