Law of large numbers and Central limit theorem
大数定律 Law of large numbers (LLN)
虽然名字是 Law,但其实是严格证明过的 Theorem
- weak law of large number (Khinchin's law)
The weak law of large numbers: the sample average converges in probability to the expected value
$\bar{X_n}=\frac{1}{n}(X_1+ \cdots +X_n) \overset{p}{\to} E\{X\} $
- strong law of large number (proved by Kolmogorov in 1930)
The strong law of large numbers: the sample average converges almost surely to the expected value
$\bar{X_n}=\frac{1}{n}(X_1+ \cdots +X_n) \overset{a.s.}{\to} E\{X\} $
https://en.wikipedia.org/wiki/Law_of_large_numbers
https://terrytao.wordpress.com/2008/06/18/the-strong-law-of-large-numbers/
中心极限定理 Central Limit Theorem (CLT)
https://en.wikipedia.org/wiki/Central_limit_theorem
切比雪夫不等式 (Chebyshev's Inequality)
Let $X$ be a random variable with finite expected value $\mu$ and finit non-zero variance $\sigma^2$, then for any real number $k>0$,
$ \mathrm{Pr} \left( \left|X-\mu\right| \geq k \right) \leq \frac{\sigma^2}{k^2}$
马尔科夫不等式 (Markov's inequality)
If X is a nonnegative random variable and a > 0, then the probability that X is at least a is at most the expectation of X divided by a
$ \mathrm{Pr} \left( X \geq a \right) \leq \frac{\mu}{a} $
切尔诺夫限 (Chernoff bound)
The generic Chernoff bound for a random variable X is attained by applying Markov's inequality to etX. For every t > 0:
$ \mathrm{Pr} \left( X \geq a \right)=\mathrm{Pr} \left( e^{tX} \geq e^{ta} \right) \leq \frac{E[e^{tX}]}{e^{ta}} $
Law of large numbers and Central limit theorem的更多相关文章
- 加州大学伯克利分校Stat2.2x Probability 概率初步学习笔记: Section 4 The Central Limit Theorem
Stat2.2x Probability(概率)课程由加州大学伯克利分校(University of California, Berkeley)于2014年在edX平台讲授. PDF笔记下载(Acad ...
- 【概率论】6-2:大数定理(The Law of Large Numbers)
title: [概率论]6-2:大数定理(The Law of Large Numbers) categories: - Mathematic - Probability keywords: - Ma ...
- Sampling Distribution of the Sample Mean|Central Limit Theorem
7.3 The Sampling Distribution of the Sample Mean population:1000:Scale are normally distributed with ...
- Sampling Distributions and Central Limit Theorem in R(转)
The Central Limit Theorem (CLT), and the concept of the sampling distribution, are critical for unde ...
- 【概率论】6-3:中心极限定理(The Central Limit Theorem)
title: [概率论]6-3:中心极限定理(The Central Limit Theorem) categories: - Mathematic - Probability keywords: - ...
- Appendix 1- LLN and Central Limit Theorem
1. 大数定律(LLN) 设Y1,Y2,……Yn是独立同分布(iid,independently identically distribution)的随机变量,A = SY /n = (Y1+...+ ...
- 中心极限定理(Central Limit Theorem)
中心极限定理:每次从总体中抽取容量为n的简单随机样本,这样抽取很多次后,如果样本容量很大,样本均值的抽样分布近似服从正态分布(期望为 ,标准差为 ). (注:总体数据需独立同分布) 那么样本容量n应 ...
- 中心极限定理 | central limit theorem | 大数定律 | law of large numbers
每个大学教材上都会提到这个定理,枯燥地给出了定义和公式,并没有解释来龙去脉,导致大多数人望而生畏,并没有理解它的美. <女士品茶>有感 待续~ 参考:怎样理解和区分中心极限定理与大数定律?
- Markov and Chebyshev Inequalities and the Weak Law of Large Numbers
https://www.math.wustl.edu/~russw/f10.math493/chebyshev.pdf http://www.tkiryl.com/Probability/Chapte ...
随机推荐
- 【PAT甲级】1075 PAT Judge (25 分)
题意: 输入三个正整数N,K,M(N<=10000,K<=5,M<=100000),接着输入一行K个正整数表示该题满分,接着输入M行数据,每行包括学生的ID(五位整数1~N),题号和 ...
- 大端(bigend)与小端(littleend)
大端:是指数据的低位保存在内存的高地址中,而数据的高位,保存在内存的低地址中: 小端:是指数据的高位保存在内存的高地址中,而数据的高 ...
- 「POI2010」Bridges
传送门 Luogu团队题链接 解题思路 首先二分答案,然后在所有边权小于二分值的边和所有点组成的图中判欧拉回路. 由于可能出现混合图,所以要用到网络流. 把所有无向边钦定一个方向,那么原图就是一个有向 ...
- Steam 游戏 《Crashlands(崩溃大陆)》修改器制作-[先使用CE写,之后有时间的话改用CheatMaker](2020年寒假小目标12)
日期:2020.02.15 博客期:155 星期六 [温馨提示]: 只是想要修改器的网友,可以直接点击此链接下载: 只是想拿CT文件的网友,可以直接点击此链接下载: 没有博客园账号的网友,可以将页面下 ...
- 用myeclipse快速搭建hibernate实现数据库访问
前言 hibernate使用的大致过程为引入jar包.配置主配置文件.配置映射文件.编写实体类.编写dao.但是每一步都需要知道的内容都相对不少,造成困难.如果使用myeclipse提供的支持将非常容 ...
- python splash scrapy
python splash scrapy 1. 前言 slpash是一个渲染引擎,它有自己的api,可以直接访问splash服务的http接口,但也有对应的包python-splash方便调 ...
- 吴裕雄--天生自然Numpy库学习笔记:NumPy 高级索引
import numpy as np x = np.array([[1, 2], [3, 4], [5, 6]]) y = x[[0,1,2], [0,1,0]] print (y) import n ...
- Unity中调用Windows窗口选择文件
1.OpenFileName数据接收类,如下: using UnityEngine; using System.Collections; using System; using System.Runt ...
- ElasticSearch学习记录 - 命令示例
GET /searchfilmcomments/searchfilmcomments/_search { "query": { "match_all": {} ...
- Linux OS 集群 免密登录
1. ssh-keygen 生成密钥 2. ssh-copy-id 集群主机名 参考: [图文详解]linux下配置远程免密登录