证明线性估计器(测试版)是蓝色的?

机器算法验证 回归 线性模型 证明 蓝色的
2022-03-16 13:17:36

在 pdf 的Statistical Inference pg 570一书中,有一个关于如何证明线性估计器是 BLUE 的推导。

我一直到 11.3.18,然后下一部分卡住了我。

在找到满足条件的d_i之后: \Sigma d_i = 0 & \Sigma d_ix_i = 1,我们从引理中得到 11.31.7: \sum_{i=1}^nd_ix_i=\sum_{i=1}^ nK(x_i-\bar{x})x_i=KS_{xx}diΣdi=0Σdixi=1

i=1ndixi=i=1nK(xix¯)xi=KSxx

他们从哪里得到Sxx那不应该被定义为i=1n(xix¯)2不等于上面的等式。

此外,如果我的跟踪正确,那么我不确定 11.3.19 是如何制定的。

我非常接近弄清楚伙计们,我会很感激一些指导。

3个回答

如果你想证明的 OLS是 BLUE(最佳线性无偏估计量),你必须证明以下两件事:首先是无偏的,其次是是所有线性无偏估计量中最小的。β^β^Var(β^)

可以在此处找到 OLS 估计器无偏的证明http://economictheoryblog.com/2015/02/19/ols_estimator/

可以在这里找到是所有线性无偏估计量中最小的证明http://economictheoryblog.com/2015/02/26/markov_theorem/Var(β^)

Sxx=i=1n(xix¯)2=i=1n(xi22xix¯+x¯2)
=(i=1nxi2)nx¯2=(i=1nxi2)x¯i=1nxi=i=1nxi2x¯xi=i=1n(xix¯)xi

It seems you need to show:

i=1n(xix¯)xi=i=1n(xix¯)2

Try this: Expand the right hand side out into two terms, one of which is the left hand side.

Then just show the other term is zero.

This then shows you the manipulation required (though in reverse order) for your derivation.