기본 콘텐츠로 건너뛰기

inequalities in fundamental statistics

inequalities

Hoeffding’s Inequality

Given n(n>0)n(n>0) i.i.d. random variables X1,X2,...,XniidX_1,X_2,...,X_n \overset{iid}{\sim} that are almost surely bounded – meaning P(X[a,b])=0\mathbf{P}(X \notin [a,b])=0:

P(XnˉE[X]ϵ)2exp(2nϵ2(ba)2)for all ϵ>0\mathbf{P}\left(\left| \bar{X_n} - \mathbb{E}[X]\right| \ge \epsilon\right) \le 2 \exp\left(-{2n\epsilon^2 \over (b-a)^2}\right) \qquad \text{for all }\epsilon \gt 0

Unlike for the central limit theorem, here the sample size nn does not need to be large.

Markov inequality

For a random variable X0X\ge 0 with mean μ>0\mu \gt 0, and any number t>0t \gt 0:

P(Xt)μt\mathbf{P}(X \ge t) \le {\mu \over t}.

Note that the Markov inequality is restricted to non-negative random variables.

Chebyshev inequality

For a random variable XX with (finite) mean μ\mu and variance σ2\sigma^2, and for any number t0t \ge 0,

p(Xμt)σ2t2\mathbf{p}\left(\left| X - \mu \right| \ge t\right) \le {\sigma^2 \over t^2}

Remark:
When Markov inequality (Xμ)2\left(X-\mu\right)^2 is applied to , we obtain Chebyshev’s inequality. Markov inequality is also used in the proof of Hoeffding’s inequality.

댓글

이 블로그의 인기 게시물

Example of java class transform with java agent and BCI

Dynamic transform   예제 시나리오 원하는 작업  DB에 요청하는 모든 쿼리를 출력 작업 순서 Agent 작성 ClassFileTransformer 구현 Agent 작성 Java Agent 구성도 Manifest 파일 Manifest-Version: 1.0 Premain-Class: sample.bci.Agent Agent-Class: sample.bci.Agent Can-Redefine-Classes: True must be end with new line - http://docs.oracle.com/javase/tutorial/deployment/jar/modman.html Agent.java /** * example for bci with java agent */ package sample.bci; import java.lang.instrument.Instrumentation; /** * @author k * */ public class Agent { public static void premain(String args, Instrumentation inst) { inst.addTransformer(new JdbcQueryTransformer()); } public static void agentmain(String args, Instrumentation inst) { inst.addTransformer(new JdbcQueryTransformer()); } } JdbcQueryTransformer. java /** * example for bci with java agent */ package sample.bci; import java.lang.instrument.ClassFileTransformer; import java.lang.instrument.IllegalClassFormatException; impor...

Auth using firebaseui for angular

Install firebaseui-angular current firebaseui-angular 3.3.3 install spit out warnings with angular 7! Add the FirebaseUIModule with the config to your imports. CSS Import Import the firebaseui css to your src/styles.css file Use tag Use below tag where login select div is needed. ref :  https://www.npmjs.com/package/firebaseui-angular