├── .gitignore ├── Basic.md ├── README.md ├── answer.tex ├── appendix.tex ├── chapter1.tex ├── chapter2.tex ├── chapter3.tex ├── chapter4.tex ├── chapter5.tex ├── chapter6.tex ├── chapter7.tex ├── chapter8.tex ├── delete-temp-files.bat ├── elegantbook.cls ├── figure ├── REBook.png ├── cover.jpg ├── fig3-1-1.pdf ├── fig3-1-2.pdf ├── fig3-1-3a.pdf ├── fig3-1-3b.pdf ├── fig3-1-4.pdf ├── fig3-1-5.pdf ├── fig3-2-1.pdf ├── fig3-2-2.pdf ├── fig3-2-3.pdf ├── fig3-2-4a.pdf ├── fig3-2-4b.pdf ├── fig3-4-1.pdf ├── fig3-4-2.pdf ├── fig4-4-1.pdf ├── fig4-4-2.pdf └── logo.png ├── main.tex ├── preface.tex ├── ref.bib ├── settings.tex └── 茆诗松概率论LaTeX.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | ## Core latex/pdflatex auxiliary files: 2 | *.aux 3 | *.lof 4 | *.log 5 | *.lot 6 | *.fls 7 | *.out 8 | *.toc 9 | *.fmt 10 | *.fot 11 | *.cb 12 | *.cb2 13 | .*.lb 14 | main.pdf 15 | 16 | 17 | ## Intermediate documents: 18 | *.dvi 19 | *.xdv 20 | *-converted-to.* 21 | # these rules might exclude image files for figures etc. 22 | # *.ps 23 | # *.eps 24 | # *.pdf 25 | 26 | ## Generated if empty string is given at "Please type another file name for output:" 27 | # .pdf 28 | 29 | ## Bibliography auxiliary files (bibtex/biblatex/biber): 30 | *.bbl 31 | *.bcf 32 | *.blg 33 | *-blx.aux 34 | *-blx.bib 35 | *.run.xml 36 | 37 | ## Build tool auxiliary files: 38 | *.fdb_latexmk 39 | *.synctex 40 | *.synctex(busy) 41 | *.synctex.gz 42 | *.synctex.gz(busy) 43 | *.pdfsync 44 | 45 | ## Auxiliary and intermediate files from other packages: 46 | # algorithms 47 | *.alg 48 | *.loa 49 | 50 | # achemso 51 | acs-*.bib 52 | 53 | # amsthm 54 | *.thm 55 | 56 | # beamer 57 | *.nav 58 | *.pre 59 | *.snm 60 | *.vrb 61 | 62 | # changes 63 | *.soc 64 | 65 | # cprotect 66 | *.cpt 67 | 68 | # elsarticle (documentclass of Elsevier journals) 69 | *.spl 70 | 71 | # endnotes 72 | *.ent 73 | 74 | # fixme 75 | *.lox 76 | 77 | # feynmf/feynmp 78 | *.mf 79 | *.mp 80 | *.t[1-9] 81 | *.t[1-9][0-9] 82 | *.tfm 83 | 84 | #(r)(e)ledmac/(r)(e)ledpar 85 | *.end 86 | *.?end 87 | *.[1-9] 88 | *.[1-9][0-9] 89 | *.[1-9][0-9][0-9] 90 | *.[1-9]R 91 | *.[1-9][0-9]R 92 | *.[1-9][0-9][0-9]R 93 | *.eledsec[1-9] 94 | *.eledsec[1-9]R 95 | *.eledsec[1-9][0-9] 96 | *.eledsec[1-9][0-9]R 97 | *.eledsec[1-9][0-9][0-9] 98 | *.eledsec[1-9][0-9][0-9]R 99 | 100 | # glossaries 101 | *.acn 102 | *.acr 103 | *.glg 104 | *.glo 105 | *.gls 106 | *.glsdefs 107 | 108 | # gnuplottex 109 | *-gnuplottex-* 110 | 111 | # gregoriotex 112 | *.gaux 113 | *.gtex 114 | 115 | # htlatex 116 | *.4ct 117 | *.4tc 118 | *.idv 119 | *.lg 120 | *.trc 121 | *.xref 122 | 123 | # hyperref 124 | *.brf 125 | 126 | # knitr 127 | *-concordance.tex 128 | # TODO Comment the next line if you want to keep your tikz graphics files 129 | *.tikz 130 | *-tikzDictionary 131 | 132 | # listings 133 | *.lol 134 | 135 | # makeidx 136 | *.idx 137 | *.ilg 138 | *.ind 139 | *.ist 140 | 141 | # minitoc 142 | *.maf 143 | *.mlf 144 | *.mlt 145 | *.mtc[0-9]* 146 | *.slf[0-9]* 147 | *.slt[0-9]* 148 | *.stc[0-9]* 149 | 150 | # minted 151 | _minted* 152 | *.pyg 153 | 154 | # morewrites 155 | *.mw 156 | 157 | # nomencl 158 | *.nlg 159 | *.nlo 160 | *.nls 161 | 162 | # pax 163 | *.pax 164 | 165 | # pdfpcnotes 166 | *.pdfpc 167 | 168 | # sagetex 169 | *.sagetex.sage 170 | *.sagetex.py 171 | *.sagetex.scmd 172 | 173 | # scrwfile 174 | *.wrt 175 | 176 | # sympy 177 | *.sout 178 | *.sympy 179 | sympy-plots-for-*.tex/ 180 | 181 | # pdfcomment 182 | *.upa 183 | *.upb 184 | 185 | # pythontex 186 | *.pytxcode 187 | pythontex-files-*/ 188 | 189 | # thmtools 190 | *.loe 191 | 192 | # TikZ & PGF 193 | *.dpth 194 | *.md5 195 | *.auxlock 196 | 197 | # todonotes 198 | *.tdo 199 | 200 | # easy-todo 201 | *.lod 202 | 203 | # xmpincl 204 | *.xmpi 205 | 206 | # xindy 207 | *.xdy 208 | 209 | # xypic precompiled matrices 210 | *.xyc 211 | 212 | # endfloat 213 | *.ttt 214 | *.fff 215 | 216 | # Latexian 217 | TSWLatexianTemp* 218 | 219 | ## Editors: 220 | # WinEdt 221 | *.bak 222 | *.sav 223 | 224 | # Texpad 225 | .texpadtmp 226 | 227 | # Kile 228 | *.backup 229 | 230 | # KBibTeX 231 | *~[0-9]* 232 | 233 | # auto folder when using emacs and auctex 234 | ./auto/* 235 | *.el 236 | 237 | # expex forward references with \gathertags 238 | *-tags.tex 239 | 240 | # standalone packages 241 | *.sta 242 | 243 | # generated if using elsarticle.cls 244 | *.spl 245 | 246 | # Camuse 247 | Temp/* 248 | push.sh 249 | main.pdf 250 | Source/* 251 | *.ini -------------------------------------------------------------------------------- /Basic.md: -------------------------------------------------------------------------------- 1 | ![](https://img.shields.io/badge/Language-TeX-yellow.svg)![](https://img.shields.io/badge/version-0.1-red.svg)![](https://img.shields.io/github/last-commit/hoganbin/TeX-degree-template-making.svg)![](https://img.shields.io/github/repo-size/hoganbin/TeX-degree-template-making.svg)![](https://img.shields.io/github/languages/code-size/hoganbin/TeX-degree-template-making.svg)![](https://img.shields.io/github/followers/hoganbin.svg?label=Follow) 2 | 3 | # 八一效率工具推荐(qq:19259128696) 4 | 5 | 1. notepad++ 文本编辑器 6 | 2. VSCode 前端编辑器/文本编辑器 7 | 3. f.lux 护眼工具 8 | 4. 火萤酱 快速搜索工具,功能自己摸索吧。 打开快捷键:CTrl+Q 自定义设置 9 | 5. mathpix 截图latex公式转化 10 | 6. screenshot 截图文字转化或同声翻译 11 | 7. Snipaste 一个简单但强大的贴图工具,同时也可以执行截屏、标注等功能。 打开快捷键:F1 12 | 8. PicGo 呢?—— 图床客户端。 13 | 9. 幕布—— 文档管理+思维导图。 14 | 15 | - 关于如何设置软件开机自启。把你需要开机自启的软件.exe创建快捷方式,然后剪切在命令行输shell:startup复制到该文件夹中,最后你在命令行输入msconfig就会发现在你的启动程序项目就有你设置的软件。 16 | 17 | 好了,我暂时就推荐这么几个工具给大家。回到 Git 教学。 18 | 19 | ------ 20 | 21 | ### 认识Git 与 GitHub 22 | 23 | - Git是一款免费、开源的分布式版本控制系统Github是用Git做版本控制的代码托管平台 24 | - Github是一个用Git做版本控制的项目托管平台。 25 | 26 | GitHub就是一个免费托管开源代码的远程仓库。但是对于某些视源代码如生命的商业公司来说,既不想公开源代码,又舍不得给GitHub交保护费,那就只能自己搭建一台Git服务器作为私有仓库使用。 27 | 28 | ____________ 29 | 30 | ### 开始安装 Git 31 | 32 | 打开Git的官方网站,下载下来之后安装时选择默认选项即可 33 | 34 | 安装完成之后,在任意位置点击鼠标右键,菜单栏里看到**Git Bash**代表安装完成 35 | 36 | 安装完成后,还需要最后一步设置,在命令行输入: 37 | 38 | **$ git config --global user.name"Your Name"** 39 | 40 | **$ git config --global user.email"email@example.com"** 41 | 42 | 注意 git config 命令的 --global 参数,用了这个参数,表示你这台机器上所有的Git仓库都会使用这个配置,当然也可以对某个仓库指定不同的用户名和Email地址。 43 | 44 | ___ 45 | 46 | ###使用 Git 和 GitHub 步骤: 47 | 48 | 提前推荐个软件,你在用的:Typora。 49 | 50 | 1. 先配置 SSH(一个协议)。请看演示 51 | 1. 电脑 Git Bash: ssh-keygen -t rsa 过程中,回车即可。 52 | 2. 打开github--> setting --> SSH,添加 SSH public 文件内容。 53 | 测试下:ssh git@github.com 看到:You've successfully authenticated 表示成功。 54 | 2. 可以使用 Git 命令玩了。 就是这么简单。经常用的命令就是如下几个: 55 | 1. git status 查看本地仓库状态 56 | 2. git add . 添加所有改动到暂缓区,git add a.txt 这是添加a.txt单个文件 57 | 3. git commit -m "你的注释说明" 58 | 4. git push 提交到GitHub 59 | 60 | 61 | 如何使用 Git 提交自己的文件到 GitHub? 62 | 63 | ``` 64 | 1. 选择仓库的 ssh 的地址 65 | 2. 克隆(下载),比如:git clone git@github.com:mathflow/LaTex_Notes.git可以看到克隆下来后有个.git 后缀隐藏文件,即为记录本地仓库的一切改动。 66 | 3. 切换到仓库目录 67 | 4. 修改 68 | 5. git add . 69 | 6. git commit - m "注释说明" 70 | 7. git push 提交到远程服务器GitHub 71 | 注:随时可以使用 git status 查看仓库状态。另外,git branch -a 查看和 72 | 远程服务器关联情况。 73 | 这个期间应该会要求你配置下name和email的,你这里肯定是你之前已经配置过了。 74 | ``` 75 | 76 | 77 | ## Git 分支操作 78 | 79 | 1. 创立分支 test 80 | `git branch test` 81 | 2. 切换到分支 test 82 | `git checkout test` 83 | 3. 在分支下操作 84 | + 切换到 test 分支 `git checkout test` 85 | + 添加内容到暂存区 `git add chapterx.tex` 86 | + 提交到本地库 `git commit -m "commit msg"` 87 | + 提交到远程 test 分支 `git push origin test` 88 | 4. 更新主分支内容 89 | + 切换到主分支,`git checkout master` 90 | + 拉取主分支最新内容 `git pull` 91 | + 添加到暂存区 `git add files....` 92 | + 提交到本地库 `git commit -m "commit msg"` 93 | + 提交到远程 master 分支 `git push origin master` 94 | 5. 合并主分支更新的内容 95 | 有时候,主分支更新了内容,这时候想要把主分支的内容合并到 test 分支下: 96 | + 切换到 test 分支,`git checkout test` 97 | + 合并主分支,`git merge master` 98 | + 提交合并之后的 test 分支内容到远端 test 分支 `git push` 99 | 100 | **注:** 为了让本地 test 分支能够 pull github 上的 test 分支的内容,需要设置远端分支。 101 | 102 | ```shell 103 | git checkout test 104 | git branch --set-upstream-to=origin/test 105 | ``` 106 | 107 | 在 push 的时候如果出现问题,按提示操作(merge 或者 set-upstream)。 108 | 109 | END! 110 | ? 111 | GitHub 挺多资料的,好好利用! 112 | 113 | ------ 114 | 115 | 如何使用 GitHub 作为图床? 116 | 117 | 1. Github上新建一个仓库,作为存储图片的。(仓库私有、公有,随你吧) 118 | 2. 新建 token,比如这是你的:8692ec2d94698d7cc14408257ee5bf4e***.. 119 | 3. 在PicGo配置下即可。其中的,分支名设置为默认的:master即可 120 | 121 | 注1:我帮你设置的上传快捷键为 Ctrl+W(被占用了,你自己重新设置为自想要的吧) 122 | 注2:还是设置仓库为公有仓库吧,避免出现莫名其妙问题! 123 | 注3:上传成功之后,默认粘贴板的地址为这样的:![](https://raw.githubusercontent.com/mathflow/ImagesBed/master/images/20190202224740.jpg) 124 | 125 | 注4:如果要上传到仓库的文件夹 /images 下,在存储路径处设置为:/images。 126 | 127 | 注5:自定义域名不设置也行。 128 | ? (但如果出问题,那就设置为这样的: 129 | https://github.com/mathflow/ImagesBed/blob/master,但前提是你的仓库是公开仓库) 130 | 131 | 注6:建议还是设置为时间戳重命名把,这样文件名称就为时间戳形式。 132 | 133 | 注7:使用github做图床,速度上你懂得,有点慢。每个仓库有1000g存储容量。 134 | 135 | This team is mainly used for template making in universities. Welcome to LaTeX users! 136 | 137 | TeX-degree-template-making 138 | 139 | 140 | 141 | 142 | 143 | 更新时间2019年4月12日 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 概率论与数理统计教程 2 | 使用 2004 年版本 3 | 4 | # 分工 5 | 6 | + 第一章(曹甄强) 7 | + 第二章(酸奶) 8 | + 第三章(徐澳进,何骏炜) 9 | + 第四章(啸行) 10 | + 第五章(向禹) 11 | + 第六章(汤) 12 | + 第七章(八一) 13 | + 第八章(东升) 14 | 15 | # 数学排版约定 16 | 17 | 1. **中英文之间一定要加空格!!!** 18 | 2. 标点符号全部使用英文符号,文本模式中,**标点符号后需要加空格** 19 | 1. 示例:`中文 English $x$ 难道不是这样写的么? 根据韦达定理, 平方和 $x^2$ 和另外 $y^2$, 我也不知道我在写什么.` 20 | 3. 不要用直立积分符号 21 | 4. 行内数学模式内,分数用 `\tfrac` 或者 `/`,行间公式用 `\frac` 或者 `\dfrac` 22 | 5. 使用 `\leqslant` 和 `\leq` 均可 23 | 6. 自然对数底定义新命令 `\newcommand{\ee}{\mathrm e}` 24 | 在指数形式比较复杂时,用 `\exp` 表示自然对数底 25 | 7. 行内分式不需要用 `\displaystyle` 26 | 8. 关键词用 `\textbf{关键词}`,然后建立索引 `\index{G!关键词}` 27 | `G` 表示名词首字母用于排序,`!` 后面的就是关键词的名字 28 | 9. 积分里面的微分符号 `d` 定义为`\newcommand{\dd}{\,d}` 29 | 输入的时候就输入 `\dd`,这样即便有必要改为正体也容易 30 | 10. 数学公式中,使用 `\ldots` 进行罗列,如果两边是操作符,用 `\cdots` 31 | 11. 交叉引用-标签 32 | + 公式(equation):`\label{eq:3.1.2}` 33 | + 表格(table):`\label{tab:3.1.2}` 34 | + 图(figure):`\label{fig:3.1.2}` 35 | + 章节(chapter):`\label{cha:3.1.2}` 36 | + 小节(section):`\label{sec:3.1.2}` 37 | + 小小节(subsection):`\label{ssec:3.1.2}` 38 | + 示例(example):`\label{exam:3.1.2}` 39 | + 练习(exercise):`\label{exer:3.1.2}` 40 | + **其他定理环境交叉引用,请参考 ElegantBook 说明文档**。 41 | 12. 交叉引用-引用 42 | + 使用`~\ref{label}` 进行引用,注意空格,示例:`在表~\ref{tab:3.1.2} 中...` 43 | 13. 表格推荐使用 table+tabular 环境结合三线表:`\toprule`,`\midrule`,`\bottomrule` 制作。 44 | 14. 公式里面距离,一般距离用 `\;`,然后大距离用 `\quad` 或者 `\qquad`(基本用 `\quad`) 45 | 15. 习题用settings里面定义的xiti环境\begin{xiti}blablabla\end{xiti},内层问题列表用enumerate环境 46 | 47 | 48 | ```tex 49 | \let\leq\leqslant 50 | ``` 51 | 52 | # 其他 53 | 54 | + 排版时建立索引 55 | + 图片注意命名规范,可以直接用书中得命名方式,避免冲突 56 | + 编译文件需使用**汉仪大宋简字体**,该字体可在[汉仪字库](http://www.hanyi.com.cn/font-list)下载,按网站流程注册后即可 57 | -------------------------------------------------------------------------------- /answer.tex: -------------------------------------------------------------------------------- 1 | \chapter*{习题答案} 2 | \addcontentsline{toc}{chapter}{习题答案} 3 | 4 | \setcounter{chapter}{1} 5 | \setcounter{section}{0} 6 | \begin{answer} 7 | \item \begin{enumerate} 8 | \item $\Omega= \{(0,0,0),(0,0,1),(0,1,0),(1,0,0),(0,1,1),(1,0,1), 9 | (1,1,0),(1,1,1)\}$,其中0表示反面,1表示正面. 10 | \item $\Omega=\{(x,y,z):x,y,z=1,2,3,4,5,6\}$. 11 | \item $\Omega=\{(1),(0,1),(0,0,1),(0,0,0,1),\cdots\}$. 12 | \item $\Omega=\{0,1,2,\cdots\}$. 13 | \item $\Omega=\{t:t\ge0\}$. 14 | \end{enumerate} 15 | 16 | \item $A=\{(0,0,0),(0,1,0),(1,0,0),(0,1,1),(1,0,1),(1,1,0),(1,1,1)\}$, 17 | 18 | $B=\{(0,0,0),(0,0,1),(0,1,0),(1,0,0)\}$, 19 | 20 | $C=\{(0,0,1),(0,1,0),(1,0,0)\}$, 21 | 22 | $D=\{(0,0,0),(1,1,1)\}$. 23 | 24 | \item \begin{enumerate*} 25 | \item $ABC\cup \bar A\bar B\bar C$. 26 | \item $A\bar B\bar C\cup \bar AB\bar C\bar A\bar BC$. 27 | \item $\bar{ABC}=\bar A\cup \bar B\cup C$. 28 | \item $AB\cup AC\cup BC$. 29 | \end{enumerate*} 30 | 31 | \item \begin{enumerate*} 32 | \item $A\supset B$. 33 | \item $A\supset B$. 34 | \end{enumerate*} 35 | 36 | \item \begin{enumerate} 37 | \item $\bar AB=\{x|0.25\le x\le0.5\}\cup\{x|10$. 570 | \item $p(y)=1/3,10$. 573 | \end{enumerate} 574 | \item \begin{enumerate*} 575 | \item $p(y)=y^2/18,-30$. 580 | \item $p(y)=\frac1{\sqrt{2\pi}y\sigma}\ee^{- 581 | \frac{(\ln y-\mu)^2}{2\sigma^2}},y>0.E(Y)=\ee^{\mu+\frac{\sigma^2}2}, 582 | \Var(Y)=\ee^{2\mu+\sigma^2}(\ee^{\sigma^2}-1)$. 583 | \item \begin{enumerate} 584 | \item $p(y)=\sqrt{\frac2\pi}\ee^{-\frac{y^2}2},y>0$. 585 | \item $p(y)=\frac1{2\sqrt{\pi(y-1)}}\ee^{-\frac{y-1}4},y>1$. 586 | \end{enumerate} 587 | \item \begin{enumerate} 588 | \item $p(y)=\frac12\ee^{-\frac{y-1}2},y>1$. 589 | \item $p(y)=\frac1{y^2},y>1$. 590 | \item $p(y)=\frac1{2\sqrt y}\ee^{-\sqrt y},y>0$. 591 | \end{enumerate} 592 | \setcounter{enumi}{17} 593 | \item 0.9772. 594 | \end{answer} 595 | 596 | \begin{answer} 597 | \item $\mu_1=(a+b)/2,\mu_2=(a^2+ab+b^2)/3,\mu_3=(a^3+a^2b+ab^2+b^3)/4 598 | .\nu_1=0,\nu_2=(b-a)^2/12,\nu_3=0,\nu_4=(b-a)^4/80,\beta_1 599 | =0,\beta_2=-1.2$. 600 | \item $\sqrt3/3$. 601 | \item $\mu_1=\alpha/\lambda,\mu_2=\alpha(\alpha+1)/\lambda^2, 602 | \mu_3=\alpha(\alpha+1)(\alpha+2)/\lambda^3,\nu_1=0,\nu_2 603 | =\alpha/\lambda^2,\nu_3=2\alpha/\lambda^3$. 604 | \item $\mu_1=1/\lambda,\mu_2=2/\lambda^2,\mu_3 605 | =6/\lambda^3,\mu_4=24/\lambda^4.\nu_1=0,\nu_2=1/\lambda^2, 606 | \nu_3=2\alpha/\lambda^3,\nu_4=9/\lambda^4.C_v(X)=1,\beta_1=2, 607 | \beta_2=6$. 608 | \item $x_{0.1}=6.16,x_{0.9}=13.84$. 609 | \item $x_{0.5}=\ee^{\mu}$. 610 | \item $x_p=\eta[-\ln(1-p)]^{1/m}$;当$m=1.5,\eta=1000$时,$x_{0.1}= 611 | 223.08,x_{0.5}=783.22,x_{0.8}=1373.36$. 612 | \item $x_{0.1}=0.211,x_{0.5}=1.386,x_{0.8}=3.219$. 613 | \end{answer} 614 | 615 | \stepcounter{chapter} 616 | \begin{answer} 617 | \item $p_{ij}=\frac{5!}{i!j!(5-i-j)!}0.5^i0.3^j0.2^{0.5-i-j,i+j\le5}$. 618 | \item $p_{ij}=\frac{\binom{50}i\binom{30}j\binom{20}{5-i-j}} 619 | {\binom{100}5},i+j\le5$. 620 | \item $9/35$. 621 | \item 0. 622 | \item \begin{enumerate*} 623 | \item $1/8$. 624 | \item $3/8$. 625 | \item $27/32$. 626 | \item $2/3$. 627 | \end{enumerate*} 628 | \item \begin{enumerate*} 629 | \item 12. 630 | \item $F(x,y)=(1-\ee^{-3x})(1-\ee^{-4y}),x>0,y>0$. 631 | \item $1-\ee^{-3}-\ee^{-8}+\ee^{-11}$. 632 | \end{enumerate*} 633 | \item \begin{enumerate*} 634 | \item $15/64$. 635 | \item 0. 636 | \item 0.5. 637 | \item $F(x)=\begin{cases} 638 | 0, & x<0\,\text{或}\, y<0, \\ 639 | x^2y^2, & 0\le x<0, 0\le y<1,\\ 640 | x^2, & 0\le x<1,1\le y,\\ 641 | y^2, & 1\le x,0\le y<1, \\ 642 | 1, & x\ge1,y\ge1. 643 | \end{cases}$ 644 | \end{enumerate*} 645 | \item \begin{enumerate*} 646 | \item 6. 647 | \item $1/12,0.6642$. 648 | \end{enumerate*} 649 | \item \begin{enumerate} 650 | \item $1/8$. 651 | \item $7/8,1/2$. 652 | \item $3/4$. 653 | \end{enumerate} 654 | \item $\begin{array}{c|cc} 655 | X_1\backslash X_2 & 0 & 1 \\ 656 | \midrule 657 | 0 & 1-\ee^{-1} & 0 \\ 658 | 1 & \ee^{-1}-\ee^{-2} & \ee^{-2} 659 | \end{array}$. 660 | \item $65/72$. 661 | \item 0.5809. 662 | \item $5/8$. 663 | \item 0.044. 664 | \end{answer} 665 | 666 | \begin{answer} 667 | \item $\begin{array}{c|ccc} 668 | X & -1 & 0 & 1 \\ 669 | \midrule 670 | P & 5/12 & 1/6 & 5/12 671 | \end{array}, 672 | \begin{array}{c|ccc} 673 | Y & 0 & 1 & 2 \\ 674 | \midrule 675 | P & 7/12 & 1/3 & 1/12 676 | \end{array}$ 677 | \item $F_X(x)=1-\ee^{-\lambda_1x},x>0.\quad 678 | F_Y(y)=1-\ee^{-\lambda_2y},y>0$. 679 | \item $p_X(x)=2\sqrt{1-x^2}/\pi,-10.\quad p_Y(y)=y\ee^{-y},y>0$. 684 | \item $p_X(x)=5(1-x^4)/8,-10$. 695 | \item $\ee^{-1}$. 696 | \item $\ee^{-1}$. 697 | \end{enumerate} 698 | \item \begin{enumerate} 699 | \item $p_X(x)=3x^2,00$. 744 | \item $p_Z(z)=\ee^{-|z|}/2,-\infty0$. 749 | \item $p_3(x)=x^5\ee^{-x}/120,x>0$. 750 | \end{enumerate} 751 | \item \begin{enumerate} 752 | \item $p_Z(z)=\begin{cases} 753 | z, & 0\le z<1, \\ 754 | 2-z, & 1\le z<2, \\ 755 | 0, & \text{其他}. 756 | \end{cases}$ 757 | \item $p_Z(z)=\begin{cases} 758 | 1-\ee^{-z}, & 01, \\ 760 | 0, & \text{其他}. 761 | \end{cases}$ 762 | \end{enumerate} 763 | \item $p_Z(z)=(\ln2-\ln z)/2,00$. 770 | \item $p_Z(z)=z\ee^{-z^2/2},z>0$. 771 | \item \begin{enumerate} 772 | \item $p(u,v)=u\ee^{-u},u>0,0u_{1-\alpha}\}$. 1162 | \item 正常. 1163 | \item 无显著差异. 1164 | \item 显著偏大. 1165 | \item 没有显著差异. 1166 | \item 接收. 1167 | \item \begin{enumerate*} 1168 | \item 接收. 1169 | \item 接收. 1170 | \end{enumerate*} 1171 | \item 不能. 1172 | \end{answer} 1173 | 1174 | \begin{answer} 1175 | \item 不能. 1176 | \item 有明显提高. 1177 | \item 接收,0.2969. 1178 | \item 有,0.0314. 1179 | \item 不能,0.0179. 1180 | \item 不能,0.0047. 1181 | \end{answer} 1182 | 1183 | \begin{answer} 1184 | \item 能. 1185 | \item 能. 1186 | \item 能. 1187 | \item 能. 1188 | \item 能. 1189 | \item 不独立. 1190 | \item 不可以. 1191 | \item 不可以. 1192 | \item 不可以. 1193 | \item 接收. 1194 | \item 接收. 1195 | \end{answer} 1196 | 1197 | \stepcounter{chapter} 1198 | \begin{answer} 1199 | \item $S_e=42.75,f_e=9;S_A=105.5,f_A=2;S_T=148.25,f_A=11$. 1200 | \item $f_e=20.5,\hat\sigma^2=2.5625$. 1201 | \item $S_e=20.5,\hat\sigma^2=2.5625$. 1202 | \item 1203 | \begin{tabularx}{0.7\linewidth}{ZZZZZ} 1204 | \toprule 1205 | 来源 & 平方和 & 自由度 & 均方和 & $F$比 \\ 1206 | \midrule 1207 | 因子$A$ & 4.2 & 2 & 2.1 & 7.5 \\ 1208 | 误差$e$ & 2.5 & 9 & 0.28 \\ 1209 | \midrule 1210 | 和$T$ & 6.7 & 11 \\ 1211 | \bottomrule 1212 | \end{tabularx} 1213 | 1214 | 显著. 1215 | \item 显著. 1216 | \item 显著. 1217 | \item \begin{enumerate*} 1218 | \item 有显著影响. 1219 | \item $(7.16,8.81),(5.57,7.23),(8.29,9.95)$. 1220 | \end{enumerate*} 1221 | \item \begin{enumerate*} 1222 | \item 显著. 1223 | \item 第五组,$(24,99,30,99)$. 1224 | \end{enumerate*} 1225 | \end{answer} 1226 | 1227 | \begin{answer} 1228 | \item 水平1、3之间无显著差异,它们与水平2有显著差异. 1229 | \item 水平5与水平1,3,4之间以及水平2水平4之间有显著差异,其他无显萧差异. 1230 | \item 不显著,$(6.34,6.96)$. 1231 | \item 1232 | \begin{tabularx}{0.7\linewidth}{ZZZZZ} 1233 | \toprule 1234 | 来源 & 平方和 & 自由度 & 均方和 & $F$比 \\ 1235 | \midrule 1236 | 因子$A$ & 20.125 & 2 & 10.063 & 15.72 \\ 1237 | 误差$e$ & 15.362 & 24 & 0.640 \\ 1238 | \midrule 1239 | 和$T$ & 35.487 &26 \\ 1240 | \bottomrule 1241 | \end{tabularx} 1242 | 1243 | 显著,水平2、3之间无显著差异,它们与水平1有显著差异. 1244 | \end{answer} 1245 | 1246 | \begin{answer} 1247 | \item 接收. 1248 | \item 接收. 1249 | \item 接收. 1250 | \item 接收. 1251 | \item 接收. 1252 | \item 接收. 1253 | \end{answer} 1254 | 1255 | \begin{answer} 1256 | \item \begin{enumerate} 1257 | \item $\hat\beta=\frac{\sum_{i=1}^nx_iy_i}{\sum_{i=1}^nx_i^2} 1258 | ,\hat{\sigma^2}=\frac1{n-1}\sum_{i=1}^n(y_i-\hat\beta x_i)^2$. 1259 | \item $\frac{\sigma^2}{\sum_{i=1}^nx_i^2}$. 1260 | \end{enumerate} 1261 | \item 一致. 1262 | \setcounter{enumi}{3} 1263 | \item 一般不重合,有交点,$(\bar x,\bar y)$. 1264 | \item \begin{enumerate*} 1265 | \setcounter{enumii}{1} 1266 | \item 0.9597. 1267 | \item $\hat y =22.6486+0.2643x$. 1268 | \item 显著. 1269 | \end{enumerate*} 1270 | \item $3,0811,(7.8695,8.1520)$. 1271 | \item \begin{enumerate} 1272 | \item $\hat y =35.2389+84.3975x$. 1273 | \item $\hat\beta_1\sim N(\beta_1,3.3069\sigma^2), 1274 | \hat\beta_0\sim n(\beta_0,0.1142\sigma^2)$. 1275 | \item $-0.6726$. 1276 | \item 显著 1277 | \begin{center} 1278 | \begin{tabularx}{0.7\linewidth}{ZZZZZ} 1279 | \toprule 1280 | 来源 & 平方和 & 自由度 & 均方和 & $F$比 \\ 1281 | \midrule 1282 | 回归 & 2154.0239 & 1 & 2154.0239 & 108.29 \\ 1283 | 误差 & 278.4805 & 14 & 19.8915 \\ 1284 | \midrule 1285 | 和 & 2432.4566 & 15 \\ 1286 | \bottomrule 1287 | \end{tabularx} 1288 | \end{center} 1289 | \item $(79.1372,89.6575)$. 1290 | \item $(38.0288,57.7682)$. 1291 | \end{enumerate} 1292 | \item \begin{enumerate} 1293 | \item $\hat\beta_1=1.591,\hat\beta_0=24.2991$. 1294 | \item 显著. 1295 | \item $(25.1553,26.9439)$. 1296 | \end{enumerate} 1297 | \item \begin{enumerate} 1298 | \item 显著. 1299 | \begin{center} 1300 | \begin{tabularx}{0.7\linewidth}{ZZZZZ} 1301 | \toprule 1302 | 来源 & 平方和 & 自由度 & 均方和 & $F$比 \\ 1303 | \midrule 1304 | 回归 & 0.0810 & 1 & 0.0810 & 55.7339 \\ 1305 | 误差 & 0.0436 & 30 & 0.01453 \\ 1306 | \midrule 1307 | 和 & 0.1246 & 31 \\ 1308 | \bottomrule 1309 | \end{tabularx} 1310 | \end{center} 1311 | \item 0.8063. 1312 | \item $(1.4500,1.5994)$. 1313 | \end{enumerate} 1314 | \item \begin{enumerate} 1315 | \setcounter{enumi}{1} 1316 | \item $\hat y=-2.26+0.0487x$,显著. 1317 | \begin{center} 1318 | \begin{tabularx}{0.7\linewidth}{ZZZZZ} 1319 | \toprule 1320 | 来源 & 平方和 & 自由度 & 均方和 & $F$比 \\ 1321 | \midrule 1322 | 回归 & 203.40 & 1 & 203.40 & 179.65 \\ 1323 | 误差 & 7.93 & 7 & 1.13 \\ 1324 | \midrule 1325 | 和 & 211.33 & 8 \\ 1326 | \bottomrule 1327 | \end{tabularx} 1328 | \end{center} 1329 | \item $(9.688,14.999)$. 1330 | \item $\hat y=0.0417x$,显著. 1331 | \end{enumerate} 1332 | \end{answer} 1333 | 1334 | \begin{answer} 1335 | \item $u=\ln x,v=y$. 1336 | \item $u=\sqrt x,v=y$. 1337 | \item $u=x,v=\ln(y-100),\beta_0=\ln a,\beta_1=-1/b$. 1338 | \item 不能. 1339 | \item 能. 1340 | \item 能. 1341 | \item $\hat y=1053.633\ee^{-0.247x},R^2=0.9902,s=96.1417$. 1342 | \end{answer} 1343 | 1344 | 1345 | -------------------------------------------------------------------------------- /appendix.tex: -------------------------------------------------------------------------------- 1 | \begin{landscape} 2 | \chapter*{附表} 3 | \addcontentsline{toc}{chapter}{附表} 4 | \renewcommand\thetable{\arabic{table}} 5 | \captionsetup{font=bf} 6 | \renewcommand\arraystretch{0.9} 7 | \captionof{table}{泊松分布函数表}\label{tab1} 8 | \[ 9 | P(X\le k) = \sum_{i=0}^k \frac{\lambda^i}{i!}\ee^{-\lambda} 10 | \] 11 | \begin{tabularx}{\linewidth}{c|*{9}{Y}||c|c*{12}{Y}} 12 | \toprule 13 | \multirow{2}*{$\lambda$} & \multicolumn{9}{c||}{$k$} 14 | & \multirow{2}*{$\lambda$} & \multicolumn{13}{c}{$k$} \\ 15 | \cmidrule{2-10} \cmidrule{12-24} 16 | & 0 & 1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 & & 0 & 1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 & 9 & 10 & 11 & 12 \\ 17 | \midrule 18 | 0.1 & 0.905 & 0.995 & 1.000 & & & & & & & 2.1 & 0.122 & 0.380 & 0.650 & 0.839 & 0.938 & 0.980 & 0.994 & 0.999 & 1.000 & & & \\ 19 | 0.2 & 0.819 & 0.982 & 0.999 & 1.000 & & & & & & 2.2 & 0.111 & 0.355 & 0.623 & 0.819 & 0.928 & 0.975 & 0.993 & 0.998 & 1.000 \\ 20 | 0.3 & 0.741 & 0.963 & 0.996 & 0.999 & 1.000 & & & & & 2.3 & 0.100 & 0.331 & 0.596 & 0.799 & 0.916 & 0.970 & 0.991 & 0.997 & 0.999 & 1.000 \\ 21 | 0.4 & 0.670 & 0.938 & 0.992 & 0.999 & 1.000 & & & & & 2.4 & 0.091 & 0.308 & 0.570 & 0.779 & 0.904 & 0.964 & 0.988 & 0.997 & 0.999 & 1.000 \\ 22 | 0.5 & 0.607 & 0.910 & 0.986 & 0.998 & 1.000 & & & & & 2.5 & 0.082 & 0.287 & 0.544 & 0.758 & 0.891 & 0.958 & 0.986 & 0.996 & 0.999 & 1.000 \\ 23 | \midrule 24 | 0.6 & 0.549 & 0.878 & 0.977 & 0.997 & 1.000 & & & & & 2.6 & 0.074 & 0.267 & 0.518 & 0.736 & 0.877 & 0.951 & 0.983 & 0.995 & 0.999 & 1.000 \\ 25 | 0.7 & 0.497 & 0.844 & 0.966 & 0.994 & 0.999 & 1.000 & & & & 2.7 & 0.067 & 0.249 & 0.494 & 0.714 & 0.863 & 0.943 & 0.979 & 0.993 & 0.998 & 0.999 & 1.000 \\ 26 | 0.8 & 0.449 & 0.809 & 0.953 & 0.991 & 0.999 & 1.000 & & & & 2.8 & 0.061 & 0.231 & 0.469 & 0.692 & 0.848 & 0.935 & 0.976 & 0.992 & 0.998 & 0.999 & 1.000 \\ 27 | 0.9 & 0.407 & 0.772 & 0.937 & 0.987 & 0.998 & 1.000 & & & & 2.9 & 0.055 & 0.215 & 0.446 & 0.670 & 0.832 & 0.926 & 0.971 & 0.990 & 0.997 & 0.999 & 1.000 \\ 28 | 1.0 & 0.368 & 0.736 & 0.920 & 0.981 & 0.996 & 0.999 & 1.000 & & & 3.0 & 0.050 & 0.199 & 0.423 & 0.647 & 0.815 & 0.916 & 0.966 & 0.988 & 0.996 & 0.999 & 1.000 \\ 29 | \midrule 30 | 1.1 & 0.333 & 0.699 & 0.900 & 0.974 & 0.995 & 0.999 & 1.000 & & & 3.1 & 0.045 & 0.185 & 0.401 & 0.625 & 0.798 & 0.906 & 0.961 & 0.986 & 0.995 & 0.999 & 1.000 \\ 31 | 1.2 & 0.301 & 0.663 & 0.879 & 0.966 & 0.992 & 0.998 & 1.000 & & & 3.2 & 0.041 & 0.171 & 0.380 & 0.603 & 0.781 & 0.895 & 0.955 & 0.983 & 0.994 & 0.998 & 1.000 \\ 32 | 1.3 & 0.273 & 0.627 & 0.857 & 0.957 & 0.989 & 0.998 & 1.000 & & & 3.3 & 0.037 & 0.159 & 0.359 & 0.580 & 0.763 & 0.883 & 0.949 & 0.980 & 0.993 & 0.998 & 0.999 & 1.000 \\ 33 | 1.4 & 0.247 & 0.592 & 0.833 & 0.946 & 0.986 & 0.997 & 0.999 & 1.000 & & 3.4 & 0.033 & 0.147 & 0.340 & 0.558 & 0.744 & 0.871 & 0.942 & 0.977 & 0.992 & 0.997 & 0.999 & 1.000 \\ 34 | 1.5 & 0.223 & 0.558 & 0.809 & 0.934 & 0.981 & 0.996 & 0.999 & 1.000 & & 3.5 & 0.030 & 0.136 & 0.321 & 0.537 & 0.725 & 0.858 & 0.935 & 0.973 & 0.990 & 0.997 & 0.999 & 1.000 \\ 35 | \midrule 36 | 1.6 & 0.202 & 0.525 & 0.783 & 0.921 & 0.976 & 0.994 & 0.999 & 1.000 & & 3.6 & 0.027 & 0.126 & 0.303 & 0.515 & 0.706 & 0.844 & 0.927 & 0.969 & 0.988 & 0.996 & 0.999 & 1.000 \\ 37 | 1.7 & 0.183 & 0.493 & 0.757 & 0.907 & 0.970 & 0.992 & 0.998 & 1.000 & & 3.7 & 0.025 & 0.116 & 0.285 & 0.494 & 0.687 & 0.830 & 0.918 & 0.965 & 0.986 & 0.995 & 0.998 & 1.000 \\ 38 | 1.8 & 0.165 & 0.463 & 0.731 & 0.891 & 0.964 & 0.990 & 0.997 & 0.999 & 1.000 & 3.8 & 0.022 & 0.107 & 0.269 & 0.473 & 0.668 & 0.816 & 0.909 & 0.960 & 0.984 & 0.994 & 0.998 & 0.999 & 1.000 \\ 39 | 1.9 & 0.150 & 0.434 & 0.704 & 0.875 & 0.956 & 0.987 & 0.997 & 0.999 & 1.000 & 3.9 & 0.020 & 0.099 & 0.253 & 0.453 & 0.648 & 0.801 & 0.899 & 0.955 & 0.981 & 0.993 & 0.998 & 0.999 & 1.000 \\ 40 | 2.0 & 0.135 & 0.406 & 0.677 & 0.857 & 0.947 & 0.983 & 0.995 & 0.999 & 1.000 & 4.0 & 0.018 & 0.092 & 0.238 & 0.433 & 0.629 & 0.785 & 0.889 & 0.949 & 0.979 & 0.992 & 0.997 & 0.999 & 1.000 \\ 41 | \bottomrule 42 | \end{tabularx} 43 | \newpage \renewcommand\arraystretch{1} 44 | \hfill 续表 45 | \begin{tabularx}{\linewidth}{c|*{15}{Y}} 46 | \toprule 47 | \multirow{2}*{$\lambda$} & \multicolumn{15}{c}{$k$} \\ 48 | \cmidrule{2-16} 49 | & 0 & 1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 & 9 & 10 & 11 & 12 & 13 & 14 \\ 50 | \midrule 51 | 5 & 0.007 & 0.040 & 0.125 & 0.265 & 0.440 & 0.616 & 0.762 & 0.867 & 0.932 & 0.968 & 0.986 & 0.995 & 0.998 & 0.999 & 1.000 \\ 52 | 6 & 0.002 & 0.017 & 0.062 & 0.151 & 0.285 & 0.446 & 0.606 & 0.744 & 0.847 & 0.916 & 0.957 & 0.980 & 0.991 & 0.996 & 0.999 \\ 53 | 7 & 0.001 & 0.007 & 0.030 & 0.082 & 0.173 & 0.301 & 0.450 & 0.599 & 0.729 & 0.830 & 0.901 & 0.947 & 0.973 & 0.987 & 0.994 \\ 54 | 8 & 0.000 & 0.003 & 0.014 & 0.042 & 0.100 & 0.191 & 0.313 & 0.453 & 0.593 & 0.717 & 0.816 & 0.888 & 0.936 & 0.966 & 0.983 \\ 55 | 9 & 0.000 & 0.001 & 0.006 & 0.021 & 0.055 & 0.116 & 0.207 & 0.324 & 0.456 & 0.587 & 0.706 & 0.803 & 0.876 & 0.926 & 0.959 \\ 56 | 10 & 0.000 & 0.000 & 0.003 & 0.010 & 0.029 & 0.067 & 0.130 & 0.220 & 0.333 & 0.458 & 0.583 & 0.697 & 0.792 & 0.864 & 0.917 \\ 57 | \midrule 58 | 11 & 0.000 & 0.000 & 0.001 & 0.005 & 0.015 & 0.038 & 0.079 & 0.143 & 0.232 & 0.341 & 0.460 & 0.579 & 0.689 & 0.781 & 0.854 \\ 59 | 12 & 0.000 & 0.000 & 0.001 & 0.002 & 0.008 & 0.020 & 0.046 & 0.090 & 0.155 & 0.242 & 0.347 & 0.462 & 0.576 & 0.682 & 0.772 \\ 60 | 13 & 0.000 & 0.000 & 0.000 & 0.001 & 0.004 & 0.011 & 0.026 & 0.054 & 0.100 & 0.166 & 0.252 & 0.353 & 0.463 & 0.573 & 0.675 \\ 61 | 14 & 0.000 & 0.000 & 0.000 & 0.002 & 0.006 & 0.014 & 0.032 & 0.062 & 0.109 & 0.176 & 0.260 & 0.358 & 0.464 & 0.570 \\ 62 | 15 & 0.000 & 0.000 & 0.000 & 0.001 & 0.003 & 0.008 & 0.018 & 0.0037 & 0.070 & 0.118 & 0.185 & 0.268 & 0.363 & 0.466 \\ 63 | \midrule\midrule 64 | \multirow{2}*{$\lambda$} & \multicolumn{15}{c}{$k$} \\ 65 | \cmidrule{2-16} 66 | & 15 & 16 & 17 & 18 & 19 & 20 & 21 & 22 & 23 & 24 & 25 & 26 & 27 & 28 & 29 \\ 67 | \midrule 68 | 6 & 1.000 \\ 69 | 7 & 0.998 & 0.999 & 1.000 \\ 70 | 8 & 0.992 & 0.996 & 0.998 & 0.999 & 1.000 \\ 71 | 9 & 0.978 & 0.989 & 0.995 & 0.998 & 0.999 & 1.000 \\ 72 | 10 & 0.951 & 0.973 & 0.986 & 0.993 & 0.997 & 0.998 & 0.999 & 1.000 \\ 73 | \midrule 74 | 11 & 0.907 & 0.944 & 0.968 & 0.982 & 0.991 & 0.995 & 0.998 & 0.999 & 1.000 \\ 75 | 12 & 0.844 & 0.899 & 0.937 & 0.963 & 0.979 & 0.988 & 0.994 & 0.997 & 0.999 & 0.999 & 1.000 \\ 76 | 13 & 0.764 & 0.835 & 0.890 & 0.930 & 0.957 & 0.975 & 0.986 & 0.992 & 0.996 & 0.998 & 0.999 & 1.000 \\ 77 | 14 & 0.669 & 0.756 & 0.827 & 0.883 & 0.923 & 0.952 & 0.971 & 0.983 & 0.991 & 0.995 & 0.997 & 0.999 & 0.999 & 1.000 \\ 78 | 15 & 0.568 & 0.664 & 0.749 & 0.819 & 0.875 & 0.917 & 0.947 & 0.967 & 0.981 & 0.989 & 0.994 & 0.997 & 0.998 & 0.999 & 1.000 \\ 79 | \bottomrule 80 | \end{tabularx} 81 | \newpage 82 | \captionof{table}{标准正态分布函数表}\label{tab2} 83 | \[ 84 | \varPhi(u) = \frac1{\sqrt{2\pi}} \int_{-\infty}^u \ee^{-t^2/2} \dd t 85 | \] 86 | \begin{tabularx}{\linewidth}{c|*{10}{Y}} 87 | \toprule 88 | $u$ & 0.00 & 0.01 & 0.02 & 0.03 & 0.04 & 0.05 & 0.06 & 0.07 & 0.08 & 0.09 \\ 89 | 0.0 & 0.500 & 0.5040 & 0.5080 & 0.5120 & 0.5160 & 0.5199 & 0.5239 & 0.5279 & 0.5319 & 0.5359 \\ 90 | 0.1 & 0.5398 & 0.5438 & 0.5478 & 0.5517 & 0.5557 & 0.5596 & 0.5636 & 0.5675 & 0.5714 & 0.5753 \\ 91 | 0.2 & 0.5793 & 0.5832 & 0.5871 & 0.5910 & 0.5948 & 0.5987 & 0.6026 & 0.6064 & 0.6103 & 0.6141 \\ 92 | 0.3 & 0.6179 & 0.6217 & 0.6255 & 0.6293 & 0.6331 & 0.6368 & 0.6406 & 0.6443 & 0.6480 & 0.6517 \\ 93 | 0.4 & 0.6554 & 0.6591 & 0.6628 & 0.6664 & 0.6700 & 0.6736 & 0.6772 & 0.6808 & 0.6844 & 0.6879 \\ 94 | \midrule 95 | 0.5 & 0.6915 & 0.6950 & 0.6985 & 0.7019 & 0.7054 & 0.7088 & 0.7123 & 0.7157 & 0.7190 & 0.7224 \\ 96 | 0.6 & 0.7257 & 0.7291 & 0.7324 & 0.7357 & 0.7389 & 0.7422 & 0.7454 & 0.7486 & 0.7517 & 0.7549 \\ 97 | 0.7 & 0.7580 & 0.7611 & 0.7939 & 0.7967 & 0.7995 & 0.8023 & 0.8051 & 0.8078 & 0.8106 & 0.8133 \\ 98 | 0.8 & 0.7881 & 0.7910 & 0.7939 & 0.7967 & 0.7995 & 0.8023 & 0.8051 & 0.8078 & 0.8106 & 0.8133 \\ 99 | 0.9 & 0.8159 & 0.8186 & 0.8212 & 0.8238 & 0.8264 & 0.8289 & 0.8315 & 0.8340 & 0.8365 & 0.8389 \\ 100 | \midrule 101 | 1.0 & 0.8413 & 0.8438 & 0.8461 & 0.8485 & 0.8508 & 0.8531 & 0.8554 & 0.8577 & 0.8599 & 0.8621 \\ 102 | 1.1 & 0.8643 & 0.8665 & 0.8686 & 0.8708 & 0.8729 & 0.8749 & 0.8770 & 0.8790 & 0.8810 & 0.8830 \\ 103 | 1.2 & 0.8849 & 0.8869 & 0.8888 & 0.8907 & 0.8925 & 0.8944 & 0.8962 & 0.8980 & 0.8997 & 0.9015 \\ 104 | 1.3 & 0.9032 & 0.9049 & 0.9066 & 0.9082 & 0.9099 & 0.9115 & 0.9131 & 0.9147 & 0.9162 & 0.9177 \\ 105 | 1.4 & 0.9192 & 0.9207 & 0.9222 & 0.9236 & 0.0251 & 0.9265 & 0.9279 & 0.9292 & 0.9306 & 0.9319 \\ 106 | \midrule 107 | 1.5 & 0.9332 & 0.9345 & 0.9357 & 0.9370 & 0.9382 & 0.9394 & 0.9406 & 0.9418 & 0.9429 & 0.9441 \\ 108 | 1.6 & 0.9452 & 0.9463 & 0.9474 & 0.9484 & 0.9495 & 0.9505 & 0.9515 & 0.9525 & 0.9535 & 0.9545 \\ 109 | 1.7 & 0.9554 & 0.9564 & 0.9573 & 0.9582 & 0.9591 & 0.9599 & 0.9608 & 0.9616 & 0.9625 & 0.9633 \\ 110 | 1.8 & 0.9641 & 0.9649 & 0.9656 & 0.9664 & 0.9671 & 0.9678 & 0.9686 & 0.9693 & 0.9699 & 0.9706 \\ 111 | 1.9 & 0.9713 & 0.9719 & 0.9726 & 0.9732 & 0.9738 & 0.9744 & 0.9750 & 0.9756 & 0.9761 & 0.9767 \\ 112 | \bottomrule 113 | \end{tabularx} 114 | \newpage 115 | \hfill 续表 116 | \begin{tabularx}{\linewidth}{c|*{10}{Y}} 117 | \toprule 118 | 2.0 & 0.9772 & 0.9778 & 0.9783 & 0.9788 & 0.9793 & 0.9798 & 0.9803 &0.9808 & 0.9812 & 0.9817 \\ 119 | 2.1 & 0.9821 & 0.9826 & 0.9830 & 0.9834 & 0.9838 & 0.9842 & 0.9846 & 0.9850 & 0.9854 & 0.9857 \\ 120 | 2.2 & 0.9861 & 0.9864 & 0.9868 & 0.9871 & 0.9875 & 0.9878 & 0.9881 & 0.9884 & 0.9887 & 0.9890 \\ 121 | 2.3 & 0.9893 & 0.9896 & 0.9898 & 0.9901 & 0.9904 & 0.9906 & 0.9909 & 0.9911 & 0.9913 & 0.9916 \\ 122 | 2.4 & 0.9918 & 0.9920 & 0.9922 & 0.9925 & 0.9927 & 0.9929 & 0.9931 & 0.9932 & 0.9934 & 0.9926 \\ 123 | \midrule 124 | 2.5 & 0.9938 & 0.9940 & 0.9941 & 0.9943 & 0.9945 & 0.9946 & 0.9948 & 0.9949 & 0.9951 & 0.9952 \\ 125 | 2.6 & 0.9953 & 0.9955 & 0.9956 & 0.9957 & 0.9959 & 0.9960 & 0.9961 & 0.9962 & 0.9963 & 0.9964 \\ 126 | 2.7 & 0.9965 & 0.9966 & 0.9967 & 0.9968 & 0.9969 & 0.9970 & 0.9971 & 0.9972 & 0.9973 & 0.9974 \\ 127 | 2.8 & 0.9974 & 0.9975 & 0.9976 & 0.9977 & 0.9978 & 0.9979 & 0.9979 & 0.9980 & 0.9981 \\ 128 | 2.9 & 0.9981 & 0.9982 & 0.9982 & 0.9983 & 0.9984 & 0.9984 & 0.9985 & 0.9986 & 0.9986 \\ 129 | \midrule 130 | & 0.0 & 0.1 & 0.2 & 0.3 & 0.4 & 0.5 & 0.6 & 0.7 & 0.8 & 0.9 \\ 131 | \midrule 132 | 3 & 0.9^28650 & 0.3^30324 & 0.9^33129 & 0.9^35166 & 0.9^36631 & 0.9^37674 & 0.9^38409 & 0.9^38922 & 0.9^42765 & 0.9^45190 \\ 133 | 4 & 0.9^46833 & 0.9^47934 & 0.9^48665 & 0.9^51460 & 0.9^54587 & 0.9^56602 & 0.9^57888 & 0.9^58699 & 0.9^62067 & 0.9^65208 \\ 134 | 5 & 0.9^67133 & 0.9^68302 & 0.9^70036 & 0.9^74210 & 0.9^76668 & 0.9^78101 & 0.9^78928 & 0.9^84010 & 0.9^86684 & 0.9^88182 \\ 135 | 6 & 0.9^90134 \\ 136 | \bottomrule 137 | \end{tabularx} 138 | \newpage 139 | \captionof{table}{$\chi^2$分布分位数$\chi^2_p(n)$表}\label{tab3} 140 | \[ 141 | P\big(\chi^2(n)\le \chi_p^2(n)\big) = p 142 | \] 143 | \begin{tabularx}{\linewidth}{c|*{10}{Y}} 144 | \toprule 145 | \multirow{2}*{$n$} & \multicolumn{10}{c}{$p$} \\ 146 | \cmidrule{2-11} 147 | & 0.05 & 0.01 & 0.025 & 0.05 & 0.1 & 0.9 & 0.95 & 0.975 & 0.99 & 0.995 \\ 148 | \midrule 149 | 1 & 0.0000 & 0.0002 & 0.0010 & 0.0039 & 0.0158 & 2.7055 & 3.8415 & 5.0239 & 6.6349 & 7.8794 \\ 150 | % 2 & 0.0100 & 0.0201 & 0.0506 & 0.1026 & 0.2107 & 4.6052 & 5.9915 & 7.3778 & 9.2013 & 10.5966 \\ 151 | 3 & 0.0717 7 0.1148 & 0.2158 & 0.3518 & 0.5844 & 6.2514 & 7.8147 & 9.3484 & 11.3449 & 12.8382 \\ 152 | 4 & 0.2070 & 0.2971 & 0.4844 & 0.7107 & 1.0636 & 7.7794 & 9.4877 & 11.1433 & 13.2767 & 14.8603 \\ 153 | 5 & 0.4117 & 0.5543 & 0.8312 & 1.1455 & 1.6103 & 9.2364 & 11.0705 & 12.8325 & 15.0863 & 16.7496 \\ 154 | \midrule 155 | 6 & 0.6757 & 0.8721 & 1.2373 & 1.6354 & 2.2041 & 10.6446 & 12.5916 & 14.4494 & 16.8119 & 18.5476 \\ 156 | 7 & 0.9893 & 1.2390 & 1.6899 & 2.1673 & 2.8331 & 12.0170 & 14.0671 & 16.0128 & 18.4753 & 20.2777 \\ 157 | 8 & 1.3444 & 1.6465 & 2.1797 & 2.7326 & 3.4895 & 13.3616 & 15.5073 & 17.5345 & 20.0902 & 21.9550 \\ 158 | 9 & 1.734 & 2.0879 & 2.7004 & 3.3251 & 4.1682 & 14.6837 & 16.9190 & 19.0228 & 21.6660 & 23.1882 \\ 159 | 10 & 2.1559 & 25582 & 3.2470 & 3.9403 & 4.8652 & 15.9872 & 18.3070 & 20.4832 & 23.2093 & 25.1882 \\ 160 | % \midrule 161 | 11 & 2.6032 & 3.0535 & 3.8157 & 4.5748 & 5.5778 & 17.2750 & 19.6751 & 21.9200 & 24.7250 & 26.7568 \\ 162 | 12 & 3.0738 & 2.5706 & 4.4038 & 5.2260 & 6.3038 & 18.5493 & 21.0261 & 23.3367 & 26.2170 & 28.2995 \\ 163 | 13 & 3.5650 & 4.1069 & 5.0088 & 5.8919 & 7.0415 & 19.8119 & 22.3620 & 24.7356 & 27.6882 & 29.8195 \\ 164 | 14 & 4.0747 & 4.6604 & 5.6287 & 6.5706 & 7.7895 & 21.0641 & 23.6848 & 26.1189 & 29.1412 & 31.3193 \\ 165 | 15 & 4.6009 & 5.2293 & 6.2621 & 7.2609 & 8.5468 & 22.3071 & 24.9958 & 27.4884 & 30.5779 & 32.8013 \\ 166 | \midrule 167 | 16 & 5.1422 & 5.8122 & 6.9077 & 7.9616 & 9.3122 & 23.5418 & 26.2962 & 28.8454 & 31.9999 & 34.2672 \\ 168 | 17 & 5.6972 & 6.4078 & 7.5642 & 8.6718 & 10.0852 & 24.7690 & 27.5871 & 30.1910 & 33.4087 & 35.7185 \\ 169 | 18 & 6.2648 & 7.0149 & 8.2307 & 9.3905 & 10.8649 & 25.9894 & 28.8693 & 31.5264 & 34,8053 & 37.1565 \\ 170 | 19 & 6.8440 & 7.6327 & 8.9065 & 10.1170 & 11.6509 & 27.2036 & 30.1435 & 32.8523 & 36.1909 & 38.5823 \\ 171 | 20 & 7.4338 & 8.2604 & 9.5908 & 10.8508 & 12.4426 & 28.4120 & 31.4104 & 34.1696 & 37.5662 & 39.9968 \\ 172 | \bottomrule 173 | \end{tabularx} 174 | \newpage \hfill 续表 175 | \begin{tabularx}{\linewidth}{c|*{10}{Y}} 176 | \toprule 177 | \multirow{2}*{$n$} & \multicolumn{10}{c}{$p$} \\ 178 | \cmidrule{2-11} 179 | & 0.05 & 0.01 & 0.025 & 0.05 & 0.1 & 0.9 & 0.95 & 0.975 & 0.99 & 0.995 \\ 180 | \toprule 181 | 21 & 9.0337 & 8.8972 & 10.2829 & 11.5913 & 13.2396 & 29.6151 & 32.6706 & 35.4789 & 38.9322 & 41.4011 \\ 182 | 22 & 8.6427 & 9.5425 & 10.9823 & 12.3380 & 14.0415 & 30.8133 & 33.9244 & 36.7807 & 40.2894 & 42.7957 \\ 183 | 23 & 9.2604 & 10.1957 & 11.6886 & 13.0905 & 14.8480 & 32.0069 & 35.1725 & 38.0756 & 41.6384 & 44.1813 \\ 184 | 24 & 9.8862 & 10.8564 & 12.4012 & 13.8484 & 15.6587 & 33.1962 & 36.4150 & 39.3641 & 42.9798 & 45.5585 \\ 185 | 25 & 10.5197 & 11.5240 & 13.1197 & 14.6114 & 16.4734 & 34.3816 & 37.6525 & 40.6465 & 44.3141 & 46.9279 \\ 186 | \midrule 187 | 26 & 11.1602 & 12.9181 & 13.8439 & 15.3792 & 17.2919 & 35.5632 & 38.8851 & 41.9232 & 45.6417 & 48.2899 \\ 188 | 27 & 11.8076 & 12.8785 & 14.5734 & 16.1514 & 18.1139 & 36.7412 & 40.1133 & 43.1945 & 46.9629 & 49.6449 \\ 189 | 28 & 12.4613 & 13.5647 & 15.3079 & 16.9279 & 18.9392 & 37.9159 & 41.3371 & 44.4608 & 48.2782 & 50.9934 \\ 190 | 29 & 13.1211 & 14.2565 & 16.0471 & 17.7084 & 19.7677 & 39.0875 & 42.5570 & 45.7223 & 49.5879 & 52.3356 \\ 191 | 30 & 13.7867 & 14.9535 & 16.7908 & 18.4927 & 20.5992 & 40.2560 & 43.7730 & 46.9790 & 50.8922 & 53.6720 \\ 192 | \midrule 193 | 31 & 14.4578 & 15.6555 & 17.5387 & 19.2806 & 21.4336 & 41,4217 & 44.9853 & 48.2319 & 52.1914 & 55.0027 \\ 194 | 32 & 15.1340 & 16.3622 & 18.2908 & 20.0719 & 22.2706 & 42.5847 & 46.1943 & 49.4804 & 53.4858 & 56.3281 \\ 195 | 33 & 15.8153 & 17.0735 & 19.0467 & 20.8665 & 23.1102 & 43.7452 & 47.3999 & 50.7251 & 54.7755 & 57.6484 \\ 196 | 34 & 16.5013 & 17.7891 & 19.8063 & 21.6643 & 23.9523 & 44.9032 & 48.6024 & 51.9660 & 51.0609 & 58.9639 \\ 197 | 35 & 17.1918 & 18.5089 & 20.5694 & 22.4650 & 24.7967 & 46.0588 & 49.8018 & 53.2033 & 57.3421 & 60.2748 \\ 198 | \midrule 199 | 36 & 17.8867 & 19.2327 & 21.3359 & 23.2686 & 25.6433 & 47.2122 & 50.9985 & 54.4373 & 58.6192 & 61.5812 \\ 200 | 37 & 18.5858 & 19.9602 & 22.1056 & 24.0749 & 26.4921 & 48.3634 & 52.1923 & 55.6680 & 59.8925 & 62.8833 \\ 201 | 38 & 19.2889 & 20.6914 & 22.8785 & 24.8839 & 27.3430 & 49.5126 \\ 202 | 39 & 19.9959 & 21.4262 & 23.6543 & 25.6954 & 28.1958 & 50.6598 & 54.5722 & 58.1201 & 62.4281 & 65.4756 \\ 203 | 40 & 20.7065 & 22.1643 & 24.4330 & 26.5093 & 29.0505 & 51.8051 & 55.7585 & 59.3417 & 63.6907 & 66.7660 \\ 204 | \bottomrule 205 | \end{tabularx} 206 | \newpage 207 | \captionof{table}{$t$分布分位数$t_p(n)$表}\label{tab4} 208 | \[ 209 | P\big(t(n)\le t_p^2(n)\big) = p 210 | \] 211 | \begin{tabularx}{\linewidth}{c|*{8}{Y}} 212 | \toprule 213 | \multirow{2}*{$n$} & \multicolumn{8}{c}{$p$} \\ 214 | \cmidrule{2-9} 215 | & 0.75 & 0.80 & 0.90 & 0.95 & 0.975 & 0.99 & 0.995 & 0.999 \\ 216 | \midrule 217 | 1 & 1.0000 & 1.3764 & 3.0777 & 6.3138 & 12.7062 & 31.8205 & 63.6567 & 318.3088 \\ 218 | 2 & 0.8165 & 1.0607 & 1.8856 & 2.9200 & 4.3027 & 6.9646 & 9.9248 & 22.3271 \\ 219 | 3 & 0.7649 & 0.9785 & 1.6377 & 2.3534 & 3.1824 & 4.5407 & 5.8409 & 10.2145 \\ 220 | 4 & 0.7407 & 0.9410 & 1.5332 & 2.1318 & 2.7764 & 3.7469 & 4.6041 & 7.1732 \\ 221 | 5 & 0.7267 & 0.9195 & 1.4759 & 2.0150 & 2.5706 & 3.3649 & 4.0321 & 5.8934 \\ 222 | \midrule 223 | 6 & 0.7176 & 0.9057 & 1.4398 & 1.9432 & 2.4469 & 3.1427 & 3.7074 & 5.2076 \\ 224 | 7 & 0.7111 & 0.8960 & 1.4149 & 1.8946 & 2.3646 & 2.9980 & 3.4995 & 4.7853 \\ 225 | 8 & 0.7064 & 0.8889 & 1.3968 & 1.8595 & 2.3060 & 2.8965 & 3.3554 & 4.5008 \\ 226 | 9 & 0.7027 & 0.8834 & 1.3830 & 1.8331 & 2.2622 & 2.8214 & 3.2498 & 4.2968 \\ 227 | 10 & 0.6998 & 0.8791 & 1.3722 & 1.8125 & 2.2281 & 2.7638 & 3.1693 & 4.1437 \\ 228 | \midrule 229 | 11 & 0.6974 & 0.8755 & 1.3634 & 1.7959 & 2.2010 & 2.7181 & 3.1058 & 4.0247 \\ 230 | 12 & 0.6955 & 0.8726 & 1.3562 & 1.7823 & 2.1788 & 2.6810 & 3.0545 & 3.9296 \\ 231 | 13 & 0.6938 & 0.8702 & 1.3502 & 1.7709 & 2.1604 & 2.6503 & 3.0123 & 3.8520 \\ 232 | 14 & 0.6924 & 0.8681 & 1.3450 & 1.7613 & 2.1448 & 2.6245 & 2.9768 & 3.7874 \\ 233 | 15 & 0.6912 & 0.8662 & 1.3406 & 1.7531 & 2.1314 & 2.6025 & 2.9467 & 2.7328 \\ 234 | \midrule 235 | 16 & 0.6901 & 0.8647 & 1.3368 & 1.7459 & 2.1199 & 2.5835 & 2.9208 & 3.6862 \\ 236 | 17 & 0.6892 & 0.8633 & 1.3334 & 1.7396 & 2.1098 & 2.5669 & 2.8982 & 3.6458 \\ 237 | 18 & 0.6884 & 0.8620 & 1.3304 & 1.7341 & 2.1009 & 2.5524 & 2.8784 & 3.6105 \\ 238 | 19 & 0.6876 & 0.8610 & 1.3277 & 1.7291 & 2.0930 & 2.5395 & 2.8609 & 3.5794 \\ 239 | 20 & 0.6870 & 0.8600 & 1.3253 & 1.7247 & 2.0860 & 2.5280 & 2.8453 & 3.5518 \\ 240 | \bottomrule 241 | \end{tabularx} 242 | \newpage 243 | \hfill 续表 244 | \begin{tabularx}{\linewidth}{c|*{8}{Y}} 245 | \toprule 246 | \multirow{2}*{$n$} & \multicolumn{8}{c}{$p$} \\ 247 | \cmidrule{2-9} 248 | & 0.75 & 0.80 & 0.90 & 0.95 & 0.975 & 0.99 & 0.995 & 0.999 \\ 249 | \midrule 250 | 21 & 0.6864 & 0.8591 & 1.3232 & 1.7207 & 2.0796 & 2.5176 & 2.8314 & 3.5272 \\ 251 | 22 & 0.6858 & 0.8583 & 1.3212 & 1.7171 & 2.0739 & 2.5083 & 2.8188 & 3.5050 \\ 252 | 23 & 0.6853 & 0.8575 & 1.3195 & 1.7139 & 2.0687 & 2.4999 & 2.8073 & 3.4850 \\ 253 | 24 & 0.6848 & 0.8569 & 1.3178 & 1.7109 & 2.0639 & 2.4922 & 2.7969 & 3.4668 \\ 254 | 25 & 0.6844 & 0.8562 & 1.3163 & 1.7081 & 2.0595 & 2.4851 & 2.7874 & 3.4502 \\ 255 | \midrule 256 | 26 & 0.6840 & 0.8557 & 1.3150 & 1.7056 & 2.0555 & 2.4786 & 2.7787 & 3.4350 \\ 257 | 27 & 0.6837 & 0.8551 & 1.3137 & 1.7033 & 2.0518 & 2.4727 & 2.7707 & 3.4210 \\ 258 | 28 & 0.6834 & 0.8546 & 1.3125 & 1.7011 & 2.0484 & 2.4671 & 2.7633 & 3.4082 \\ 259 | 29 & 0.6830 & 0.8542 & 1.3114 & 1.6991 & 2.0452 & 2.4620 & 2.7564 & 3.3962 \\ 260 | 30 & 0.6828 & 0.8538 & 1.3104 & 1.6973 & 2.0423 & 2.4573 & 2.7500 & 3.3852 \\ 261 | \midrule 262 | 31 & 0.6825 & 0.8534 & 1.3095 & 1.6955 & 2.0395 & 2.4528 & 2.7440 & 3.3749 \\ 263 | 32 & 0.6822 & 0.8530 & 1.3086 & 1.6939 & 2.0369 & 2.4487 & 2.7385 & 3.3653 \\ 264 | 33 & 0.6820 & 0.8526 & 1.3077 & 1.6924 & 2.0345 & 2.4448 & 2.7333 & 3.3563 \\ 265 | 34 & 0.6818 & 0.8523 & 1.3070 & 1.6909 & 2.0322 & 2.4411 & 2.7284 & 3.3479 \\ 266 | 35 & 0.6816 & 0.8520 & 1.3062 & 1.6896 & 2.0301 & 2.4377 & 2.7238 & 3.3400 \\ 267 | \midrule 268 | 36 & 0.6814 & 0.8517 & 1.3055 & 1.6883 & 2.0281 & 2.4345 & 2.7195 & 3.3326 \\ 269 | 37 & 0.6812 & 0.8514 & 1.3049 & 1.6871 & 2.0262 & 2.4314 & 2.7154 & 3.3256 \\ 270 | 38 & 0.6810 & 0.8512 & 1.3042 & 1.6860 & 2.0244 & 2.4286 & 2.7116 & 3.3190 \\ 271 | 39 & 0.6808 & 0.8509 & 1.3036 & 1.6849 & 2.0227 & 2.4258 & 2.7079 & 3.3128 \\ 272 | 40 & 0.6807 & 0.8507 & 1.3031 & 1.6839 & 2.0211 & 2.4233 & 2.7045 & 3.3069 \\ 273 | \bottomrule 274 | \end{tabularx} 275 | 276 | \newpage 277 | \newcounter{mycount}\stepcounter{mycount} 278 | \renewcommand\thetable{\arabic{table}.\arabic{mycount}} 279 | \captionof{table}{$F$分布0.90分位数$F_{0.90}(f_1,f_2) $表}\label{tab5.1} 280 | \begin{tabularx}{\linewidth}{c|*{20}{Y}} 281 | \toprule 282 | \multirow{2}*{$f_2$} & \multicolumn{20}{c}{$f_1$} \\ 283 | \cmidrule{2-21} 284 | & 1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 & 9 & 10 & 12 & 14 & 16 & 18 & 20 & 25 & 30 & 60 & 120 & +\infty \\ 285 | \midrule 286 | 1 & 39.86 & 49.50 & 53.59 & 55.83 & 57.24 & 58.20 & 58.91 & 59.44 & 59.86 & 60.19 & 60.71 & 61.07 & 61.35 & 61.57 & 61.74 & 62.05 & 62.26 & 62.79 & 63.06 & 63.31 \\ 287 | 2 & 8.53 & 9.00 & 9.16 & 9.24 & 9.29 & 9.33 & 9.35 & 9.37 & 9.38 & 9.39 & 9.41 & 9.42 & 9.43 & 9.44 & 9.44 & 9.45 & 9.46 & 9.47 & 9.48 & 9.49 \\ 288 | 3 & 5.54 & 5.46 & 5.39 & 5.34 & 5.31 & 5.28 & 5.27 & 5.25 & 5.24 & 5.23 & 5.22 & 5.20 & 5.19 & 5.18 & 5.17 & 5.17 & 5.15 & 5.14 & 5.13 \\ 289 | 4 & 4.54 & 4.32 & 4.19 & 4.11 & 4.05 & 4.01 & 3.98 & 3.95 & 3.94 & 3.92 & 3.90 & 3.88 & 3.86 & 3.85 & 3.84 & 3.83 & 3.82 & 3.79 & 3.78 & 3.76 \\ 290 | 5 & 4.06 & 3.78 & 3.62 & 3.52 & 3.45 & 3.40 & 3.37 & 3.34 & 3.32 & 3.30 & 3.27 & 3.25 & 3.23 & 3.22 & 3.21 & 3.19 & 3.17 & 3.14 & 3.12 & 3.11 \\ 291 | \midrule 292 | 6 & 3.78 & 3.46 & 3.29 & 3.18 & 3.11 & 3.05 & 3.01 & 2.98 & 2.96 & 2.94 & 2.90 & 2.88 & 2.86 & 2.85 & 2.84 & 2.81 & 2.80 & 2.76 & 2.74 & 2.72 \\ 293 | 7 & 3.59 & 3.26 & 3.07 & 2.96 & 2.88 & 2.83 & 2.78 & 2.78 & 2.75 & 2.72 & 2.70 & 2.64 & 2.62 & 2.61 & 2.59 & 2.57 & 2.56 & 2.51 & 2.49 & 2.47 \\ 294 | 8 & 3.46 & 3.11 & 2.92 & 2.81 & 2.73 & 2.67 & 2.62 & 2.59 & 2.56 & 2.54 & 2.50 & 2.48 & 2.45 & 2.44 & 2.42 & 2.40 & 2.38 & 2.34 & 2.32 & 2.29 \\ 295 | 9 & 3.36 & 3.01 & 2.81 & 2.69 & 2.61 & 2.55 & 2.51 & 2.47 & 2.44 & 2.42 & 2.38 & 2.35 & 2.33 & 2.31 & 2.30 & 2.27 & 2.25 & 2.21 & 2.18 & 2.16 \\ 296 | 10 & 3.29 & 2.92 & 2.73 & 2.61 & 2.52 & 2.46 & 2.41 & 2.38 & 2.35 & 2.32 & 2.28 & 2.26 & 2.23 & 2.22 & 2.20 & 2.17 & 2.16 & 2.11 & 2.08 & 2.06 \\ 297 | \midrule 298 | 12 & 3.18 & 2.81 & 2.61 & 2.48 & 2.39 & 2.33 & 2.28 & 2.24 & 2.21 & 2.19 & 2.15 & 2.12 & 2.09 & 2.08 & 2.06 & 2.03 & 2.01 & 1.96 & 1.93 & 1.91 \\ 299 | 14 & 3.10 & 2.73 & 2.52 & 2.39 & 2.31 & 2.24 & 2.19 & 2.15 & 2.12 & 2.10 & 2.05 & 2.02 & 2.00 & 1.98 & 1.96 & 1.93 & 1.91 & 1.86 & 1.83 & 1.80 \\ 300 | 16 & 3.05 & 2.67 & 2.46 & 2.33 & 2.24 & 2.18 & 2.13 & 2.09 & 2.06 & 2.03 & 1.99 & 1.95 & 1.93 & 1.91 & 1.89 & 1.86 & 1.84 & 1.78 & 1.75 & 1.72 \\ 301 | 18 & 3.01 & 2.62 & 2.42 & 2.29 & 2.20 & 2.13 & 2.08 & 2.04 & 2.00 & 1.98 & 1.93 & 1.90 & 1.87 & 1.85 & 1.84 & 1.80 & 1.78 & 1.72 & 1.69 & 1.66 \\ 302 | 20 & 2.97 & 2.59 & 3.38 & 2.25 & 2.16 & 2.09 & 2.04 & 2.00 & 1.96 & 1.94 & 1.89 & 1.86 & 1.83 & 1.81 & 1.79 & 1.76 & 1.74 & 1.68 & 1.64 & 1.61 \\ 303 | \midrule 304 | 25 & 2.92 & 2.53 & 2.32 & 2.18 & 2.09 & 2.02 & 1.97 & 1.93 & 1.89 & 1.87 & 1.82 & 1.79 & 1.76 & 1.74 & 1.72 & 1.68 & 1.66 & 1.59 & 1.56 & 1.52 \\ 305 | 30 & 2.88 & 2.49 & 2.28 & 2.14 & 2.05 & 1.98 & 1.93 & 1.88 & 1.85 & 1.82 & 1.77 & 1.74 & 1.71 & 1.69 & 1.67 & 1.63 & 1.61 & 1.54 & 1.50 & 1.46 \\ 306 | 60 & 2.79 & 2.39 & 2.18 & 2.04 & 1.95 & 1.87 & 1.82 & 1.77 & 1.74 & 1.71 & 1.66 & 1.62 & 1.59 & 1.56 & 1.54 & 1.50 & 1.48 & 1.40 & 1.35 & 1.30 \\ 307 | 120 & 2.75 & 2.35 & 2.13 & 1.99 & 1.90 & 1.82 & 1.77 & 1.72 & 1.68 & 1.65 & 1.60 & 1.56 & 1.53 & 1.50 & 1.48 & 1.44 & 1.41 & 1.32 & 1.26 & 1.20 \\ 308 | $+\infty$ & 2.71 & 2.31 & 2.09 & 1.95 & 1.85 & 1.78 & 1.72 & 1.67 & 1.63 & 1.60 & 1.55 & 1.51 & 1.47 & 1.45 & 1.42 & 1.38 & 1.35 & 1.25 & 1.18 & 1.06 \\ 309 | \bottomrule 310 | \end{tabularx} 311 | \newpage \addtocounter{table}{-1}\stepcounter{mycount} 312 | \captionof{table}{$F$分布0.95分位数$F_{0.95}(f_1,f_2) $表}\label{tab5.2} 313 | \begin{tabularx}{\linewidth}{c|*{20}{Y}} 314 | \toprule 315 | \multirow{2}*{$f_2$} & \multicolumn{20}{c}{$f_1$} \\ 316 | \cmidrule{2-21} 317 | & 1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 & 9 & 10 & 12 & 14 & 16 & 18 & 20 & 25 & 30 & 60 & 120 & +\infty \\ 318 | \midrule 319 | 1 & 161.45 & 199.50 & 215.71 & 224.58 & 230.16 & 233.99 & 236.77 & 238.88 & 240.54 & 241.88 & 243.91 & 245.36 & 246.46 & 247.32 & 248.01 & 249.26 & 250.10 & 252.20 & 253.25 & 254.25 \\ 320 | 2 & 18.51 & 19.00 & 19.16 & 19.25 & 19.30 & 19.33 & 19.35 & 19.37 & 19.38 & 19.40 & 19.41 & 19.42 & 19.43 & 19.44 & 19.45 & 19.46 & 19.46 & 19.48 & 19.49 & 19.50 \\ 321 | 3 & 10.13 & 9.55 & 9.28 & 9.12 & 9.01 & 8.94 & 8.89 & 8.85 & 8.81 & 8.79 & 8.74 & 8.71 & 8.69 & 8.66 & 8.63 & 8.62 & 8.57 & 8.55 & 8.53 \\ 322 | 4 & 7.71 & 6.94 & 6.59 & 6.39 & 6.26 & 6.16 & 6.09 & 6.04 & 6.00 & 5.96 & 5.91 & 5.87 & 5.84 & 5.82 & 5.80 & 5.77 & 5.75 & 5.69 & 5.66 & 5.63 \\ 323 | 5 & 6.61 & 5.79 & 5.41 & 5.19 & 5.05 & 4.95 & 4.88 & 4.82 & 4.77 & 4.74 & 4.68 & 4.64 & 4.60 & 4.58 & 4.56 & 4.52 & 4.50 & 4.43 & 4.40 & 4.37 \\ 324 | \midrule 325 | 6 & 5.99 & 5.14 & 4.76 & 4.53 & 4.39 & 4.28 & 4.21 & 4.15 & 4.10 & 4.06 & 4.00 & 3.96 & 3.92 & 3.90 & 3.87 & 3.83 & 3.81 & 3.74 & 3.70 & 3.67 \\ 326 | 7 & 5.59 & 4.74 & 4.35 & 4.12 & 3.97 & 3.87 & 3.79 & 3.73 & 3.68 & 3.64 & 3.57 & 3.53 & 3.49 & 3.47 & 3.44 & 3.40 & 3.38 & 3.30 & 3.27 & 3.23 \\ 327 | 8 & 5.32 & 4.46 & 4.07 & 3.84 & 3.69 & 3.58 & 3.50 & 3.44 & 3.39 & 3.35 & 3.28 & 3.24 & 3.20 & 3.17 & 3.15 & 3.11 & 3.08 & 3.01 & 2.97 & 2.93 \\ 328 | 9 & 5.12 & 4.26 & 3.86 & 3.63 & 3.48 & 3.37 & 3.29 & 3.23 & 3.18 & 3.14 & 3.07 & 3.03 & 2.99 & 2.96 & 2.94 & 2.89 & 2.86 & 2.79 & 2.75 & 2.71 \\ 329 | 10 & 4.96 & 4.10 & 3.71 & 3.48 & 3.33 & 3.22 & 3.14 & 3.07 & 3.02 & 2.98 & 2.91 & 2.86 & 2.83 & 2.80 & 2.77 & 2.73 & 2.70 & 2.62 & 2.58 & 2.54 \\ 330 | \midrule 331 | 12 & 4.75 & 3.89 & 3.49 & 3.26 & 3.11 & 3.00 & 2.91 & 2.85 & 2.80 & 2.75 & 2.69 & 2.64 & 2.60 & 2.57 & 2.54 & 2.50 & 2.47 & 2.38 & 2.34 & 2.30 \\ 332 | 14 & 4.60 & 3.74 & 3.34 & 3.11 & 2.96 & 2.85 & 2.76 & 2.70 & 2.65 & 2.60 & 2.53 & 2.48 & 2.44 & 2.41 & 2.39 & 2.34 & 2.31 & 2.22 & 2.18 & 2.13 \\ 333 | 16 & 4.49 & 3.63 & 3.24 & 3.01 & 2.85 & 2.74 & 2.66 & 2.59 & 2.54 & 2.49 & 2.42 & 2.37 & 2.33 & 2.30 & 2.28 & 2.23 & 2.19 & 2.11 & 2.06 & 2.01 \\ 334 | 18 & 4.41 & 3.55 & 3.16 & 2.93 & 2.77 & 2.66 & 2.58 & 2.51 & 2.46 & 2.41 & 2.34 & 2.29 & 2.25 & 2.22 & 2.19 & 2.14 & 2.11 & 2.02 & 1.97 & 1.92 \\ 335 | 20 & 4.35 & 3.49 & 3.10 & 2.87 & 2.71 & 2.60 & 2.51 & 2.45 & 2.39 & 2.35 & 2.28 & 2.22 & 2.18 & 2.15 & 2.12 & 2.07 & 2.04 & 1.95 & 1.90 & 1.85 \\ 336 | \midrule 337 | 25 & 4.24 & 3.39 & 2.99 & 2.76 & 2.60 & 2.49 & 2.40 & 2.34 & 2.28 & 2.24 & 2.16 & 2.11 & 2.07 & 2.04 & 2.01 & 1.96 & 1.92 & 1.82 & 1.77 & 1.71 \\ 338 | 30 & 4.17 & 3.32 & 2.92 & 2.69 & 2.53 & 2.42 & 2.33 & 2.27 & 2.21 & 2.16 & 2.09 & 2.04 & 1.99 & 1.96 & 1.93 & 1.88 & 1.84 & 1.74 & 1.68 & 1.63 \\ 339 | 60 & 4.00 & 3.15 & 2.76 & 2.53 & 2.37 & 2.25 & 2.17 & 2.10 & 2.04 & 1.99 & 1.92 & 1.86 & 1.82 & 1.78 & 1.75 & 1.69 & 1.65 & 1.53 & 1.47 & 1.39 \\ 340 | 120 & 3.92 & 3.07 & 2.68 & 2.45 & 2.29 & 2.18 & 2.09 & 2.02 & 1.96 & 1.91 & 1.83 & 1.78 & 1.73 & 1.69 & 1.66 & 1.60 & 1.55 & 1.43 & 1.35 & 1.26 \\ 341 | $+\infty$ & 3.85 & 3.00 & 2.61 & 2.38 & 2.22 & 2.10 & 2.01 & 1.94 & 1.88 & 1.84 & 1.76 & 1.70 & 1.65 & 1.61 & 1.58 & 1.51 & 1.46 & 1.32 & 1.23 & 1.08 \\ 342 | \bottomrule 343 | \end{tabularx} 344 | \newpage \addtocounter{table}{-1}\stepcounter{mycount} 345 | \captionof{table}{$F$分布0.975分位数$F_{0.975}(f_1,f_2) $表}\label{tab5.3} 346 | \begin{tabularx}{\linewidth}{c|*{20}{Y}} 347 | \toprule 348 | \multirow{2}*{$f_2$} & \multicolumn{20}{c}{$f_1$} \\ 349 | \cmidrule{2-21} 350 | & 1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 & 9 & 10 & 12 & 14 & 16 & 18 & 20 & 25 & 30 & 60 & 120 & +\infty \\ 351 | \midrule 352 | 1 & 647.79 & 799.50 & 864.16 & 899.58 & 921.85 & 937.11 & 948.22 & 956.66 & 963.28 & 968.63 & 976.71 & 982.53 & 986.92 & 990.35 & 993.10 & 998.08 & 1001.41 & 1009.80 & 1014.02 & 1018.00 \\ 353 | 2 & 38.51 & 39.00 & 39.17 & 39.25 & 39.30 & 39.33 & 39.36 & 39.37 & 39.39 & 39.40 & 39.41 & 39.43 & 39.44 & 39.44 & 39.45 & 39.46 & 39.46 & 39.48 & 39.49 & 39.50 \\ 354 | 3 & 17.44 & 16.04 & 15.44 & 15.10 & 14.88 & 14.73 & 14.62 & 14.54 & 14.47 & 14.42 & 14.34 & 14.28 & 14.23 & 14.20 & 14.17 & 14.12 & 14.08 & 13.99 & 13.95 & 13.90 \\ 355 | 4 & 12.22 & 10.65 & 9.98 & 9.60 & 9.36 & 9.20 & 9.07 & 8.98 & 8.90 & 8.84 & 8.75 & 8.68 & 8.63 & 8.59 & 8.56 & 8.50 & 8.46 & 8.36 & 8.31 & 8.26 \\ 356 | 5 & 10.01 & 8.43 & 7.76 & 7.39 & 7.15 & 6.98 & 6.85 & 6.76 & 6.68 & 6.62 & 6.52 & 6.46 & 6.40 & 6.36 & 6.33 & 6.27 & 6.23 & 6.12 & 6.07 & 6.02 \\ 357 | \midrule 358 | 6 & 8.81 & 7.26 & 6.60 & 6.23 & 5.99 & 5.82 & 5.70 & 5.60 & 5.52 & 5.46 & 5.37 & 5.30 & 5.24 & 5.20 & 5.17 & 5.11 & 5.07 & 4.96 & 4.90 & 4.85 \\ 359 | 7 & 8.07 & 6.54 & 5.89 & 5.52 & 5.29 & 5.12 & 4.99 & 4.90 & 4.82 & 4.76 & 4.67 & 4.60 & 4.54 & 4.50 & 4.47 & 4.40 & 4.36 & 4.25 & 4.20 & 4.15 \\ 360 | 8 & 7.57 & 6.06 & 5.42 & 5.05 & 4.82 & 4.65 & 4.53 & 4.43 & 4.36 & 4.30 & 4.20 & 4.13 & 4.08 & 4.03 & 4.00 & 3.94 & 3.89 & 3.78 & 2.73 & 2.67 \\ 361 | 9 & 7.21 & 5.71 & 5.08 & 4.72 & 4.48 & 4.32 & 4.20 & 4.10 & 4.03 & 3.96 & 3.87 & 3.80 & 3.74 & 3.70 & 3.67 & 3.60 & 3.56 & 3.45 & 3.39 & 3.34 \\ 362 | 10 & 6.94 & 5.46 & 4.83 & 4.47 & 4.24 & 4.07 & 3.95 & 3.85 & 3.78 & 3.72 & 3.62 & 3.55 & 3.50 & 3.45 & 3.42 & 3.35 & 3.31 & 3.20 & 3.14 & 3.08\\ 363 | \midrule 364 | 12 & 6.55 & 5.10 & 4.47 & 4.12 & 3.89 & 3.73 & 3.61 & 3.51 & 3.44 & 3.37 & 3.28 & 3.21 & 3.15 & 3.11 & 3.07 & 3.01 & 2.96 & 2.85 & 2.79 & 2.73 \\ 365 | 14 & 6.30 & 4.86 & 4.24 & 3.89 & 3.66 & 3.50 & 3.38 & 3.29 & 3.21 & 3.15 & 3.05 & 3.98 & 2.92 & 2.88 & 2.84 & 2.78 & 2.73 & 2.61 & 2.55 & 2.49 \\ 366 | 16 & 6.12 & 4.69 & 4.08 & 3.73 & 3.50 & 3.34 & 3.22 & 3.12 & 3.05 & 2.99 & 2.89 & 2.82 & 2.76 & 2.72 & 2.68 & 2.61 & 2.57 & 2.45 & 2.38 & 2.32 \\ 367 | 18 & 5.98 & 4.56 & 3.95 & 3.61 & 3.38 & 3.22 & 3.10 & 3.01 & 2.93 & 2.87 & 2.77 & 2.70 & 2.64 & 2.60 & 2.56 & 2.49 & 2.44 & 2.32 & 2.26 & 2.19 \\ 368 | 20 & 5.87 & 4.46 & 3.86 & 3.51 & 3.29 & 3.13 & 3.01 & 2.91 & 2.84 & 2.77 & 2.68 & 2.60 & 2.55 & 2.50 & 2.46 & 2.40 & 2.35 & 2.22 & 2.16 & 2.09 \\ 369 | \midrule 370 | 25 & 5.69 & 4.29 & 3.69 & 3.35 & 3.13 & 2.97 & 2.85 & 2.75 & 2.68 & 2.61 & 2.51 & 2.44 & 2.38 & 2.34 & 2.30 & 2.23 & 2.18 & 2.05 & 1.98 & 1.91 \\ 371 | 30 & 5.57 & 4.18 & 3.59 & 3.25 & 3.03 & 2.87 & 2.75 & 2.65 & 2.57 & 2.51 & 2.41 & 2.34 & 2.28 & 2.23 & 2.20 & 2.12 & 2.07 & 1.94 & 1.87 & 1.79 \\ 372 | 60 & 5.29 & 3.93 & 3.34 & 3.01 & 2.79 & 2.63 & 2.51 & 2.41 & 2.33 & 2.27 & 2.17 & 2.09 & 2.03 & 1.98 & 1.94 & 1.87 & 1.82 & 1.67 & 1.58 & 1.49 \\ 373 | 120 & 5.15 & 3.80 & 3.23 & 2.89 & 2.67 & 2.52 & 2.39 & 2.30 & 2.22 & 2.16 & 2.05 & 1.98 & 1.92 & 1.87 & 1.82 & 1.75 & 1.69 & 1.53 & 1.43 & 1.32 \\ 374 | $+\infty$ & 5.03 & 3.70 & 3.12 & 2.79 & 2.57 & 2.41 & 2.29 & 2.20 & 2.12 & 2.05 & 1.95 & 1.87 & 1.81 & 1.76 & 1.72 & 1.63 & 1.57 & 1.40 & 1.28 & 1.09 \\ 375 | \bottomrule 376 | \end{tabularx} 377 | \newpage \addtocounter{table}{-1}\stepcounter{mycount} 378 | \captionof{table}{$F$分布0.99分位数$F_{0.99}(f_1,f_2) $表}\label{tab5.4}\zihao{-5} 379 | \begin{tabularx}{\linewidth}{c|*{20}{Y}} 380 | \toprule 381 | \multirow{2}*{$f_2$} & \multicolumn{20}{c}{$f_1$} \\ 382 | \cmidrule{2-21} 383 | & 1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 & 9 & 10 & 12 & 14 & 16 & 18 & 20 & 25 & 30 & 60 & 120 & +\infty \\ 384 | \midrule 385 | 1 & 4052.18 & 4999.50 & 5403.35 & 5624.58 & 5763.65 & 5858.99 & 5928.36 & 5981.07 & 6022.47 & 6055.85 & 6106.32 & 6142.67 & 6170.10 & 6191.53 & 6208.73 & 6239.83 & 6260.65 & 6313.03 & 6339.39 & 6364.27 \\ 386 | 2 & 98.50 & 99.00 & 99.17 & 99.25 & 99.30 & 99.33 & 99.36 & 99.37 & 99.39 & 99.40 & 99.42 & 99.43 & 99.44 & 99.44 & 99.45 & 99.46 & 99.47 & 99.48 & 99.49 & 99.50 \\ 387 | 3 & 34.12 & 30.82 & 29.46 & 28.71 & 28.24 & 27.91 & 27.67 & 27.49 & 27.35 & 27.23 & 27.05 & 26.92 & 26.83 & 26.75 & 26.69 & 26.58 & 26.50 & 26.32 & 26.22 & 26.13 \\ 388 | 4 & 21.20 & 18.00 & 16.69 & 15.98 & 15.52 & 15.21 & 14.98 & 14.80 & 14.66 & 14.55 & 14.37 & 14.25 & 14.15 & 14.08 & 14.02 & 13.91 & 13.84 & 13.65 & 13.56 & 13.47 \\ 389 | 5 & 16.26 & 13.27 & 12.06 & 11.39 & 10.97 & 10.67 & 10.46 & 10.29 & 10.16 & 10.05 & 9.89 & 9.77 & 9.68 & 9.61 & 9.55 & 9.45 & 9.38 & 9.20 & 9.11 & 9.03 \\ 390 | \midrule 391 | 6 & 13.75 & 10.92 & 9.78 & 9.15 & 8.75 & 8.47 & 8.26 & 8.10 & 7.98 & 7.87 & 7.72 & 7.60 & 7.52 & 7.45 & 7.40 & 7.30 & 7.23 & 7.06 & 6.97 & 6.89 \\ 392 | 7 & 12.25 & 9.55 & 8.45 & 7.85 & 7.46 & 7.19 & 6.99 & 6.84 & 6.72 & 6.62 & 6.47 & 6.36 & 6.28 & 6.21 & 6.16 & 6.06 & 5.99 & 5.82 & 5.74 & 5.65 \\ 393 | 8 & 11.26 & 8.65 & 7.59 & 7.01 & 6.63 & 6.37 & 6.18 & 6.03 & 5.91 & 5.81 & 5.67 & 5.56 & 5.48 & 5.41 & 5.36 & 5.26 & 5.20 & 5.03 & 4.95 & 4.86 \\ 394 | 9 & 10.56 & 8.02 & 6.99 & 6.42 & 6.06 & 5.80 & 5.61 & 5.47 & 5.35 & 5.26 & 5.11 & 5.01 & 4.92 & 4.86 & 4.81 & 4.71 & 4.65 & 4.48 & 4.40 & 4.32 \\ 395 | 10 & 10.04 & 7.56 & 6.55 & 5.99 & 5.64 & 5.39 & 5.20 & 5.06 & 4.94 & 4.85 & 4.71 & 4.60 & 4.52 & 4.46 & 4.41 & 4.31 & 4.25 & 4.08 & 4.00 & 3.91 \\ 396 | \midrule 397 | 12 & 9.33 & 6.93 & 5.95 & 5.41 & 5.06 & 4.82 & 4.64 & 4.50 & 4.39 & 4.30 & 4.16 & 4.05 & 3.97 & 3.91 & 3.86 & 3.76 & 2.70 & 2.54 & 2.45 & 3.37 \\ 398 | 14 & 8.86 & 6.51 & 5.56 & 5.04 & 4.69 & 4.46 & 4.28 & 4.14 & 4.03 & 3.94 & 3.80 & 3.70 & 3.62 & 3.56 & 3.51 & 3.41 & 3.35 & 3.18 & 3.09 & 3.01 \\ 399 | 16 & 8.53 & 6.23 & 5.29 & 4.47 & 4.44 & 4.20 & 4.03 & 3.89 & 3.78 & 3.69 & 3.55 & 3.45 & 3.37 & 3.31 & 3.26 & 3.16 & 3.10 & 2.93 & 2.84 & 2.76 \\ 400 | 18 & 8.29 & 6.01 & 5.09 & 4.58 & 4.25 & 4.01 & 3.84 & 3.71 & 3.60 & 3.51 & 3.37 & 3.27 & 3.19 & 3.13 & 3.08 & 2.98 & 2.92 & 2.75 & 2.66 & 2.57 \\ 401 | 20 & 8.10 & 5.85 & 4.94 & 4.43 & 4.10 & 3.87 & 3.70 & 3.56 & 3.46 & 3.37 & 3.23 & 3.13 & 3.05 & 2.99 & 2.94 & 2.84 & 2.78 & 2.61 & 2.52 & 2.43 \\ 402 | \midrule 403 | 25 & 7.77 & 5.57 & 4.68 & 4.18 & 3.85 & 3.63 & 3.46 & 3.32 & 3.22 & 3.13 & 2.99 & 2.89 & 2.81 & 2.75 & 2.70 & 2.60 & 2.54 & 2.36 & 2.27 & 2.18 \\ 404 | 30 & 7.56 & 5.39 & 4.51 & 4.02 & 3.70 & 3.47 & 3.30 & 3.17 & 3.07 & 2.98 & 2.84 & 2.74 & 2.66 & 2.60 & 2.55 & 2.45 & 2.39 & 2.21 & 2.11 & 2.01 \\ 405 | 60 & 7.08 & 4.98 & 4.13 & 3.65 & 3.34 & 3.12 & 2.95 & 2.82 & 2.72 & 2.63 & 2.50 & 2.39 & 2.31 & 2.25 & 2.20 & 2.10 & 2.03 & 1.84 & 1.73 & 1.61 \\ 406 | 120 & 6.85 & 4.79 & 3.95 & 3.48 & 3.17 & 2.96 & 2.79 & 2.66 & 2.56 & 2.47 & 2.34 & 2.23 & 2.15 & 2.09 & 2.03 & 1.93 & 1.86 & 1.66 & 1.53 & 1.39 \\ 407 | $+\infty$ & 6.65 & 4.62 & 3.79 & 3.33 & 3.03 & 2.81 & 2.65 & 2.52 & 2.42 & 2.33 & 2.19 & 2.09 & 2.01 & 1.94 & 1.89 & 1.78 & 1.71 & 1.48 & 1.34 & 1.11 \\ 408 | \bottomrule 409 | \end{tabularx} 410 | \newpage \renewcommand\thetable{\arabic{table}} 411 | \captionof{table}{正态性检验统计量$W$的系数$a_i(n)$数值表}\label{tab6} 412 | \begin{tabularx}{\linewidth}{Y*{10}{|Y}} 413 | \toprule 414 | \multicolumn{1}{l|}{\diagbox[width=2.4cm]{$i$}{$n$}} & & 3 & 4 & 5 & 6 & 7 & 8 & 9 & 10 \\ 415 | \midrule 416 | 1 & & - & - & - & - & - & 0.6052 & 0.5888 & 0.5739 \\ 417 | 2 & & - & - & - & - & - & 0.3164 & 0.3244 & 0.3291 \\ 418 | 3 & & - & - & - & - & - & 0.1743 & 0.1976 & 0.2141 \\ 419 | 4 & & - & - & - & - & - & 0.0561 & 0.0947 & 0.1224 \\ 420 | 5 & & - & - & - & - & - & - & - & 0.0399 \\ 421 | \midrule 422 | \midrule 423 | \multicolumn{1}{l|}{\diagbox[width=2.4cm]{$i$}{$n$}} & 11 & 12 & 13 & 14 & 15 & 16 & 17 & 18 & 19 & 20 \\ 424 | \midrule 425 | 1 & 0.5601 & 0.5475 & 0.5359 & 0.5251 & 0.5150 & 0.5056 & 0.4968 & 0.4886 & 0.4808 & 0.4734 \\ 426 | 2 & 0.3315 & 0.3325 & 0.3325 & 0.3318 & 0.3306 & 0.3290 & 0.3273 & 0.3253 & 0.3232 & 0.3211 \\ 427 | 3 & 0.2260 & 0.2347 & 0.2412 & 0.2460 & 0.2495 & 0.2521 & 0.2540 & 0.2553 & 0.2561 & 0.2565 \\ 428 | 4 & 0.1429 & 0.1586 & 0.1707 & 0.1802 & 0.1878 & 0.1939 & 0.1988 & 0.2027 & 0.2059 & 0.2085 \\ 429 | 5 & 0.0695 & 0.0922 & 0.1099 & 0.1240 & 0.1353 & 0.1447 & 0.1524 & 0.1587 & 0.1641 & 0.1686 \\ 430 | 6 & - & 0.0303 & 0.0539 & 0.0727 & 0.0880 & 0.1005 & 0.1109 & 0.1997 & 0.1271 & 0.1334 \\ 431 | 7 & - & - & - & 0.0240 & 0.0433 & 0.0593 & 0.0725 & 0.0837 & 0.932 & 0.103 \\ 432 | 8 & - & - & - & - & - & 0.0196 & 0.0359 & 0.0496 & 0.0612 & 0.0711 \\ 433 | 9 & - & - & - & - & - & - & - & 0.0163 & 0.0303 & 0.0422 \\ 434 | 10 & - & - & - & - & - & - & - & - & - & 0.0140 \\ 435 | \midrule 436 | \midrule 437 | \multicolumn{1}{l|}{\diagbox[width=2.4cm]{$i$}{$n$}} & 21 & 22 & 23 & 24 & 25 & 26 & 27 & 28 & 29 & 30 \\ 438 | \midrule 439 | 1 & 0.4643 & 0.4590 & 0.4542 & 0.4493 & 0.4450 & 0.4407 & 0.4366 & 0.4328 & 0.4291 & 0.4254 \\ 440 | 2 & 0.3185 & 0.3156 & 0.3126 & 0.3098 & 0.3069 & 0.3043 & 0.3018 & 0.2992 & 0.2968 & 0.2944 \\ 441 | 3 & 0.3578 & 0.2571 & 0.2563 & 0.2544 & 0.2543 & 0.2533 & 0.2522 & 0.2510 & 0.2499 & 0.2487 \\ 442 | 4 & 0.2119 & 0.2131 & 0.2139 & 0.2145 & 0.2148 & 0.2151 & 0.2152 & 0.2151 & 0.2150 & 0.2148 \\ 443 | 5 & 0.1736 & 0.1764 & 0.1787 & 0.1807 & 0.1822 & 0.1836 & 0.1848 & 0.1857 & 0.1864 & 0.1870 \\ 444 | \midrule 445 | \end{tabularx} 446 | \newpage 447 | \begin{tabularx}{\linewidth}{Y*{10}{|Y}} 448 | \toprule 449 | \multicolumn{1}{l|}{\diagbox[width=2.4cm]{$i$}{$n$}} & 21 & 22 & 23 & 24 & 25 & 26 & 27 & 28 & 29 & 30 \\ 450 | \midrule 451 | 6 & 0.1399 & 0.1443 & 0.1480 & 0.1512 & 0.1539 & 0.1563 & 0.1584 & 0.1601 & 0.1616 & 0.1630 \\ 452 | 7 & 0.1092 & 0.1150 & 0.1201 & 0.1245 & 0.1283 & 0.1316 & 0.1346 & 0.1372 & 0.1395 & 0.1415 \\ 453 | 8 & 0.0804 & 0.0878 & 0.0941 & 0.0997 & 0.1046 & 0.1089 & 0.1128 & 0.1162 & 0.1192 & 0.1219 \\ 454 | 9 & 0.0530 & 0.0618 & 0.0696 & 0.0764 & 0.0823 & 0.0876 & 0.0923 & 0.0965 & 0.1002 & 0.1036 \\ 455 | 10 & 0.0263 & 0.0368 & 0.0459 & 0.0539 & 0.0610 & 0.0672 & 0.0728 & 0.0778 & 0.0822 & 0.0862 \\ 456 | 11 & - & 0.0122 & 0.0228 & 0.0321 & 0.0403 & 0.0476 & 0.0540 & 0.0598 & 0.0650 & 0.0668 \\ 457 | 12 & - & - & - & 0.0107 & 0.0200 & 0.0284 & 0.0358 & 0.0424 & 0.0483 & 0.0537 \\ 458 | 13 & - & - & - & - & - & 0.0094 & 0.0178 & 0.0253 & 0.0320 & 0.0381 \\ 459 | 14 & - & - & - & - & - & - & - & 0.0084 & 0.0159 & 0.0227 \\ 460 | 15 & - & - & - & - & - & - & - & - & - & 0.0076 \\ 461 | \midrule 462 | \midrule 463 | \multicolumn{1}{l|}{\diagbox[width=2.4cm]{$i$}{$n$}} & 41 & 44 & 43 & 44 & 45 & 46 & 47 & 48 & 49 & 50 \\ 464 | \midrule 465 | 1 & 0.3940 & 0.3917 & 0.3894 & 0.3872 & 0.3850 & 0.3830 & 0.3803 & 0.3789 & 0.3770 & 0.3751 \\ 466 | 2 & 0.2719 & 0.2701 & 0.2684 & 0.2667 & 0.2651 & 0.2635 & 0.2620 & 0.2604 & 0.2589 & 0.2574 \\ 467 | 3 & 0.2357 & 0.2345 & 0.2334 & 0.2323 & 0.2313 & 0.2302 & 0.2291 & 0.2281 & 0.2271 & 0.2260 \\ 468 | 4 & 0.2091 & 0.2085 & 0.2078 & 0.2072 & 0.2065 & 0.2058 & 0.2052 & 0.2045 & 0.2038 & 0.2032 \\ 469 | 5 & 0.1876 & 0.1874 & 0.1871 & 0.1868 & 0.1865 & 0.1862 & 0.1859 & 0.1855 & 0.1851 & 0.1847 \\ 470 | 6 & 0.1693 & 0.1694 & 0.1695 & 0.1695 & 0.1695 & 0.1695 & 0.1695 & 0.1693 & 0.1692 & 0.1691 \\ 471 | 7 & 0.1531 & 0.1535 & 0.1539 & 0.1542 & 0.1545 & 0.1548 & 0.1550 & 0.1551 & 0.1553 & 0.1554 \\ 472 | 8 & 0.1384 & 0.1392 & 0.1398 & 0.1405 & 0.1410 & 0.1415 & 0.1420 & 0.1423 & 0.1427 & 0.1430 \\ 473 | 9 & 0.1249 & 0.1259 & 0.1269 & 0.1278 & 0.1286 & 0.1293 & 0.1300 & 0.1306 & 0.1312 & 0.1317 \\ 474 | 10 & 0.1123 & 0.1136 & 0.1149 & 0.1160 & 0.1170 & 0.1180 & 0.1189 & 0.1197 & 0.1205 & 0.1212 \\ 475 | 11 & 0.1004 & 0.1020 & 0.1035 & 0.1049 & 0.1062 & 0.1073 & 0.1085 & 0.1095 & 0.1105 & 0.1113 \\ 476 | 12 & 0.0891 & 0.0909 & 0.0927 & 0.0943 & 0.0959 & 0.0972 & 0.0986 & 0.0998 & 0.1010 & 0.1020 \\ 477 | 13 & 0.0782 & 0.0804 & 0.0824 & 0.0842 & 0.0860 & 0.0876 & 0.0892 & 0.0906 & 0.0919 & 0.0932 \\ 478 | 14 & 0.0677 & 0.0701 & 0.0724 & 0.0745 & 0.0765 & 0.0783 & 0.0801 & 0.0817 & 0.0832 & 0.0846 \\ 479 | 15 & 0.0575 & 0.0602 & 0.0628 & 0.0651 & 0.0673 & 0.0694 & 0.0713 & 0.0731 & 0.0748 & 0.0764 \\ 480 | \bottomrule 481 | \end{tabularx} 482 | \begin{tabularx}{\linewidth}{Y*{10}{|Y}} 483 | \toprule 484 | \multicolumn{1}{l|}{\diagbox[width=2.4cm]{$i$}{$n$}} & 41 & 44 & 43 & 44 & 45 & 46 & 47 & 48 & 49 & 50 \\ 485 | \midrule 486 | 16 & 0.0476 & 0.0506 & 0.0534 & 0.0560 & 0.0584 & 0.0607 & 0.0628 & 0.0648 & 0.0667 & 0.0685 \\ 487 | 17 & 0.0379 & 0.0411 & 0.0442 & 0.0471 & 0.0497 & 0.0522 & 0.0546 & 0.0568 & 0.0588 & 0.0608 \\ 488 | 18 & 0.0283 & 0.0318 & 0.0352 & 0.0383 & 0.0412 & 0.0439 & 0.0465 & 0.0489 & 0.0511 & 0.0532 \\ 489 | 19 & 0.0188 & 0.0227 & 0.0263 & 0.0296 & 0.0328 & 0.0357 & 0.0385 & 0.0411 & 0.0436 & 0.0459 \\ 490 | 20 & 0.0094 & 0.0136 & 0.0175 & 0.0211 & 0.0245 & 0.0277 & 0.0307 & 0.0335 & 0.0361 & 0.0386 \\ 491 | 21 & - & 0.0045 & 0.0087 & 0.0126 & 0.0163 & 0.0197 & 0.0229 & 0.0259 & 0.0288 & 0.0314 \\ 492 | 22 & - & - & - & 0.0042 & 0.0081 & 0.0118 & 0.0153 & 0.0185 & 0.0215 & 0.0244 \\ 493 | 23 & - & - & - & - & - & 0.0039 & 0.0076 & 0.0111 & 0.0143 & 0.0174 \\ 494 | 24 & - & - & - & - & - & - & - & 0.0037 & 0.0071 & 0.0104 \\ 495 | 25 & - & - & - & - & - & - & - & - & - & 0.0035 \\ 496 | \bottomrule 497 | \end{tabularx} 498 | \end{landscape} 499 | 500 | \newpage \renewcommand\thetable{\arabic{table}} 501 | \captionof{table}{正态性检验统计量$W$的$\alpha$分位数$W_\alpha$表}\label{tab7} 502 | \begin{tabularx}{\linewidth}{YYYY||YYYY} 503 | \toprule 504 | \multicolumn{1}{l|}{\diagbox[width=1.8cm]{$n$}{$\alpha$}} & 0.01 & 0.05 & 0.10 & 505 | \multicolumn{1}{l|}{\diagbox[width=1.8cm]{$n$}{$\alpha$}} 506 | & 0.01 & 0.05 & 0.10 \\ 507 | \midrule 508 | & & & & 26 & 0.891 & 0.920 & 0.933 \\ 509 | & & & & 27 & 0.894 & 0.923 & 0.935 \\ 510 | & & & & 28 & 0.896 & 0.924 & 0.936 \\ 511 | & & & & 29 & 0.898 & 0.926 & 0.937 \\ 512 | & & & & 30 & 0.900 & 0.927 & 0.939 \\ 513 | & & & & 31 & 0.902 & 0.929 & 0.940 \\ 514 | & & & & 32 & 0.904 & 0.930 & 0.942 \\ 515 | 8 & 0.749 & 0.818 & 0.851 & 33 & 0.906 & 0.931 & 0.942 \\ 516 | 9 & 0.764 & 0.829 & 0.859 & 34 & 0.908 & 0.933 & 0.943 \\ 517 | 10 & 0.781 & 0.842 & 0.869 & 35 & 0.910 & 0.934 & 0.944 \\ 518 | 11 & 0.792 & 0.850 & 0.883 & 36 & 0.912 & 0.935 & 0.945 \\ 519 | 12 & 0.805 & 0.859 & 0.883 & 37 & 0.914 & 0.936 & 0.946 \\ 520 | 13 & 0.814 & 0.866 & 0.889 & 38 & 0.916 & 0.938 & 0.947 \\ 521 | 14 & 0.825 & 0.874 & 0.895 & 39 & 0.917 & 0.939 & 0.948 \\ 522 | 15 & 0.835 & 0.881 & 0,901 & 40 & 0.919 & 0.940 & 0.949 \\ 523 | 16 & 0.844 & 0.887 & 0.906 & 41 & 0.920 & 0.941 & 0.950 \\ 524 | 17 & 0.851 & 0.892 & 0.910 & 42 & 0.922 & 0.942 & 0.951 \\ 525 | 18 & 0.858 & 0.897 & 0.914 & 43 & 0.923 & 0.943 & 0.951 \\ 526 | 19 & 0.863 & 0.901 & 0.917 & 44 & 0.924 & 0.944 & 0.952 \\ 527 | 20 & 0.868 & 0.905 & 0.920 & 45 & 0.926 & 0.945 & 0.953 \\ 528 | 21 & 0.873 & 0.908 & 0.923 & 46 & 0.927 & 0.945 & 0.953 \\ 529 | 22 & 0.878 & 0.911 & 0.926 & 47 & 0.928 & 0.946 & 0.954 \\ 530 | 23 & 0.881 & 0.914 & 0.928 & 48 & 0.929 & 0.947 & 0.954 \\ 531 | 24 & 0.884 & 0.916 & 0.930 & 49 & 0.929 & 0.947 & 0.955 \\ 532 | 25 & 0.888 & 0.918 & 0.931 & 50 & 0.930 & 0.947 & 0.955 \\ 533 | \bottomrule 534 | \end{tabularx} 535 | 536 | \newpage 537 | \captionof{table}{$t$化极差统计量的分位数$q_{1-\alpha}(r,f)$表}\label{tab8} 538 | \centering ($\alpha=0.10$) 539 | \begin{tabularx}{\linewidth}{Y*{11}{|Y}} 540 | \toprule 541 | \multicolumn{1}{l|}{\diagbox[width=1.8cm]{$f$}{$r$}} & 2 & 3 & 4 & 5 & 6 & 7 & 8 & 9 & 10 & 15 & 20 \\ 542 | \midrule 543 | 1 & 8.93 & 13.4 & 16.4 & 18.5 & 20.2 & 21.5 & 22.6 & 2.36 & 24.5 & 27.6 & 29.7 \\ 544 | 2 & 4.13 & 5.73 & 6.77 & 7.54 & 8.14 & 8.63 & 9.05 & 9.41 & 9.72 & 10.9 & 11.7 \\ 545 | 3 & 3.33 & 4.47 & 5.20 & 5.74 & 6.16 & 6.51 & 6.81 & 7.06 & 7.29 & 8.12 & 8.68 \\ 546 | 4 & 3.01 & 3.98 & 4.59 & 5.03 & 5.39 & 5.68 & 5.93 & 6.14 & 6.33 & 7.02 & 7.50 \\ 547 | 5 & 2.85 & 3.72 & 4.26 & 4.66 & 4.98 & 5.24 & 5.46 & 5.65 & 5.82 & 6.44 & 6.86 \\ 548 | 6 & 2.75 & 3.56 & 4.07 & 4.44 & 4.73 & 4.97 & 5.17 & 5.34 & 5.50 & 6.07 & 6.47 \\ 549 | 7 & 2.68 & 3.45 & 3.93 & 4.28 & 4.55 & 4.78 & 4.97 & 5.14 & 5.28 & 5.83 & 6.19 \\ 550 | 8 & 2.63 & 3.37 & 3.83 & 4.17 & 4.43 & 4.65 & 4.83 & 4.99 & 5.13 & 5.64 & 6.00 \\ 551 | 9 & 3.59 & 3.32 & 3.76 & 4.08 & 4.34 & 4.54 & 4.72 & 4.87 & 5.01 & 5.51 & 5.85 \\ 552 | 10 & 2.56 & 3.27 & 3.70 & 4.02 & 4.26 & 4.47 & 4.64 & 4.78 & 4.91 & 5.40 & 5.73 \\ 553 | 11 & 2.54 & 3.23 & 3.66 & 3.96 & 4.20 & 4.40 & 4.57 & 4.71 & 4.84 & 5.31 & 5.63 \\ 554 | 12 & 2.52 & 3.20 & 3.62 & 3.92 & 4.16 & 4.35 & 4.51 & 4.65 & 4.78 & 5.24 & 5.55 \\ 555 | 13 & 2.50 & 3.18 & 3.59 & 3.88 & 4.12 & 4.30 & 4.46 & 4.60 & 4.72 & 5.18 & 5.48 \\ 556 | 14 & 2.49 & 3.16 & 3.56 & 3.85 & 4.08 & 4.27 & 4.42 & 4.56 & 4.68 & 5.12 & 5.43 \\ 557 | 15 & 2.48 & 3.14 & 3.54 & 3.83 & 4.05 & 4.23 & 4.39 & 4.52 & 4.64 & 5.08 & 5.38 \\ 558 | 16 & 2.47 & 3.12 & 3.52 & 3.80 & 4.03 & 4.21 & 4.36 & 4.49 & 4.61 & 5.04 & 5.33 \\ 559 | 17 & 2.46 & 3.11 & 3.50 & 3.78 & 4.00 & 4.18 & 4.33 & 4.46 & 4.58 & 5.01 & 5.30 \\ 560 | 18 & 2.45 & 3.10 & 3.49 & 3.77 & 3.98 & 4.16 & 4.31 & 4.44 & 4.55 & 4.98 & 5.26 \\ 561 | 19 & 2.45 & 3.09 & 3.47 & 3.75 & 3.97 & 4.14 & 2.29 & 4.42 & 4.53 & 4.95 & 5.23 \\ 562 | 20 & 2.44 & 3.08 & 3.46 & 3.74 & 3.95 & 4.12 & 4.27 & 4.40 & 4.51 & 4.92 & 5.20 \\ 563 | 24 & 2.42 & 3.05 & 3.42 & 3.69 & 3.90 & 4.07 & 4.21 & 4.34 & 4.44 & 4.85 & 5.12 \\ 564 | 30 & 2.40 & 3.02 & 3.39 & 3.65 & 3.85 & 4.02 & 4.16 & 4.28 & 4.38 & 4.77 & 5.03 \\ 565 | 40 & 2.38 & 3.99 & 3.35 & 3.60 & 3.80 & 3.96 & 4.10 & 4.21 & 4.32 & 4.69 & 4.95 \\ 566 | 60 & 2.36 & 2.96 & 3.31 & 3.56 & 3.75 & 3.91 & 4.04 & 4.16 & 4.25 & 4.62 & 4.86 \\ 567 | 120 & 2.34 & 2.93 & 3.28 & 3.52 & 3.71 & 3.86 & 3.99 & 4.10 & 4.19 & 4.54 & 4.78 \\ 568 | +\infty & 2.33 & 2.90 & 3.24 & 3.48 & 3.66 & 3.81 & 3.93 & 4.04 & 4.13 & 4.47 & 4.69 \\ 569 | \bottomrule 570 | \end{tabularx} 571 | 572 | \newpage 573 | ($\alpha=0.05$) 574 | \begin{tabularx}{\linewidth}{Y*{11}{|Y}} 575 | \toprule 576 | \multicolumn{1}{l|}{\diagbox[width=1.8cm]{$f$}{$r$}} & 2 & 3 & 4 & 5 & 6 & 7 & 8 & 9 & 10 & 15 & 20 \\ 577 | \midrule 578 | 1 & 18.0 & 27.0 & 32.8 & 37.1 & 40.4 & 43.1 & 45.4 & 47.4 & 49.1 & 55.4 & 59.6 \\ 579 | 2 & 6.08 & 8.33 & 9.80 & 10.9 & 11.7 & 12.4 & 13.0 & 13.5 & 14.0 & 15.7 & 16.8 \\ 580 | 3 & 4.50 & 5.91 & 6.82 & 7.50 & 8.04 & 8.48 & 8.85 & 9.18 & 9.46 & 10.5 & 11.2 \\ 581 | 4 & 3.93 & 5.04 & 5.76 & 6.29 & 6.71 & 7.05 & 7.35 & 7.60 & 7.83 & 8.66 & 7.50 \\ 582 | 5 & 3.64 & 4.60 & 5.22 & 5.67 & 6.03 & 6.33 & 6.58 & 6.80 & 6.99 & 7.72 & 8.21 \\ 583 | 6 & 3.46 & 4.34 & 4.90 & 5.30 & 5.63 & 5.90 & 6.12 & 6.32 & 6.49 & 7.14 & 7.59 \\ 584 | 7 & 3.34 & 4.16 & 4.68 & 5.06 & 5.36 & 5.61 & 5.82 & 6.00 & 6.16 & 6.76 & 7.17 \\ 585 | 8 & 3.26 & 4.04 & 4.53 & 4.89 & 5.17 & 5.40 & 5.60 & 5.77 & 5.92 & 6.48 & 6.87 \\ 586 | 9 & 3.20 & 3.95 & 4.41 & 4.76 & 5.02 & 5.24 & 5.43 & 5.59 & 5.74 & 6.28 & 6.64 \\ 587 | 10 & 3.15 & 3.95 & 4.41 & 4.76 & 5.02 & 5.24 & 5.43 & 5.59 & 5.74 & 6.28 & 6.64 \\ 588 | 11 & 3.11 & 3.82 & 4.26 & 4.57 & 4.82 & 5.03 & 5.20 & 5.35 & 5.49 & 5.98 & 6.33 \\ 589 | 12 & 3.08 & 3.77 & 4.20 & 4.51 & 4.75 & 4.95 & 5.12 & 5.27 & 5.39 & 5.88 & 6.21 \\ 590 | 13 & 3.06 & 3.73 & 4.15 & 4.45 & 4.69 & 4.88 & 5.05 & 5.19 & 5.32 & 5.79 & 6.11 \\ 591 | 14 & 3.03 & 3.70 & 4.11 & 4.41 & 4.64 & 4.83 & 4.99 & 5.13 & 5.25 & 5.71 & 6.03 \\ 592 | 15 & 3.01 & 3.67 & 4.08 & 4.37 & 4.59 & 4.78 & 4.94 & 5.08 & 5.20 & 5.65 & 5.96 \\ 593 | 16 & 3.00 & 3.65 & 4.05 & 4.33 & 4.56 & 4.74 & 4.90 & 5.03 & 5.15 & 5.59 & 5.90 \\ 594 | 17 & 2.98 & 3.63 & 4.02 & 4.30 & 4.52 & 4.70 & 4.86 & 4.99 & 5.11 & 5.54 & 5.84 \\ 595 | 18 & 2.97 & 3.61 & 4.00 & 4.28 & 4.49 & 4.67 & 4.82 & 4.96 & 5.07 & 5.50 & 5.79 \\ 596 | 19 & 2.96 & 3.59 & 3.98 & 4.25 & 4.47 & 4.65 & 4.79 & 4.92 & 5.04 & 5.46 & 5.71 \\ 597 | 20 & 2.95 & 3.58 & 3.96 & 4.23 & 4.45 & 4.62 & 4.77 & 4.90 & 5.01 & 5.43 & 5.71 \\ 598 | 24 & 2.92 & 3.53 & 3.90 & 4.17 & 4.37 & 4.54 & 4.68 & 4.81 & 4.92 & 5.32 & 5.59 \\ 599 | 30 & 2.89 & 3.49 & 3.85 & 4.10 & 4.30 & 4.46 & 4.60 & 4.72 & 4.82 & 5.21 & 5.47 \\ 600 | 40 & 2.86 & 3.44 & 3.79 & 4.04 & 4.23 & 4.39 & 4.52 & 4.83 & 4.73 & 5.11 & 5.36 \\ 601 | 60 & 2.83 & 3.40 & 3.74 & 3.98 & 4.16 & 4.31 & 4.44 & 4.55 & 4.65 & 5.00 & 5.24 \\ 602 | 120 & 2.80 & 2.93 & 3.28 & 3.52 & 3.71 & 3.86 & 3.99 & 4.10 & 4.19 & 4.54 & 4.78 \\ 603 | +\infty & 2.77 & 3.31 & 3.63 & 3.86 & 4.03 & 4.17 & 4.29 & 4.39 & 4.47 & 4.80 & 5.01 \\ 604 | \bottomrule 605 | \end{tabularx} 606 | 607 | \newpage 608 | ($\alpha=0.01$) 609 | \begin{tabularx}{\linewidth}{Y*{11}{|Y}} 610 | \toprule 611 | \multicolumn{1}{l|}{\diagbox[width=1.8cm]{$f$}{$r$}} & 2 & 3 & 4 & 5 & 6 & 7 & 8 & 9 & 10 & 15 & 20 \\ 612 | \midrule 613 | 1 & 90.0 & 135 & 164 & 186 & 202 & 216 & 227 & 237 & 246 & 277 & 298 \\ 614 | 2 & 14.0 & 19.0 & 22.3 & 24.7 & 26.6 & 28.2 & 29.5 & 30.7 & 31.7 & 35.4 & 27.9 \\ 615 | 3 & 8.26 & 10.6 & 12.2 & 13.3 & 14.2 & 15.0 & 15.6 & 1.62 & 16.7 & 18.5 & 19.8 \\ 616 | 4 & 6.51 & 8.12 & 9.17 & 9.96 & 10.6 & 11.1 & 11.5 & 11.9 & 12.3 & 13.5 & 14.4 \\ 617 | 5 & 5.70 & 6.98 & 7.80 & 8.42 & 8.91 & 9.32 & 9.67 & 9.97 & 10.2 & 11.2 & 11.9 \\ 618 | 6 & 5.24 & 6.33 & 7.03 & 7.56 & 7.97 & 8.32 & 8.61 & 8.87 & 9.10 & 9.95 & 10.5 \\ 619 | 7 & 5.95 & 5.92 & 6.54 & 7.01 & 7.37 & 7.68 & 7.94 & 8.17 & 8.37 & 9.12 & 9.65 \\ 620 | 8 & 4.75 & 5.64 & 6.20 & 6.62 & 6.96 & 7.24 & 7.47 & 7.68 & 7.86 & 8.55 & 9.03 \\ 621 | 9 & 4.60 & 5.43 & 5.96 & 6.35 & 6.66 & 6.91 & 7.13 & 7.33 & 7.49 & 8.13 & 8.57 \\ 622 | 10 & 4.48 & 5.27 & 5.77 & 6.14 & 6.43 & 6.67 & 6.87 & 7.05 & 7.21 & 7.81 & 8.22 \\ 623 | 11 & 4.39 & 5.14 & 5.62 & 5.97 & 6.25 & 6.48 & 6.67 & 6.84 & 6.99 & 7.56 & 7.95 \\ 624 | 12 & 4.32 & 5.04 & 5.50 & 5.84 & 6.10 & 6.32 & 6.51 & 6.67 & 6.81 & 7.36 & 7.73 \\ 625 | 13 & 4.26 & 4.96 & 5.40 & 5.73 & 5.98 & 6.19 & 6.37 & 6.53 & 6.67 & 7.19 & 7.55 \\ 626 | 14 & 4.21 & 4.89 & 5.32 & 5.63 & 5.88 & 6.08 & 6.26 & 6.41 & 6.54 & 7.05 & 7.39 \\ 627 | 15 & 4.17 & 4.84 & 5.25 & 5.56 & 5.80 & 5.99 & 6.16 & 6.31 & 6.44 & 6.93 & 7.26 \\ 628 | 16 & 4.13 & 4.79 & 5.19 & 5.49 & 5.72 & 5.92 & 6.08 & 6.22 & 6.35 & 6.82 & 7.15 \\ 629 | 17 & 4.10 & 4.74 & 5.14 & 5.43 & 5.66 & 5.85 & 6.01 & 6.15 & 6.27 & 6.73 & 7.05 \\ 630 | 18 & 4.07 & 4.70 & 5.09 & 5.38 & 5.60 & 4.79 & 5.94 & 6.08 & 6.20 & 6.65 & 6.97 \\ 631 | 19 & 4.05 & 4.67 & 5.05 & 5.33 & 5.55 & 5.73 & 5.89 & 6.02 & 6.14 & 6.58 & 6.89 \\ 632 | 20 & 4.02 & 4.64 & 5.02 & 5.29 & 5.51 & 5.69 & 5.84 & 5.97 & 6.09 & 6.52 & 6.82 \\ 633 | 24 & 3.96 & 4.54 & 4.91 & 5.17 & 5.37 & 5.54 & 5.69 & 5.81 & 5.92 & 6.33 & 6.61 \\ 634 | 30 & 3.89 & 4.45 & 4.80 & 5.05 & 5.24 & 5.40 & 5.54 & 5.65 & 5.76 & 6.14 & 6.41 \\ 635 | 40 & 3.82 & 4.37 & 4.70 & 4.93 & 5.11 & 5.26 & 5.39 & 5.50 & 5.60 & 5.96 & 6.21 \\ 636 | 60 & 3.70 & 4.20 & 4.50 & 4.71 & 4.87 & 5.01 & 5.12 & 5.21 & 5.30 & 5.61 & 5.65 \\ 637 | +\infty & 3.64 & 4.12 & 4.40 & 4.60 & 4.76 & 3.88 & 4.99 & 5.08 & 5.16 & 5.45 & 5.65 \\ 638 | \bottomrule 639 | \end{tabularx} 640 | \newpage 641 | \captionof{table}{检验相关系数的临界值表}\label{tab9} 642 | \begin{tabularx}{\linewidth}{Y|Y|Y||Y|Y|Y||Y|Y|Y} 643 | \toprule 644 | \multicolumn{1}{l|}{\diagbox[width=1.8cm]{$n-2$}{$\alpha$}} & 5\% & 1\% & 645 | \multicolumn{1}{l|}{\diagbox[width=1.8cm]{$n-2$}{$\alpha$}} 646 | & 5\% & 1\% & 647 | \multicolumn{1}{l|}{\diagbox[width=1.8cm]{$n-2$}{$\alpha$}} 648 | & 5\% & 1\% \\ 649 | \midrule 650 | 1 & 0.997 & 1.000 & 16 & 0.468 & 0.590 & 35 & 0.325 & 0.418 \\ 651 | 2 & 0.950 & 0.990 & 17 & 0.456 & 0.575 & 40 & 0.304 & 0.393 \\ 652 | 3 & 0.878 & 0.959 & 18 & 0.444 & 0.561 & 45 & 0.288 & 0.372 \\ 653 | 4 & 0.811 & 0.917 & 19 & 0.433 & 0.549 & 50 & 0.273 & 0.354 \\ 654 | 5 & 0.754 & 0.874 & 20 & 0.423 & 0.537 & 60 & 0.250 & 0.325 \\ 655 | 6 & 0.707 & 0.834 & 21 & 0.413 & 0.526 & 70 & 0.232 & 0.302 \\ 656 | 7 & 0.666 & 0.798 & 22 & 0.404 & 0.515 & 80 & 0.217 & 0.283 \\ 657 | 8 & 0.632 & 0.765 & 23 & 0.396 & 0.505 & 90 & 0.205 & 0.267 \\ 658 | 9 & 0.602 & 0.735 & 24 & 0.388 & 0.496 & 100 & 0.195 & 0.254 \\ 659 | 10 & 0.576 & 0.708 & 25 & 0.381 & 0.487 & 125 & 0.174 & 0.228 \\ 660 | 11 & 0.553 & 0.684 & 26 & 0.374 & 0.478 & 150 & 0.159 & 0.207 \\ 661 | 12 &0.532 & 0.661 & 27 & 0.367 & 0.470 & 200 & 0.138 & 0.181 \\ 662 | 13 & 0.514 & 0.641 & 28 & 0.361 & 0.463 & 300 & 0.113 & 0.143 \\ 663 | 14 & 0.497 & 0.623 & 29 & 0.355 & 0.456 & 400 & 0.095 & 0.123 \\ 664 | 15 & 0.482 & 0.606 & 30 & 0.349 & 0.449 & 1000 & 0.062 & 0.081 \\ 665 | \bottomrule 666 | \end{tabularx} 667 | 668 | \newpage 669 | \captionof{table}{统计量$H$的分位数$H_{1-\alpha}(r,f)$表}\label{tab10} 670 | ($\alpha=0.05$) 671 | \begin{tabularx}{\linewidth}{Y|*{11}{Y}} 672 | \toprule 673 | \multicolumn{1}{l|}{\diagbox[width=2.4cm]{$f$}{$r$}} 674 | & 2 & 3 & 4 & 5 & 6 & 7 & 8 & 9 & 10 & 11 & 12 \\ 675 | \midrule 676 | 2 & 39.0 & 87.5 & 142 & 202 & 266 & 333 & 403 & 475 & 550 & 526 & 704 \\ 677 | 3 & 15.4 & 27.8 & 39.2 & 50.7 & 62.0 & 72.9 & 83.5 & 93.9 & 104 & 114 & 124 \\ 678 | 4 & 9.60 & 15.5 & 20.6 & 25.2 & 29.5 & 33.6 & 37.5 & 41.1 & 44.6 & 48.0 & 51.4 \\ 679 | 5 & 7.15 & 10.8 & 13.7 & 16.3 & 18.7 & 20.8 & 22.9 & 24.7 & 26.5 & 28.2 & 29.9 \\ 680 | 6 & 5.82 & 8.38 & 10.4 & 12.1 & 13.7 & 15.0 & 16.3 & 17.5 & 18.6 & 19.7 & 20.7 \\ 681 | 7 & 4.99 & 6.94 & 8.44 & 9.70 & 10.8 & 11.8 & 12.7 & 1.35 & 14.3 & 15.1 & 15.8 \\ 682 | 8 & 4.43 & 6.00 & 7.18 & 8.12 & 9.03 & 9.78 & 10.5 & 11.1 & 11.7 & 12.2 & 12.7 \\ 683 | 9 & 4.03 & 5.34 & 6.31 & 7.11 & 7.80 & 8.41 & 8.95 & 9.45 & 9.91 & 10.3 & 10.7 \\ 684 | 10 & 3.72 & 4.85 & 5.67 & 6.34 & 6.92 & 7.42 & 7.87 & 8.28 & 8.66 & 9.01 & 9.34 \\ 685 | 12 & 3.28 & 4.16 & 4.79 & 5.30 & 5.72 & 6.09 & 6.42 & 6.72 & 7.00 & 7.25 & 7.48 \\ 686 | 15 & 2.86 & 3.54 & 4.01 & 4.37 & 4.68 & 4.95 & 5.19 & 5.40 & 5.59 & 5.77 & 5.93 \\ 687 | 20 & 2.46 & 2.95 & 3.29 & 3.54 & 3.76 & 3.94 & 4.10 & 4.24 & 4.37 & 4.49 & 4.59 \\ 688 | 30 & 2.07 & 2.40 & 2.61 & 2.78 & 2.91 & 3.02 & 3.12 & 3.21 & 3.29 & 3.36 & 3.39 \\ 689 | 60 & 1.67 & 1.85 & 1.96 & 2.04 & 2.11 & 2.17 & 2.22 & 2.26 & 2.30 & 2.33 & 2.36 \\ 690 | +\infty & 1.00 & 1.00 & 1.00 & 1.00 & 1.00 & 1.00 & 1.00 & 1.00 & 1.00 & 1.00 & 1.00 \\ 691 | \bottomrule 692 | \end{tabularx} 693 | ($\alpha=0.01$) 694 | \begin{tabularx}{\linewidth}{Y|*{11}{Y}} 695 | \toprule 696 | \multicolumn{1}{l|}{\diagbox[width=2.4cm]{$f$}{$r$}} 697 | & 2 & 3 & 4 & 5 & 6 & 7 & 8 & 9 & 10 & 11 & 12 \\ 698 | \midrule 699 | 2 & 199 & 448 & 729 & 1036 & 1362 & 1705 & 2063 & 2432 & 2813 & 3204 & 3605 \\ 700 | 3 & 47.5 & 85 & 120 & 151 & 184 & 216 & 249 & 281 & 310 & 337 & 361 \\ 701 | 4 & 23.2 & 37 & 49 & 59 & 69 & 79 & 89 & 97 & 106 & 113 & 120 \\ 702 | 5 & 14.9 & 22 & 28 & 33 & 38 & 42 & 46 & 50 & 54 & 57 & 60 \\ 703 | 6 & 11.1 & 15.5 & 19.1 & 22 & 25 & 27 & 30 & 32 & 34 & 36 & 37 \\ 704 | 7 & 8.89 & 12.1 & 14.5 & 18.4 & 20 & 22 & 23 & 24 & 26 & 27 \\ 705 | 87.50 & 9.9 & 11.7 & 13.2 & 14.5 & 15.8 & 16.9 & 17.9 & 18.9 & 19.8 & 21 \\ 706 | 9 & 6.54 & 8.5 & 9.9 & 11.1 & 12.1 & 13.1 & 13.9 & 14.7 & 15.3 & 16.0 & 16.6 \\ 707 | 10 & 5.85 & 7.4 & 8.6 & 9.6 & 10.4 & 11.1 & 11.8 & 12.4 & 12.9 & 13.4 & 13.9 \\ 708 | 12 & 4.91 & 6.1 & 6.9 & 7.6 & 8.2 & 8.7 & 9.1 & 9.5 & 9.9 & 10.2 & 10.6 \\ 709 | 15 & 4.07 & 4.9 & 5.5 & 6.0 & 6.4 & 6.7 & 7.1 & 7.3 & 7.5 & 7.8 & 8.0 \\ 710 | 20 & 3.32 & 3.8 & 4.3 & 4.6 & 4.9 & 5.1 & 5.3 & 5.5 & 5.6 & 5.8 & 5.9 \\ 711 | 30 & 2.63 & 3.0 & 3.3 & 3.4 & 3.6 & 3.7 & 3.8 & 3.9 & 4.0 & 4.1 & 4.2 \\ 712 | 60 & 1.96 & 2.2 & 2.3 & 2.4 & 2.4 & 2.5 & 2.5 & 2.6 & 2.6 & 2.7 & 2.7 \\ 713 | +\infty & 1.00 & 1.0 & 1.0 & 1.0 & 1.0 & 1.0 & 1.0 & 1.0 & 1.0 & 1.0 \\ 714 | \bottomrule 715 | \end{tabularx} 716 | 717 | -------------------------------------------------------------------------------- /chapter5.tex: -------------------------------------------------------------------------------- 1 | % !TeX program = XeLaTeX 2 | % !TeX root = main.tex 3 | % Edit by:xiangyu 4 | \chapter{统计量及其分布\label{cha:5}} 5 | 前四章的研究属于概率论的范畴. 我们已经看到, 随机变量及其概率分布全面地描述了随机现象的通解规律性.在概率论的许多问题中, 概率分布通常被假定为已知的, 而一切计算及推理均基于这个已知的分布进行, 在实际问题中, 情况往往并非如此, 看一个例子. 6 | \begin{example}\label{exam5.0.1} 7 | 某公司要采购一批产品, 每件产品不是合格品就是不合格品, 但该产品总有一个不合格品率$p$.由此, 若从该批产品中随机抽取一件, 用$X$表示这一件产品的不合格数, 不难看出$X$服从一个二点分布$b(1,p)$,但分布中的参数$p$却是不知道的.显然, $p$的大小决定了该批产品的质量, 它直接影响采购行为的经济效益.因此, 人们会对$p$提出一些问题, 比如, 8 | \begin{itemize} 9 | \item $p$的大小如何; 10 | \item $p$大概落在什么范围内; 11 | \item 能否认为$p$满足设定要求(如$p\leq0.05$). 12 | \end{itemize} 13 | \end{example} 14 | 诸如例~\ref{exam5.0.1} 研究的问题属于数理统计的范畴.接下来我们从统计中最基本的概念——总体和样本开始介绍统计学内容. 15 | \section{总体与样本\label{sec:5.1}} 16 | \subsection{总体与个体\label{ssec:5.1.1}} 17 | 在一个统计问题中, 我们把研究对象的全体称为 \textbf{总体}\index{Z!总体}, 构成总体的每个成员称为 \textbf{个体}\index{G!个体}.对多数实际问题, 总体中的个体是一些实在的人或物.比如, 我们要研究某大学的学生身高情况, 则该大学的全体学生构成问题的总体, 而每一个学生即使一个个体.事实上, 每个学生都有许多特征:性别、年龄、身高、体重、名字、籍贯等等, 而在该问题中, 我们关心的只是该校学生的身高如何, 对其他的特征暂不予考虑.这样, 每个学生(个体)所具有的数量指标值——身高就是个体, 而将所有身高全体看成总体.这样一来, 若抛开实际背景, 总体就是一堆数, 这堆数中有大有小, 有的出现的机会多, 有的出现机会小, 因此用一个概率分布去描述和归纳总体是恰当的, 从这个意义看, \textbf{总体就是一个分布}, 而其数量指标就是服从这个分布的随机变量.以后说``从总体中抽样''与``从分布中抽样''是同一个意思. 18 | \begin{example}\label{exam:5.1.1} 19 | 考察某厂的产品质量, 将其产品只分为合格品与不合格品, 并以$0$记合格品, 以$1$记不合格品, 则 20 | \[\text{总体}=\{\text{该厂生产的全部合格品与不合格品}\}=\{\text{由}\;0\;\text{或}\;1\;\text{组成的一堆数}\}.\] 21 | 若以$p$表示这堆数中$1$的比例(不合格品率), 则该总体可由一个二点分布表示: 22 | \begin{center} 23 | \begin{tabularx}{0.4\textwidth}{Y|YY} 24 | X&0&1\\ 25 | \midrule 26 | P&1-p&p 27 | \end{tabularx} 28 | \end{center} 29 | 不同的$p$反映了总体间的差异. 譬如,两个生产同类产品的工厂的产品总体分布为 30 | 31 | \begin{minipage}{0.4\textwidth} 32 | \centering 33 | \begin{tabularx}{\textwidth}{Y|YY} 34 | X&0&1\\ 35 | \midrule 36 | P&0.983&0.017 37 | \end{tabularx} 38 | \end{minipage}\hspace{3\ccwd} 39 | \begin{minipage}{0.4\textwidth} 40 | \centering 41 | \begin{tabularx}{\textwidth}{Y|YY} 42 | X&0&1\\ 43 | \midrule 44 | P&0.915&0.085 45 | \end{tabularx} 46 | \end{minipage} 47 | 48 | 我们可以看到,第一个工厂的产品质量优于第二个工厂.实际中,分布中的不合格率是未知的,如何对之进行估计是统计学要研究的问题. 49 | \end{example} 50 | \begin{example}\label{5.1.2} 51 | 彩电的彩色浓度是彩电质量好坏的一个重要指标. 20世纪70年代在美国销售的SONY牌彩电有两个产地:美国和日本,两地的工厂是按统一设计方案和相同的生产线生产同一型号SONY彩电,连使用说明书和检验合格的标准也是一样的.其中关于彩色浓度X的标准是:目标值为$m$,公差为$5$,即当$X$在$[m-5,m+5]$内该彩电的热情高于购买美产SONY彩电,原因何在?这就要考察这两个总体有什么差别. 1979年4月17日日本《朝日新闻》刊登调查报告指出,日产SONY彩电的彩色浓度服从正态分布$N(m,(5/3)^2)$,而美产SONY彩电的彩色浓度服从$(m-5,m+5)$上的均匀分布,见图~\ref{fig:5.1.1}.这两个不同的分布代表了不同的总体,其均值相同(都为$m$),但方差不同.若彩色浓度与$m$的距离在$5/3$以内为\Rmnum{1}级品,在$5/3$到$10/3$之间为\Rmnum{2}级品,在$10/3$到$5$之间为\Rmnum{3}级品,其他为\Rmnum{4}级品.于是日产SONY彩电的\Rmnum{1}级品为美产SONY的两倍出头(见表~\ref{table5.1.1}),这就是美国消费者愿意购买日产SONY的主要原因. 52 | \end{example} 53 | \begin{figure}[!ht] 54 | \centering 55 | \begin{tikzpicture}[scale=1.2] 56 | \begin{scope}[semithick] 57 | \draw(-4,0)--(4,0); 58 | \foreach \x in{-3,...,3} 59 | \draw(\x,0)--(\x,0.1); 60 | \draw[dashed](-3,0)node[below]{$m-5$}--(-3,3.5)(3,0)node[below]{$m+5$}--(3,3.5); 61 | \end{scope} 62 | \draw[samples=100,domain=-4:4,thick]plot(\x,{4*(e^(-(\x)^2/4))+0.1}); 63 | \draw(0,0)node[below=1pt]{$m$}--(0,5); 64 | \foreach \x in {-4,...,4} 65 | \coordinate(a\x)at(\x,-0.4); 66 | \begin{scope}[semithick] 67 | \draw[decorate,decoration=brace](a-3)--node[below=1pt]{\Rmnum{4}}(a-4); 68 | \draw[decorate,decoration=brace](a-2)--node[below=1pt]{\Rmnum{3}}(a-3); 69 | \draw[decorate,decoration=brace](a-1)--node[below=1pt]{\Rmnum{2}}(a-2); 70 | \draw[decorate,decoration=brace](a1)--node[below=1pt]{\Rmnum{1}}(a-1); 71 | \draw[decorate,decoration=brace](a2)--node[below=1pt]{\Rmnum{2}}(a1); 72 | \draw[decorate,decoration=brace](a3)--node[below=1pt]{\Rmnum{3}}(a2); 73 | \draw[decorate,decoration=brace](a4)--node[below=1pt]{\Rmnum{4}}(a3); 74 | \draw(-3,1.4)[out=60,in=180]to(-2.5,1.8)--(2.5,1.8)[out=0,in=120]to(3,1.4); 75 | \node[inner sep=0pt,fill=white](a)at(-3,2.5){美产SONY}; 76 | \node[inner sep=0pt](b)at(-2.3,3.8){日产SONY}; 77 | \draw(a.south)--(-2.5,1.8)(b.east)--(-1,3.2); 78 | \node[inner sep=2pt](c)at(0.5,0.4){$\sigma$}; 79 | \draw(1,0)--(c)--(0,0); 80 | \end{scope} 81 | \end{tikzpicture} 82 | \caption{SONY彩电彩色浓度分布图}\label{fig:5.1.1} 83 | \end{figure} 84 | 85 | \begin{table}[!ht] 86 | \centering 87 | \caption{各等级彩电的比例(\%)}\label{table5.1.1} 88 | \begin{tabularx}{\textwidth}{Z|Z|Z|Z|Z} 89 | \toprule 90 | 等级&\Rmnum{1}&\Rmnum{2}&\Rmnum{3}&\Rmnum{4}\\ 91 | \midrule 92 | 美产&33.3&33.3&33.3&0\\ 93 | \midrule 94 | 日产&68.3&27.1&4.3&0.3\\ 95 | \bottomrule 96 | \end{tabularx} 97 | \end{table} 98 | 99 | 100 | 在有些问题中,我们对每一研究对象可能要观测两个甚至更多个指标,此时可用多维随机向量及其联合分布来描述总体.这种总体称为多维总体.譬如,我们要了解某校大学生的三个指标: 年龄、身高、月生活支出.则我们可用一个三维随机向量描述该总体.这是一个三维总体,它是多元分析所研究的对象.本书中主要研究一维总体,某些地方也会涉及二维总体. 101 | 102 | 总体还有有限总体和无限总体,本书将以无限总体作为主要研究对象. 103 | \subsection{样本\label{ssec:5.1.2}} 104 | 为了了解总体的分布,我们从总体中随机地抽取$n$个个体,记其指标值为$x_1,x_2,\dotsc,x_n$,则$x_1,x_2,\dotsc,x_n$称为总体的一个 \textbf{样本}\index{Y!样本}, $n$称为 \textbf{样本容量}\index{Y!样本容量},或简称为 \textbf{样本量}\index{Y!样本量},样本中的个体称为 \textbf{样品}\index{Y!样品}. 105 | 106 | 我们首先指出,样本具有二重性: 一方面,由于样本是从总体中随机抽取的,抽取前无法预知它们的数值,因此,样本是随机变量,用大写字母$X_1,X_2,\dotsc,X_n$表示;另一方面, 样本在抽取以后经观测就有确定的观测值,因此,样本又是一组数值.此时用小写字母$x_1,x_2,\dotsc,x_n$表示是恰当的.简单起见,无论是样本还是其观测值,本书中样本一般均用$x_1,x_2,\dotsc,x_n$表示,读者应能从上下文中加以区别. 107 | \begin{example}\label{exam5.1.3} 108 | 啤酒厂生产的瓶装啤酒规定净含量为640 \si{g}.现从某厂生产的啤酒中随机抽取10瓶测定其含量,得到如下结果: 109 | \begin{center} 110 | \begin{tabularx}{0.7\textwidth}{YYYYYYYYYYY} 111 | 641&635&640&637&642&638&645&643&639&640 112 | \end{tabularx} 113 | \end{center} 114 | 这是一个容量为10的样本的观测值,对应的总体为该厂生产的瓶装啤酒的净含量. 115 | \end{example} 116 | \begin{example}\label{exam:5.1.4} \textbf{(分组样本)} 117 | 我们考察某厂生产的某种电子元件的寿命,该厂生产的一级将要生产的所有元件是总体是总体(通常可以认为是无限总体),我们选了100只进行寿命试验,由于一些原因,我们不可能每时每刻对试验进行观察,而只能定期(比如每隔24 \si{h})进行观察,于是,对每个元件,我们只能观察到其寿命落在某个范围内,这就产生了表~\ref{table5.1.2} 所示的一组样本: 118 | \begin{table} 119 | \centering \caption{100只元件的寿命数据}\label{table5.1.2} 120 | \begin{tabularx}{\textwidth}{YY||YY||YY} 121 | \toprule 122 | \multicolumn{1}{c}{寿命范围}&\multicolumn{1}{c||}{元件数}& 123 | \multicolumn{1}{c}{寿命范围}&\multicolumn{1}{c||}{元件数}& 124 | \multicolumn{1}{c}{寿命范围}&\multicolumn{1}{c}{元件数}\\ 125 | \midrule 126 | (0,24]&4&(192,216]&6&(384,408]&4\\ 127 | (24,48]&8&(216,240]&3&(408,432]&4\\ 128 | (48,72]&6&(240,264]&3&(432,456]&1\\ 129 | (72,96]&5&(264,288]&5&(456,480]&2\\ 130 | (96,120]&3&(288,312]&5&(480,504]&2\\ 131 | (120,144]&4&(312,336]&3&(504,528]&3\\ 132 | (144,168]&5&(336,360]&5&(528,552]&1\\ 133 | (168,192]&4&(360,384]&1&>552&13\\ 134 | \bottomrule 135 | \end{tabularx} 136 | \end{table} 137 | 138 | 表~\ref{table5.1.2} 中的样本观测值没有具体的数值,只有一个范围,这样的样本称为分组样本\index{F!分组样本}.相应的,例~\ref{exam5.1.3} 中的10个啤酒净含量称为完全样本\index{W!完全样本}.分组样本与完全样本相比在信息上总有损失,这是分组样本的缺点.为了获得更多信息,应尽量设法获得完全样本,在不得已场合可使用分组样本(如上例).但在实际中,在样本量特别大时(如$n\geq100$),又常用分组样本来代替完全样本,这时需要对样本进行分组整理,它能简明扼要地表示样本,使人们能更好地认识总体,这是分组样本的优点. 139 | \end{example} 140 | 141 | 从总体中抽取样本可以有不同的抽法,为了能由样本对总体作出比较可靠的推断,就希望样本能很好的代表总体.这就需要对抽样方法提出一些要求,最常用的``简单随机样本"有如下两个要求: 142 | \begin{itemize} 143 | \item 样本具有 \textbf{随机性}\index{S!随机性},即要求总体中每一个个体都有同等机会会被选入样本,这便意味着每一样品$x_i$与总体$X$有相同的分布. 144 | \item 样本要有 \textbf{独立性}\index{D!独立性},即要求样本中每一样品的取值不影响其他样品的取值,这意味着$x_1,x_2,\dotsc,x_n$相互独立. 145 | \end{itemize} 146 | 147 | 用简单抽样方法得到的样本称为 \textbf{简单随机样本}\index{J!简单随机样本},也简称 \textbf{样本}\index{!样本}.除非特别指明,本书中的样本皆为简单随机样本.于是,样本$x_1,x_2,\dotsc,x_n$可以看成是相互独立的具有同一分布的随机变量,其共同分布即为总体分布. 148 | 149 | 设总体$X$具有分布函数$F(x),x_1,x_2,\dotsc,x_n$为取自该总体的容量为$n$的样本,则样本 \textbf{联合分布函数}\index{L!联合分布函数}为 150 | \[F(x_1,x_2,\dotsc,x_n)=\prod_{i=1}^nF(x_i).\] 151 | 对无限总体,随机性与独立性容易实现,困难在于排除有意或无意的认为干扰.对有限总体,只要总体所含个体数很大,特别是与样本量相比很大,则独立性也可基本得到满足. 152 | \begin{example}\label{exam:5.1.5} 153 | 设有一批产品共$N$个,需要进行抽样检验以了解其不合格品率$p$,现从中抽出$n$个逐一检查它们是否是不合格的.如果把合格品记为$0$,不合格品记为$1$,则总体为一个二点分布, 154 | \[P(X=1)=p,P(X=0)=1-p,\] 155 | 设想样本是一个一个抽出的,结果记为$x_1,x_2,\dotsc,x_n$.如果采取有放回抽样,则$x_1,x_2,\dotsc,x_n$为独立同分布,若采取不放回抽样,这是,第二次抽到不合格品的概率依赖于第一次抽到的是否是不合格品,如果第一次抽到不合格品,则 156 | \[P(x_2=1|x_1=0)=\frac{Np}{N-1}.\] 157 | 显然,如此得到的样本不是简单随机样本.但是,当$N$很大时, 我们可以看待上述两种情形的概率都近似等于$p$.所以当$N$很大,而$n$不大(一个经验法则是$n/N\leq0.1$)时可以把该样本近似地看成简单随机样本. 158 | \end{example} 159 | 160 | \begin{xiti} 161 | \item 某地电视台想了解某电视栏目(如:每日九点至九点半的体育节目)在该地区的收视率情况,于是委托一家市场咨询公司进行一次电话访查. 162 | \begin{enumerate} 163 | \item 该项研究的总体是什么? 164 | \item 该项研究的样本是什么? 165 | \end{enumerate} 166 | \item 为了了解统计学专业本科毕业生的就业情况,我们调查了某地区30名2000年毕业的统计学专业本科生实习期满后的月薪情况. 167 | \begin{enumerate} 168 | \item 什么是总体? 169 | \item 什么是样本? 170 | \item 样本量是什么? 171 | \end{enumerate} 172 | \item 设某厂大量生产某种产品,其产品不合格率$p$未知,每$m$件产品包装为一盒.为了检查产品的质量,任意抽取$n$盒,查其中的不合格品数,试说明什么是总体,什么是样本,并指出样本的分布. 173 | \item 假设一位运动员在完全相同的条件下重复进行$n$次打靶,试给出总体和样本的统计描述. 174 | \item 某厂生产的电容器的使用寿命服从指数分布,为了解其平均寿命,从中抽出$n$个产品测其实际使用寿命,试说明什么是总体,什么是样本,并指出样本的分布. 175 | \item 美国某高校根据毕业生返校情况记录,宣布该校毕业生的年平均工资为5万美元,你对此有何平均? 176 | \end{xiti} 177 | \section{样本数据的整理与显示\label{sec:5.2}} 178 | \subsection{经验分布函数\label{ssec:5.2.1}} 179 | 设$x_1,x_2,\dotsc,x_n$是取自总体分布函数为$F(x)$的样本,若将样本观测值由小到大进行排列,为$x_{(1)},x_{(2)},\dotsc,x_{(n)}$,则$x_ {(1)},x_{(2)},\dotsc,x_{(n)}$称为有序样本\index{Y!有序样本},用有序样本定义如下函数 180 | \begin{equation}\label{eq:5.2.1} 181 | F_n(x)=\begin{cases} 182 | 0,&\text{当}xx_{(n)}, 185 | \end{cases} 186 | \end{equation} 187 | 则$F_n(x)$是一非减右连续函数,且满足 188 | \[F_n(-\infty)=0\text{和}F_n(+\infty)=1.\] 189 | 由此可见, $F_n(x)$是一个分布函数,并称$F_n(x)$为 \textbf{经验分布函数}\index{J!经验分布函数}. 190 | \begin{example}\label{exam:5.2.1} 191 | 某食品厂生产听装饮料,现从生产线上随机抽取5听饮料,称得其净重为(单位:\si{g}) 192 | \[351\quad347\quad355\quad344\quad351\] 193 | 这是一个容量为5的样本,经排序可得有序样本: 194 | \[x_{(1)}=344,\,x_{(2)}=347,\,x_{(3)}=351,\,x_{(4)}=351,\,x_{(5)}=351,\] 195 | 其经验分布函数为 196 | \[F_n(x)=\begin{cases} 197 | 0,&x<344,\\ 198 | 0.2,&344\leq x<347,\\ 199 | 0.4,&347\leq x<351,\\ 200 | 0.8,&351\leq x<355,\\ 201 | 1,&x\geq355. 202 | \end{cases}\] 203 | \begin{figure}[!ht] 204 | \centering 205 | \begin{tikzpicture}[fill=white,draw=black,scale=0.8] 206 | \begin{scope}[semithick,>=Stealth] 207 | \draw[decorate,decoration={snake,segment length=1mm,amplitude=0.5mm}] 208 | (0,0)node[below left]{$O$}--(0.5,0); 209 | \draw[->](-0.5,0)--(0,0)--(0,6)node[left]{$F_n(x)$}; 210 | \draw[->](0.5,0)--(8,0)node[below]{$x$}; 211 | \end{scope} 212 | \foreach \x in{1,...,5}\draw(0,\x)--(0.1,\x); 213 | \node[left]at(0,1){$0.2$};\node[left]at(0,2){$0.4$};\node[left]at(0,3){$0.6$}; 214 | \node[left]at(0,4){$0.8$};\node[left]at(0,5){$1.0$}; 215 | \node[below](a)at(1,0){$344$};\node[below](b)at(2.5,0){$347$}; 216 | \node[below](c)at(4.5,0){$351$};\node[below](d)at(6.5,0){$355$}; 217 | \draw(b)--(2.5,0.1)(c)--(4.5,0.1)(d)--(6.5,0.1); 218 | \draw[ thick](0.5,0)--(1,0)(1,1)--(2.5,1)(2.5,2)--(4.5,2)(4.5,4)--(6.5,4)(6.5,5)--(8,5); 219 | \filldraw(1,0)circle(2pt)(2.5,1)circle(2pt)(4.5,2)circle(2pt)(6.5,4)circle(2pt); 220 | \end{tikzpicture} 221 | \caption{经验分布函数}\label{fig:5.2.1} 222 | \end{figure} 223 | \end{example} 224 | 225 | 对每一固定的$x,F_n(x)$是样本中事件``$x_i\leq x$"发生的频率.当$n$固定时, $F_n(x)$是样本的函数,它是一个随机变量,由伯努利大数定律:只要$n$相当大, $F_n(x)$依概率收敛于$F(x)$.更深刻的结果也是存在的,这就是格里纹科定理,下面我们不加证明地加以介绍. 226 | \begin{theorem}{格里纹科定理}{5.2.1} 227 | 设$x_1,x_2,\dotsc,x_n$是取自总体分布函数为$F(x)$的样本, $F_n(x)$是其经验分布函数,当$n\to\infty$时,有 228 | \[P\left\{\sup_{-\infty=Stealth,yscale=0.5] 283 | \draw[decorate,decoration={snake,segment length=1mm,amplitude=0.5mm}] 284 | (0,0)node[below left]{$O$}--(0.4,0); 285 | \draw(0,0)--(-0.5,0);\draw[->](0,-0.5)--(0,9)node[right]{频数}; 286 | \draw[->](0.4,0)--(5,0)node[below]{$x$}; 287 | \node[below]at(0.7,0){147};\node[below]at(1.4,0){157};\node[below]at(2.1,0){167}; 288 | \node[below]at(2.8,0){177};\node[below]at(3.5,0){187};\node[below]at(4.2,0){197}; 289 | \foreach\x in{1,...,8}\draw(0,\x)node[left]{$\x$}--(0.07,\x); 290 | \draw[semithick](0.7,0)--(0.7,4)--(1.4,4)(1.4,0)--(1.4,8)--(2.1,8)--(2.1,0) 291 | (2.1,5)--(2.8,5)--(2.8,0)--(3.5,0)--(3.5,2)--(2.8,2)(3.5,1)--(4.2,1)--(4.2,0) 292 | (0.7,0)--(4.2,0); 293 | \end{tikzpicture} 294 | \caption{例~\ref{exam:5.2.2} 的频数直方图}\label{fig:5.2.2} 295 | \end{minipage}% 296 | \begin{minipage}[b]{0.5\linewidth} 297 | \centering 298 | \begin{tabular}{r|l} 299 | 6&47\\ 300 | 7&024669\\ 301 | 8&01223568\\ 302 | 9&112333566779\\ 303 | 10&002466788\\ 304 | 11&2246899\\ 305 | 12&23568\\ 306 | 13&3 307 | \end{tabular}\vspace{0.2cm} 308 | \caption{测试成绩的茎叶图}\label{fig:5.2.3} 309 | \end{minipage} 310 | \end{figure} 311 | 312 | 313 | 314 | 315 | \subsubsection{茎叶图} 316 | 除直方图外,另一种常用的方法是茎叶图\index{J!茎叶图},下面我们从一个例子谈起. 317 | \begin{example}\label{exam:5.2.3} 318 | 某公司对应聘人员进行能力测试,测试成绩总分为150分.下面是50位应聘人员的测试成绩(已经过排序): 319 | \begin{align*} 320 | 64&&67&&70&&72&&74&&76&&76&&79&&80&&81&\\ 321 | 82&&82&&83&&85&&86&&88&&91&&91&&92&&93&\\ 322 | 93&&93&&95&&95&&95&&97&&97&&99&&100&&100&\\ 323 | 102&&104&&106&&106&&107&&108&&108&&112&&112&&114&\\ 324 | 116&&118&&119&&119&&122&&123&&125&&126&&128&&133& 325 | \end{align*} 326 | 我们用这批数据给出一个茎叶图.把每一个数值分为两部分,前面一部分(百位和十位)称为 \textbf{茎},后面部分(个位)称为 \textbf{叶},如 327 | \begin{center} 328 | \begin{tabularx}{0.7\textwidth}{ZZZZZZZ} 329 | 数值& &分开& &茎&和&叶\\ 330 | 112&$\to$&11 | 2&$\to$&11&和&2 331 | \end{tabularx} 332 | \end{center} 333 | 然后画一条竖线, \textbf{在竖线的左侧写上茎,右侧写上叶,就形成了茎叶图}.应聘人员测试成绩的茎叶图见图~\ref{fig:5.2.3}. 334 | 335 | 茎叶图的外观很像横放的直方图,但茎叶图中叶增加了具体的数值,使我们对数据的具体取值一目了然,从面保留了数据中全部的信息. 336 | 337 | 在要比较两组样本时,可画出它们的 \textbf{背靠背的茎叶图}\index{B!背靠背的茎叶图},这是一个简单直观而有效的对比方法. 338 | \end{example} 339 | \begin{example}\label{exam:5.2.4} 340 | 下面的数据是某厂两个车间某天各40名员工生产的产品数量(表~\ref{table5.2.2}).为对其进行比较,我们将这些数据放到一个背靠背茎叶图上(图~\ref{fig:5.2.4}). 341 | \end{example} 342 | \begin{table}[!ht] 343 | \centering 344 | \caption{某厂两个车间40名员工的产量}\label{table5.2.2} 345 | \begin{tabularx}{\textwidth}{YYYYYY|YYYYYY} 346 | \toprule 347 | \multicolumn{6}{c|}{甲车间}&\multicolumn{6}{c}{乙车间}\\ 348 | \midrule 349 | 50&52&56&61&61&62&56&66&67&67&68&68\\ 350 | 64&65&65&65&67&67&72&72&74&75&75&75\\ 351 | 67&68&71&72&74&74&75&76&76&76&76&78\\ 352 | 76&76&77&77&78&82&78&79&80&81&81&83\\ 353 | 83&85&87&88&90&91&83&83&84&84&84&86\\ 354 | 86&92&86&93&93&97&86&87&87&88&92&92\\ 355 | 100&100&103&105&&&93&95&98&107&&\\ 356 | \bottomrule 357 | \end{tabularx} 358 | \end{table} 359 | \begin{figure}[!ht] 360 | \centering 361 | \begin{tabularx}{0.6\textwidth}{R|c|L} 362 | 甲车间\hfill620&5&6\hfill 乙车间\\ 363 | 87775554211&6&67788\\ 364 | 877664421&7&2245555666889\\ 365 | 8766532&8&01133344466778\\ 366 | 73210&9&22358\\ 367 | 5300&10&7 368 | \end{tabularx} 369 | \caption{两车间产量的背靠背茎叶图}\label{fig:5.2.4} 370 | \end{figure} 371 | 在图~\ref{fig:5.2.4} 中,茎在中间,左边表示甲车间的数据,右边表示乙车间的数据.从茎叶图可以看出,甲车间员工的产量偏于上方,而乙车间员工的产量大多位于中间,乙车间的平均产量要高于甲车间,乙车间各员工的产量比较集中,而甲车间员工的产量则比较分散. 372 | \begin{xiti} 373 | \item 以下是某工厂通过抽样调查得到的10名工人一周内生产的产品数 374 | \[149\quad156\quad160\quad138\quad149\quad153\quad153\quad169\quad156\quad156\] 375 | 试由这批数据构造经验分布函数并作图. 376 | \item 下表是经过整理后得到的分组样本 377 | \begin{table}[!ht] 378 | \centering 379 | \begin{tabularx}{0.9\textwidth}{Z|ZZZZZ} 380 | 组序&1&2&3&4&5\\ 381 | \midrule 382 | 分组区间&(38,48]&(48,58]&(58,68]&(68,78]&(78,88]\\ 383 | 频数&3&4&8&3&2 384 | \end{tabularx} 385 | \end{table} 386 | 试写出此分组样本的经验分布函数. 387 | \item 假若某地区30名2000年某专业毕业生实习期满后的月薪数据如下: 388 | \begin{align*} 389 | 909&&1086&&1120&&999&&1320&&1091&\\ 390 | 1071&&1081&&1130&&1336&&967&&1572&\\ 391 | 825&&914&&992&&1232&&950&&775&\\ 392 | 1203&&1025&&1096&&808&&1224&&1044&\\ 393 | 871&&1164&&971&&950&&866&&738& 394 | \end{align*} 395 | \begin{enumerate} 396 | \item 构造该批数据的频率分布表(分6组); 397 | \item 画出直方图. 398 | \end{enumerate} 399 | \item 某公司对其250名职工上班所需时间进行了调查,下面是其不完整的额率分布表 400 | \begin{center} 401 | \begin{tabularx}{0.8\textwidth}{YY} 402 | \toprule 403 | \multicolumn{1}{Z}{所需时间/\si{min}}&\multicolumn{1}{Z}{频率}\\ 404 | \midrule 405 | 0\sim10&0.10\\ 406 | 10\sim20&0.24\\ 407 | 20\sim30&\\ 408 | 30\sim40&0.18\\ 409 | 40\sim50&0.14\\ 410 | \bottomrule 411 | \end{tabularx} 412 | \end{center} 413 | \begin{enumerate} 414 | \item 试将频率分布表补充完整. 415 | \item 该公司上班所需时间在半小时以内有多少人? 416 | \end{enumerate} 417 | \item 40种刊物的月发行量如下: (单位:百册) 418 | \begin{align*} 419 | 5954&&5022&&14667&&6582&&6870&&1840&&2662&&4508&\\ 420 | 1208&&3852&&618&&3008&&1268&&1978&&7963&&2048&\\ 421 | 3077&&993&&353&&14263&&1714&&11127&&6926&&2047&\\ 422 | 714&&5923&&6006&&14267&&1697&&13876&&4001&&2280&\\ 423 | 1223&&12579&&13588&&7315&&4538&&13304&&1615&&8612& 424 | \end{align*} 425 | \begin{enumerate} 426 | \item 建立该批数据的频数分布表,取组距为1700百册. 427 | \item 画出直方图. 428 | \end{enumerate} 429 | \item 对下列数据构造茎叶图: 430 | \begin{align*} 431 | 472&&425&&447&&377&&341&&369&&412&&419&\\ 432 | 400&&382&&366&&425&&399&&398&&423&&384&\\ 433 | 418&&392&&372&&418&&374&&385&&439&&428&\\ 434 | 429&&428&&430&&413&&405&&381&&403&&479&\\ 435 | 381&&443&&441&&433&&419&&379&&386&&387& 436 | \end{align*} 437 | \item 根据调查,某集团公司的中层管理人员的年薪数据如下(单位:千元) 438 | \begin{align*} 439 | 40.6&&39.6&&43.8&&36.2&&40.8&\\ 440 | 38.6&&39.6&&40.0&&34.7&&41.7&\\ 441 | 44.9&&45.4&&37.0&&35.1&&36.7&\\ 442 | 37.1&&37.7&&39.2&&36.9&&44.5& 443 | \end{align*} 444 | 试画出茎叶图. 445 | \end{xiti} 446 | \section{统计量及其分布\label{sec:5.3}} 447 | \subsection{统计量与抽样分布\label{ssec:5.3.1}} 448 | 样本来自总体,样本的观测值中含有总体各方面的信息,但这些信息较为分散,有时显得杂乱无章,为将这些分散在样本中的有关总体的信息集中起来以反映总体的各种特征,需要对样本进行加工,表和图是一类加工形式,它是人们从中获得对总体的初步认识.当人们需要从样本获得对总体各种参数的认识时,最常用的加工方法是构造样本的函数,不同的函数反映总体的不同特征. 449 | \begin{definition}{统计量}{tongjiliang} 450 | 设$x_1,x_2,\dotsc,x_n$为取自某总体的样本,若样本函数$T=T(x_1,x_2,\dotsc,x_n)$中不含有任何未知参数,则称$T$为 \textbf{统计量}\index{T~统计量}.统计量的分布称为 \textbf{抽样分布}\index{C!抽样分布}. 451 | \end{definition} 452 | 按照这一定义,若$x_1,x_2,\dotsc,x_n$为样本,则$\sum_{i=1}^nx_i,\sum_{i=1}^nx_i^2$以及~\ref{ssec:5.2.1} 节中的$F_n(x)$都是统计量.而当$\mu,\sigma^2$未知时, $x_1-\mu,x_1/\sigma$等均不是统计量.必须指出的是: 尽管统计量不依赖于未知参数,但是它的分布一般是依赖于未知参数的. 453 | 454 | 下面几小节及~\ref{sec:5.4} 节我们介绍一些常见的统计量及其抽样分布. 455 | \subsection{样本均值及其抽样分布\label{ssec:5.3.2}} 456 | \begin{definition}{样本均值}{ybjz} 457 | 设$x_1,x_2,\dotsc,x_n$为取自某总体的样本,其算术平均值为 \textbf{样本均值}\index{Y!样本均值},一般用$\bar x$表示,即 458 | \begin{equation}\label{eq:5.3.1} 459 | \bar x=\frac{x_1+\dotsb+x_n}n=\frac1n\sum_{i=1}^nx_i. 460 | \end{equation} 461 | 在分组样本场合,样本均值的近似公式为 462 | \begin{equation}\label{eq:5.3.2} 463 | \bar x=\frac{x_1f_1+\dotsb+x_kf_k}n\quad\left(n=\sum_{i=1}^kf_i\right). 464 | \end{equation} 465 | 其中$k$为组数, $x_i$为第$i$组的组中值, $f_i$为第$i$组的频数. 466 | \end{definition} 467 | \begin{example}\label{exam:5.3.1} 468 | 某单位收集到20名青年人的某月的娱乐支出费用数据: 469 | \begin{align*} 470 | 79&&84&&84&&88&&92&&93&&94&&97&&98&&99&\\ 471 | 100&&101&&101&&102&&102&&108&&110&&113&&118&&125& 472 | \end{align*} 473 | 则该月这20名青年的平均娱乐支出为 474 | \[\bar x=\frac1{20}(79+84+\dotsb+125)=99.4.\] 475 | 将这20个数据分组可得到如表~\ref{table5.3.1}的频数频率分布: 476 | \end{example} 477 | \begin{table}[!ht] 478 | \centering 479 | \caption{~\ref{exam:5.3.1}的频数频率分布表}\label{table5.3.1} 480 | \begin{tabularx}{\textwidth}{ZZZZZ} 481 | \toprule 482 | 组序&分组区间&组中值&频数&频率/\%\\ 483 | \midrule 484 | 1&(77,87]&82&3&15\\ 485 | 2&(87,97]&92&5&25\\ 486 | 3&(97,107]&102&7&35\\ 487 | 4&(107,117]&112&3&15\\ 488 | 5&(117,127]&122&2&10\\ 489 | 合计&&&20&100\\ 490 | \bottomrule 491 | \end{tabularx} 492 | \end{table} 493 | 对表~\ref{table5.3.1} 的分组样本,使用公式~\eqref{eq:5.3.2} 进行计算可得 494 | \[\bar x=\frac1{20}(82\times3+92\times 5+\dotsb+122\times2)=100.\] 495 | 我们看到两种计算结果不同.事实上,由于~\eqref{eq:5.3.2} 式未用到真实的样本观测数据,因而给出的是近似结果. 496 | 497 | 关于样本均值,有如下几个性质. 498 | \begin{theorem}{}{5.3.1} 499 | 若把样本中的数据与样本均值之差称为偏差\index{P!偏差},则样本所有偏差之和为$0$, 即$\sum_{i=1}^n(x_i-\bar x)=0$. 500 | \end{theorem} 501 | \begin{proof} 502 | $\sum(x_i-\bar x)=\sum x_i-n\bar x=\sum x_i-n\cdot\big(\sum x_i\big)/n=0$. 503 | \end{proof} 504 | 505 | 从均值的计算公式看,它使用了所有的数据,而且每一个数据在计算公式中处于平等的地位.所有数据与样本中心的误差被互相抵消,从而样本的所有偏差之和必为零. 506 | \begin{theorem}{}{5.3.2} 507 | 数据观察值与均值的偏差平方和最小,即在形如$\sum(x_i-c)^2$的函数中, $\sum(x_i-\bar x)^2$最小,其中$c$为任意给定常数. 508 | \end{theorem} 509 | \begin{proof} 510 | 对任意给定的常数$c$, 511 | \begin{align*} 512 | {}&\sum(x_i-c)^2=\sum(x_i-\bar x+\bar x-c)^2\\ 513 | =&\sum(x_i-\bar x)^2+n(\bar x-c)^2+ 514 | 2\sum(x_i-\bar x)(\bar x-c)\\ 515 | =&\sum(x_i-\bar x)^2+n(\bar x-c)^2\geq\sum(x_i-\bar x)^2. 516 | \end{align*} 517 | 518 | 下面考虑样本均值的分布. 519 | \end{proof} 520 | \begin{example}\label{exam:5.3.2} 521 | 设有一个由20个数组成的总体,现从该总体抽取容量为5的样本.图~\ref{fig:5.3.1} 画出第一个样本的抽样过程,左侧是该总体,右侧是从总体中随机地抽出的样本,这里一共抽出4个样本,每个样本有5个观测值,我们计算了各个样本的样本均值.从例中可以看到,每一个样本的样本均值都有差别. 522 | \end{example} 523 | \begin{figure}[!ht] 524 | \centering 525 | \begin{tikzpicture}[yscale=0.7,xscale=0.8,inner sep=0.5pt] 526 | \begin{scope} 527 | \node(a)at(0,7){11};\node at(1,7){8}; 528 | \node at(0,6.3){12};\node at(1,6.3){13}; 529 | \node(b)at(0,5.6){12};\node at(1,5.6){9}; 530 | \node at(0,4.9){11};\node at(1,4.9){10}; 531 | \node at(0,4.2){9};\node(d)at(1,4.2){11}; 532 | \node at(0,3.5){10};\node at(1,3.5){8}; 533 | \node at(0,2.8){10};\node at(1,2.8){12}; 534 | \node at(0,2.1){11};\node (e)at(1,2.1){9}; 535 | \node at(0,1.4){8};\node at(1,1.4){11}; 536 | \node (c)at(0,0.7){10};\node at(1,0.7){13}; 537 | \end{scope} 538 | \begin{scope} 539 | \node at(2.5,0.9){样本均值}; 540 | \node at(4.1,0.9){9.8};\node at(5.6,0.9){10.2}; 541 | \node at(7.1,0.9){10.8};\node at(8.6,0.9){10.4}; 542 | \node(b1) at(4.1,1.9){8};\node(c1) at(4.1,2.9){10}; 543 | \node(e1) at(4.1,3.9){9};\node(d1) at(4.1,4.9){11}; 544 | \node(a1) at(4.1,5.9){11};\node at(4.1,6.9){样本1}; 545 | \node at(5.6,1.9){9};\node at(5.6,2.9){11}; 546 | \node at(5.6,3.9){10};\node at(5.6,4.9){13}; 547 | \node at(5.6,5.9){8};\node at(5.6,6.9){样本2}; 548 | \node at(7.1,1.9){9};\node at(7.1,2.9){10}; 549 | \node at(7.1,3.9){11};\node at(7.1,4.9){11}; 550 | \node at(7.1,5.9){13};\node at(7.1,6.9){样本3}; 551 | \node at(8.6,1.9){11};\node at(8.6,2.9){10}; 552 | \node at(8.6,3.9){10};\node at(8.6,4.9){9}; 553 | \node at(8.6,5.9){12};\node at(8.6,6.9){样本4}; 554 | \end{scope} 555 | \draw[thick](-0.2,7.3)--(9.2,7.3)(1.6,1.4)--(9.2,1.4)(1.6,6.4)--(9.2,6.4) 556 | (1.6,0.4)--(9.2,0.4); 557 | \foreach \x in{a,b,c,d,e}\draw[-Stealth](\x)--(\x1); 558 | \end{tikzpicture} 559 | \caption{4个样本的样本均值}\label{fig:5.3.1} 560 | \end{figure} 561 | 562 | 设想类似抽取样本5、样本6 \raisebox{0.3em}{\tikz\foreach \x in{0.1,0.2,...,0.6}\fill(\x,3)circle(0.7pt);} 每次都计算样本均值,他们之间的差异是由于抽样的随机性引起的.假如无限制地抽下去,这样我们可以得到大量的$\bar x$的值,图~\ref{fig:5.3.2} 就是用这样得到的500个的值所形成的直方图,它反映了$\bar x$的抽样分布. 563 | \begin{figure}[!ht] 564 | \centering 565 | \begin{tikzpicture}[yscale=0.34,xscale=0.6,>=Stealth,semithick] 566 | \draw[decorate,decoration={snake,segment length=1mm,amplitude=0.5mm}] 567 | (0,0)node[below left]{$O$}--(1,0); 568 | \draw[->](0,0)--(0,12); 569 | \foreach \x in{5,10}\draw(0,\x)node[left]{$\x$}--(0.14,\x); 570 | \draw[->](1,0)--(11.5,0); 571 | \foreach \x/\y in{1/7.5,3/8.5,5/9.5,7/10.5,9/11.5,11/12.5}\draw(\x,0)node[below]{$\y$}--(\x,0.2); 572 | \begin{scope}[xshift=-6.3cm] 573 | \draw[thick](8.1,0)--(8.1,0.5)--(8.5,0.5)--(8.5,0)(8.5,0.3)--(8.9,0.3)--(8.9,0) 574 | --(8.9,0.7)--(9.3,0.7)(9.3,0)--(9.3,3)--(9.7,3)(9.7,0)--(9.7,5) 575 | --(10.1,5)(10.1,0)--(10.1,6)--(10.5,6)(10.5,0)--(10.5,8.2)--(10.9,8.2)(10.9,0)--(10.9,11) 576 | --(11.3,11)(11.3,0)--(11.3,12)--(11.7,12)--(11.7,0)(11.7,10.5)--(12.1,10.5) 577 | (12.1,0)--(12.1,11.7)--(12.5,11.7)--(12.5,0)(12.5,8)--(12.9,8)--(12.9,0) 578 | (12.9,6.7)--(13.3,6.7)--(13.3,0)(13.3,5.4)--(13.7,5.4)--(13.7,0)(13.7,2.2)--(14.1,2.2) 579 | --(14.1,0)(14.1,1.2)--(14.5,1.2)--(14.5,0)(14.5,0.8)--(14.9,0.8)--(14.9,0)-- 580 | (14.9,1.1)--(15.3,1.1)--(15.3,0)--(15.3,1.2)--(15.7,1.2)--(15.7,0)(15.7,0.5)--(16.1,0.5) 581 | --(16.1,0); 582 | \end{scope} 583 | \end{tikzpicture} 584 | \caption{500个样本均值形成的直方图}\label{fig:5.3.2} 585 | \end{figure} 586 | 587 | 类似地,样本方差也有一个抽样分布,样本标准差也有一个抽样分布. 588 | 589 | 例~\ref{exam:5.3.2} 中我们给了样本均值的分布一个直观的描述,下面是关于样本均值的抽样分布的一个重要结论. 590 | \begin{theorem}{}{5.3.3} 591 | 设$x_1,x_2,\dotsc,x_n$是来自某个总体的样本, $\bar x$为样本均值. 592 | \begin{enumerate} 593 | \item 若总体分布为$N(\mu,\sigma^2)$,则$\bar x$的 \textbf{精确分布}\index{J!精确分布}为$N(\mu,\sigma^2/n)$; 594 | \item 若总体分布位置或不是正态分布,但$E(x)=\mu,\operatorname{Var}(x)=\sigma^2$,则$n$较大时$\bar x$的 \textbf{渐近分布}\index{J!渐近分布}为$N(\mu,\sigma^2)$,常记为$\bar x\dot{\sim}N(\mu,\sigma^2/n)$.这里渐近分布是指$n$较大时的近似分布. 595 | \end{enumerate} 596 | \end{theorem} 597 | \begin{proof} 598 | \begin{enumerate} 599 | \item 利用卷积公式,可得知$\sum_{i=1}^nx_i\sim N(n\mu,n\sigma^2)$,由此可知$\bar x\sim N(\mu,\sigma^2/n)$ 600 | \item 由中心极限定理, $\sqrt n(\bar x-\mu)/\sigma\xrightarrow{L}N(0,1)$,这表明$n$较大时$\bar x$的渐近分布为$N(\mu,\sigma^2/n)$,证毕. 601 | \end{enumerate} 602 | \end{proof} 603 | \begin{example}\label{exam:5.3.3} 604 | 图~\ref{fig:5.3.3} 给出三个不同总体样本均值的分布.三个总体分别是: 605 | \ding{172}均匀分布、\ding{173}倒三角分布、\ding{174}指数分布,随着样本量的增加,样本均值的抽样分布逐渐向正态分布逼近,他们均值保持不变,而方差则缩小为原来的$1/n$.当样本量为30时,我们看到三个抽样分布都近似于正态分布.下面对之进行说明. 606 | \begin{figure}[!ht] 607 | \centering 608 | \begin{tikzpicture}[>=Stealth,xscale=0.7,yscale=0.6,thick,samples=100] 609 | \node[align=center] at(1.5,3){$\bar X$的分布\\($n=30$)}; 610 | \node[align=center] at(1.5,8){$\bar X$的分布\\($n=5$)}; 611 | \node[align=center] at(1.5,11.9){$\bar X$的分布\\($n=2$)}; 612 | \node[align=center] at(1.5,15.9){总体分布}; 613 | \draw[dashed](0,6)--(12,6)(0,10)--(12,10)(0,14)--(12,14); 614 | \begin{scope} 615 | \draw(3.2,0)--(3.2,0.1)(4.2,0)--(4.2,0.1)(5.2,0)--(5.2,0.1); 616 | \draw[->](3,0)--(3,5.8); 617 | \draw[->](3,0)--(6,0);\node[below]at(3.2,0){$1$}; 618 | \node[below]at(4.2,0){$3$};\node[below]at(5.2,0){$5$}; 619 | \draw[domain=3.7:4.7]plot(\x,{5.2*(e^(-15*((\x)-4.2)^2))-0.1}); 620 | \draw[->](3,6.8)--(6,6.8); 621 | \draw[->](3,6.8)--(3,9.8);\node[below]at(3.2,6.8){$1$}; 622 | \node[below]at(4.2,6.8){$3$};\node[below]at(5.2,6.8){$5$}; 623 | \draw(3.2,6.8)--(3.2,6.9)(4.2,6.8)--(4.2,6.9)(5.2,6.8)--(5.2,6.9) 624 | (3.7,6.8)--(3.7,6.9)(4.7,6.8)--(4.7,6.9); 625 | \draw[domain=3.4:5]plot(\x,{2.2*(e^(-5*((\x)-4.2)^2))+6.7}); 626 | \draw[->](3,10.8)--(6,10.8); 627 | \draw[->](3,10.8)--(3,13.8);\node[below]at(3.2,10.8){$1$}; 628 | \node[below]at(4.2,10.8){$3$};\node[below]at(5.2,10.8){$5$}; 629 | \draw(3.2,10.8)--(3.2,10.9)(4.2,10.8)--(4.2,10.9)(5.2,10.8)--(5.2,10.9) 630 | (3.7,10.8)--(3.7,10.9)(4.7,10.8)--(4.7,10.9); 631 | \draw(3.2,10.8)--(4.2,13)--(5.2,10.8); 632 | \draw[->](3,14.8)--(6,14.8); 633 | \draw[->](3,14.8)--(3,17.8);\node[below]at(3.2,14.8){$1$}; 634 | \node[below]at(4.2,14.8){$3$};\node[below]at(5.2,14.8){$5$}; 635 | \draw(3.2,14.8)--(3.2,14.9)(4.2,14.8)--(4.2,14.9)(5.2,14.8)--(5.2,14.9) 636 | (3.7,14.8)--(3.7,14.9)(4.7,14.8)--(4.7,14.9); 637 | \draw(3.2,14.8)--(3.2,17)--node[above]{\ding{172}}(5.2,17)--(5.2,14.8); 638 | \draw[->](6.1,-0.7)--(6.1,18); 639 | \end{scope} 640 | \begin{scope}[xshift=3.4cm] 641 | \draw(3.2,0)--(3.2,0.1)(4.2,0)--(4.2,0.1)(5.2,0)--(5.2,0.1); 642 | \draw[->](3,0)--(3,5.8); 643 | \draw[->](3,0)--(6,0);\node[below]at(3.2,0){$1$}; 644 | \node[below]at(4.2,0){$3$};\node[below]at(5.2,0){$5$}; 645 | \draw[domain=3.7:4.7]plot(\x,{5.2*(e^(-60*((\x)-4.2)^4))-0.1}); 646 | \draw[->](3,6.8)--(6,6.8); 647 | \draw[->](3,6.8)--(3,9.8);\node[below]at(3.2,6.8){$1$}; 648 | \node[below]at(4.2,6.8){$3$};\node[below]at(5.2,6.8){$5$}; 649 | \draw(3.2,6.8)--(3.2,6.9)(4.2,6.8)--(4.2,6.9)(5.2,6.8)--(5.2,6.9) 650 | (3.7,6.8)--(3.7,6.9)(4.7,6.8)--(4.7,6.9); 651 | \draw[domain=3.2:5.2]plot(\x,{2.2*(e^(-3*((\x)-4.2)^2))+6.7}); 652 | \draw[->](3,10.8)--(6,10.8); 653 | \draw[->](3,10.8)--(3,13.8);\node[below]at(3.2,10.8){$1$}; 654 | \node[below]at(4.2,10.8){$3$};\node[below]at(5.2,10.8){$5$}; 655 | \draw(3.2,10.8)--(3.2,10.9)(4.2,10.8)--(4.2,10.9)(5.2,10.8)--(5.2,10.9) 656 | (3.7,10.8)--(3.7,10.9)(4.7,10.8)--(4.7,10.9); 657 | \draw[domain=3.7:4.7]plot(\x,{2.2*(e^(-3*((\x)-4.2)^2))+10.7}); 658 | \draw[domain=3.2:3.7]plot(\x,{1.4*(e^(-20*((\x)-3.57)^2))+10.7}); 659 | \draw[domain=4.7:5.2]plot(\x,{1.4*(e^(-20*((\x)-4.83)^2))+10.7}); 660 | \draw[->](3,14.8)--(6,14.8); 661 | \draw[->](3,14.8)--(3,17.8);\node[below]at(3.2,14.8){$1$}; 662 | \node[below]at(4.2,14.8){$3$};\node[below]at(5.2,14.8){$5$}; 663 | \draw(3.2,14.8)--(3.2,14.9)(4.2,14.8)--(4.2,14.9)(5.2,14.8)--(5.2,14.9) 664 | (3.7,14.8)--(3.7,14.9)(4.7,14.8)--(4.7,14.9); 665 | \draw(3.2,14.8)--(3.2,17)--(4.2,14.8)--(5.2,17)--(5.2,14.8); 666 | \node[above]at(4.2,17){\ding{173}}; 667 | \draw[->](6.1,-0.7)--(6.1,18); 668 | \end{scope} 669 | 670 | \begin{scope}[xshift=6.8cm] 671 | \draw(3,0)node[below]{0}--(3,0.1)(3.5,0)node[below]{$1$}--(3.5,0.1)(4,0)node[below]{2} 672 | --(4,0.1)(4.5,0)node[below]{3}--(4.5,0.1)(5,0)--(5,0.1); 673 | \draw[->](3,0)--(3,5.8);\draw[->](3,0)--(6,0); 674 | \draw[domain=3.7:4.7,xshift=-0.7cm]plot(\x,{5.2*(e^(-15*((\x)-4.2)^2))-0.1}); 675 | \draw[->](3,6.8)--(6,6.8); 676 | \draw[->](3,6.8)--(3,9.8); 677 | \draw[yshift=6.8cm](3,0)node[below]{0}--(3,0.1)(3.5,0)node[below]{$1$}-- 678 | (3.5,0.1)(4,0)node[below]{2} 679 | --(4,0.1)(4.5,0)node[below]{3}--(4.5,0.1)(5,0)--(5,0.1); 680 | \begin{scope} 681 | \clip(3,6.8)--(3,9.8)--(6,9.8)--(6,6.8)--cycle; 682 | \draw[domain=3.2:5.2,xshift=-0.9cm]plot(\x,{2.2*(e^(-3*((\x)-4.2)^2))+6.7}); 683 | \end{scope} 684 | \draw[->](3,10.8)--(6,10.8); 685 | \draw[->](3,10.8)--(3,13.8); 686 | \draw[yshift=10.8cm](3,0)node[below]{0}--(3,0.1)(3.5,0)node[below]{$1$}-- 687 | (3.5,0.1)(4,0)node[below]{2} 688 | --(4,0.1)(4.5,0)node[below]{3}--(4.5,0.1)(5,0)--(5,0.1); 689 | \begin{scope}[yshift=4cm] 690 | \clip(3,6.8)--(3,9.8)--(6,9.8)--(6,6.8)--cycle; 691 | \draw[domain=3.2:5.5,xshift=-1.3cm]plot(\x,{2.2*(e^(-4*((\x)-4.4)^2))+6.8}); 692 | \end{scope} 693 | \draw[->](3,14.8)--(6,14.8); 694 | \draw[->](3,14.8)--(3,17.8); 695 | \draw[yshift=14.8cm](3,0)node[below]{0}--(3,0.1)(3.5,0)node[below]{$1$}-- 696 | (3.5,0.1)(4,0)node[below]{2} 697 | --(4,0.1)(4.5,0)node[below]{3}--(4.5,0.1)(5,0)--(5,0.1); 698 | \node[above]at(4.2,17){\ding{174}}; 699 | \draw[out=-80,in=160](3,17)to(4.5,14.8); 700 | \draw[->](6.1,-0.7)--(6.1,18); 701 | \end{scope} 702 | \end{tikzpicture} 703 | \caption{不同总体样本均值的分布}\label{fig:5.3.3} 704 | \end{figure} 705 | 706 | \ding{172}的总体分布为均匀分布$U(1,5)$,该总体的均值和方差分别为$3$和$4/3$,若从该总体抽取样本容量为30的样本,则其样本均值的渐近分布为 707 | \[\bar x_1\dot{\sim}N\left(3,\frac4{3\times40}\right)=N(3,0.21^2).\] 708 | 709 | \ding{173}的总体分布的概率密度函数为 710 | \[p(x)=\begin{cases} 711 | (3-x)/4,&1\leq x<3;\\ 712 | (x-3)/4,&3\leq x\leq 5;\\ 713 | 0,&\text{其他}. 714 | \end{cases}\] 715 | 716 | 这是一个倒三角分布,可以算得其均值与方差分别为3和2,若从该总体抽取样本容量为30的样本,则其样本均值的渐近分布为 717 | \[\bar x_2\dot{\sim} N\left(3,\frac{2}{30}\right)=N(3,0.26^2).\] 718 | 719 | \ding{174}的总体分布为指数分布$Exp(1)$,其均值与方差都等于1,若从该总体抽取样本容量为30的样本,则其样本均值$\bar x_3$的分布近似为 720 | \[\bar x_3\dot{\sim}N\left(1,\frac1{30}\right)=N(1,0.18^2).\] 721 | 722 | 这三个总体都不是正态分布,但其样本均值的分布都十分近似于正态分布,差别表现在均值与标准差上.图~\ref{fig:5.3.3} 所示曲线既展示它们的共同之处,又显示它们之间的差别. 723 | \end{example} 724 | \subsection{样本方差与样本标准差\label{ssec:5.3.3}} 725 | \begin{definition}{}{5.3.3} 726 | 设$x_1,x_2,\dotsc,x_n$为取自某总体的样本,则它关于样本均值$\bar x$的平均偏差平方和 727 | \begin{equation}\label{eq:5.3.3} 728 | {s^\ast}^2=\frac1n\sum_{i=1}^n(x_i-\bar x)^2 729 | \end{equation} 730 | 称为 \textbf{样本方差}\index{Y!样本方差}.其算术根$s^\ast=\sqrt{{s^\ast}^2}$称为样本标准差.相对样本方差而言,样本标准差通常更有实际意义,因为它与样本均值具有相同的度量单位.在$n$不大时,常用 731 | \begin{equation}\label{eq:5.3.4} 732 | s^2=\frac1{n-1}\sum_{i=1}^n(x_i-\bar x)^2 733 | \end{equation} 734 | 735 | 作为样本方差(也称 \textbf{无偏方差}\index{W!无偏方差},其含义在第六章讲述),其算术根$s=\sqrt{s^2}$也称为样本标准差.在实际中, $s^2$比${s^\ast}^2$更常用,在以后讲样本方差通常指的是$s^2$. 736 | \end{definition} 737 | 738 | 在这个定义中, $n$为 \textbf{样本量}\index{Y!样本量}, $\sum_{i=1}^n(x_i-\bar x)^2$称为偏差平方和\index{P!偏差平方和}, $n-1$称为偏差平方和的自由度\index{Z!自由度}.其含义是: 在$\bar x$确定后, $n$个偏差$x_1-\bar x,x_2-\bar x,\dotsc,x_n-\bar x$中只有$n-1$个数据可以自由变动,而第$n$个则不能自由取值,因为$\sum(x_i-\bar x)=0$. 739 | 740 | 样本偏差平方和有三个不同的表达式: 741 | \begin{equation}\label{eq:5.3.5} 742 | \sum(x_i-\bar x)^2=\sum x_i^2-\frac{\bigl(\sum x_i\bigr)^2}n=\sum x_i^2-n\bar x^2. 743 | \end{equation} 744 | 它们都可用来计算样本方差. 745 | 746 | 在分组样本场合,样本方差的近似计算公式为 747 | \begin{equation}\label{eq:5.3.6} 748 | s^2=\frac1{n-1}\sum_{i=1}^kf_i(x_i-\bar x)^2=\frac1{n-1}\Bigl[\sum_{i=1}^kf_ix_i^2-n\bar x^2\Bigr], 749 | \end{equation} 750 | 其中$x_i,f_i$分别为第$i$个区间的组中值和频数, $\bar x$为~\eqref{eq:5.3.2} 中给出的样本均值. 751 | \begin{example}\label{exam:5.3.4} 752 | 考察例~\ref{exam:5.3.1} 的样本,我们已经算得$\bar x=99.4$,其样本方差与样本标准差分别为 753 | \begin{align*} 754 | s^2&=\frac1{20-1}[(79-99.4)^2+(84-99.4)^2+\dotsb+(125-99.4)^2]133.9368,\\ 755 | s&=\sqrt{133.9368}=11.5731, 756 | \end{align*} 757 | 对表~\ref{table5.3.1} 的分组样本,我们可以如表~\ref{tab:5.3.2} 计算(样本均值也由分组样本计算): 758 | \begin{table}[!htb] 759 | \centering 760 | \caption{分组样本方差的计算表}\label{tab:5.3.2} 761 | \begin{tabularx}{\textwidth}{YYYYY} 762 | \toprule 763 | \text{组中值}x&\text{频数}f&xf&x-\bar x&(x-\bar x)^2f\\ 764 | \midrule 765 | 82&3&246&-18&972\\ 766 | 92&5&460&-8&320\\ 767 | 102&7&714&2&28\\ 768 | 112&3&336&12&432\\ 769 | 122&2&244&22&968\\ 770 | \text{和}&20&2000&&2720\\ 771 | \bottomrule 772 | \end{tabularx} 773 | \end{table} 774 | 于是$\bar x=\frac{2000}{20}=100,s^2=\frac{2720}{20-1}=143.16,s=\sqrt{143.16}=11.96$. 775 | \end{example} 776 | 777 | 下面的定理给出样本均值的数学期望和方差以及样本方差的数学期望,它不依赖于总体的分布形式.这些结果在后面的讨论中是有用的. 778 | \begin{theorem}{}{5.3.4} 779 | 设总体$X$具有二阶矩,即$E(X)=\mu,\operatorname{Var}(X)=\sigma^2<+\infty,x_1,x_2,\dotsc,x_n$为从该总体得到的样本, $\bar x$和$s^2$分别是样本均值和样本方差,则 780 | \begin{gather} 781 | E(\bar x)=\mu,\qquad\operatorname{Var}(\bar x)=\sigma^2/n,\label{eq:5.3.7}\\ 782 | E(s^2)=\sigma^2.\label{eq:5.3.8} 783 | \end{gather} 784 | \end{theorem} 785 | 此定理表明,样本均值的均值与总体均值相同,而样本均值的方差是总体方差的$1/n$. 786 | \begin{proof} 787 | 由于 788 | \begin{gather*} 789 | E(\bar x)=\frac1nE\Bigl(\sum_{i=1}^nx_i\Bigr)=\frac{n\mu}n=\mu,\\ 790 | \operatorname{Var}(\bar x)=\frac1{n^2}\operatorname{Var}\Bigl(\sum_{i=1}^nx_i\Bigr) 791 | =\frac{n\sigma^2}{n^2}=\frac{\sigma^2}n, 792 | \end{gather*} 793 | 故~\eqref{eq:5.3.7} 成立.下证~\eqref{eq:5.3.8} ,注意到 794 | \[\sum_{i=1}^n(x_i-\bar x)^2=\sum_{i=1}^nx_i^2-n\bar x^2,\] 795 | 而$Ex_i^2=(Ex_i)^2+\operatorname{Var}(x_i)=\mu^2+\sigma^2,E(\bar x^2)=(E\bar x)^2+\operatorname(Var)(\bar x)=\mu^2+\sigma^2/n$,于是 796 | \[E\Bigl(\sum_{i=1}^n(x_i-\bar x)^2\Bigr)=n(\mu^2+\sigma^2)-n(\mu^2+\sigma^2/n)=(n-1)\sigma^2,\] 797 | 两边各除以$n-1$,即得~\eqref{eq:5.3.8}. 798 | \end{proof} 799 | \subsection{样本矩及其函数\label{ssec:5.3.4}} 800 | 样本均值和样本方差的更一般的推广是样本矩,这是一类常见的统计量. 801 | \begin{definition}{}{5.3.4} 802 | 设$x_1,x_2,\dotsc,x_n$是样本,则统计量 803 | \begin{equation}\label{eq:5.3.9} 804 | a_k=\frac1n\sum_{i=1}^nx_i^k 805 | \end{equation} 806 | 称为样本$k$阶原点矩.特别,样本一阶原点矩就是样本均值.统计量 807 | \begin{equation}\label{eq:5.3.10} 808 | b_k=\frac1n\sum_{i=1}^n(x_i-\bar x)^k 809 | \end{equation} 810 | 称为样本$k$阶中心矩.特别,样本二阶中心矩就是样本方差. 811 | \end{definition} 812 | 813 | 当总体关于分布中心对称时,我们用$\bar x$和$s$刻画样本特征很有代表性,而当其不对称时,只用$\bar x,s$就显得很不够.为此,需要一些刻画分布形状的统计量.这里我们介绍样本偏度和样本峰度,它们都是样本中心矩的函数. 814 | \begin{definition}{}{5.3.5} 815 | 设$x_1,x_2,\dotsc,x_n$是样本,则称统计量 816 | \begin{equation}\label{eq:5.3.11} 817 | \gamma_1=b_3/b_2^{3/2} 818 | \end{equation} 819 | 为样本偏度\index{Y!样本偏度}. 820 | \end{definition} 821 | 样本偏度$\gamma_1$反映了总体分布密度曲线的对称性信息.如果数据完全对称,则不难看出$b_3=0$.对不对称的数据则$b_3=0$.这里用$b_3$除以$b_2^{3/2}$是为了消除量纲的影响,$\gamma_1$是个相对数,它很好地刻画了数据分布的偏斜方向和程度.如果$\gamma_1$表示样本对称(见图~\ref{fig:5.3.4}\subref{fig:5.3.4(a)} ),如果$\gamma_1>0$表示样本的右尾长,即样本中有几个较大的数,这反映总体分布是正偏的或右偏的(见图~\ref{fig:5.3.4}\subref{fig:5.3.4(b)} ),如果$\gamma_1<0$表示分布的左尾长,即样本中有几个特小的数,这反映总体分布是负偏的或左偏的(见图~\ref{fig:5.3.4}\subref{fig:5.3.4(c)} ). 822 | \begin{figure}[!ht] 823 | \centering 824 | \subfloat[样本$(4,7,8,9,12)$的偏度\label{fig:5.3.4(a)}]{ 825 | \begin{minipage}[b]{0.3\textwidth} 826 | \begin{tikzpicture}[semithick] 827 | \draw(0,0)--(\textwidth,0); 828 | \node[below]at(0.2\textwidth,0){4};\node[below]at(0.5\textwidth,0){8}; 829 | \node[below]at(0.8\textwidth,0){12};\node[below]at(0.425\textwidth,0){7}; 830 | \node[below]at(0.575\textwidth,0){9}; 831 | \foreach \x in{0.2,0.425,0.5,0.575,0.8} 832 | \draw(\x\textwidth,0)--(\x\textwidth,0.06); 833 | \draw[samples=100,domain=0.3:4.15,dashed,thick]plot(\x,{2*e^(-(\x-2.2)^2)+0.1}); 834 | \end{tikzpicture} 835 | \end{minipage} 836 | } 837 | \subfloat[样本$(7,8,9,12,15)$的偏度\label{fig:5.3.4(b)}]{ 838 | \begin{minipage}[b]{0.3\textwidth} 839 | \begin{tikzpicture}[semithick] 840 | \draw(0,0)--(\textwidth,0); 841 | \node[below]at(0.2\textwidth,0){7};\node[below]at(0.275\textwidth,0){8}; 842 | \node[below]at(0.35\textwidth,0){9};\node[below]at(0.575\textwidth,0){12}; 843 | \node[below]at(0.8\textwidth,0){15}; 844 | \foreach \x in{0.2,0.275,0.35,0.575,0.8} 845 | \draw(\x\textwidth,0)--(\x\textwidth,0.06); 846 | \draw[samples=100,domain=0.3:4.15,dashed,thick]plot(\x,{1.6*e^(-(\x-1.5)^2)+0.1}); 847 | \end{tikzpicture} 848 | \end{minipage} 849 | } 850 | \subfloat[样本$(1,4,7,8,9)$的偏度\label{fig:5.3.4(c)}]{ 851 | \begin{minipage}[b]{0.3\textwidth} 852 | \begin{tikzpicture}[semithick] 853 | \draw(0,0)--(\textwidth,0); 854 | \node[below]at(0.1\textwidth,0){1};\node[below]at(0.45\textwidth,0){4}; 855 | \node[below]at(0.625\textwidth,0){7};\node[below]at(0.7\textwidth,0){8}; 856 | \node[below]at(0.775\textwidth,0){9}; 857 | \foreach \x in{0.1,0.45,0.625,0.7,0.775} 858 | \draw(\x\textwidth,0)--(\x\textwidth,0.06); 859 | \draw[samples=100,domain=0.3:4.15,dashed,thick]plot(\x,{1.6*e^(-(\x-2.8)^2)+0.1}); 860 | \end{tikzpicture} 861 | \end{minipage} 862 | } 863 | \caption{样本偏度$\gamma_1$的例子(样本量$n=5$)}\label{fig:5.3.4} 864 | \end{figure} 865 | \begin{definition}{}{5.3.6} 866 | 设$x_1,x_2,\dotsc,x_n$是样本,则统计量 867 | \begin{equation}\label{eq:5.3.12} 868 | \gamma_2=\frac{b_4}{b_2^2}-3 869 | \end{equation} 870 | 为样本峰度. 871 | \end{definition} 872 | 873 | 样本峰度$\gamma_2$反映了总体分布密度曲线在其峰值附近的陡峭程度.当$\gamma_2>0$时,分布密度曲线在其峰值附近比正态分布来得陡,称为尖顶型;当$\gamma_2<0$时,分布密度曲线在其峰值附近比正态分布来得平坦,称为平顶型. 874 | \begin{example}\label{exam:5.3.5} 875 | 表~\ref{tab:5.3.3} 是两个班(每班50名同学)的英语课程的考试成绩. 876 | \begin{table}[!ht] 877 | \centering 878 | \caption{两个班级的英语成绩}\label{tab:5.3.3} 879 | \begin{tabularx}{\textwidth}{ZZZZ} 880 | \toprule 881 | 成绩&组中值&甲班人数$f_{\text{甲}}$&乙班人数$f_{\text{乙}}$\\ 882 | \midrule 883 | $90\sim100$&95&5&4\\ 884 | $80\sim89$&85&10&14\\ 885 | $70\sim79$&75&22&16\\ 886 | $60\sim69$&65&11&14\\ 887 | $50\sim59$&55&1&2\\ 888 | $40\sim49$&45&1&0\\ 889 | \bottomrule 890 | \end{tabularx} 891 | \end{table} 892 | 893 | 下面我们分别计算两个班级的平均成绩、标准差、样本偏度及样本峰度.表 894 | ~\ref{tab:5.3.4} 和表~\ref{tab:5.3.5} 分别给出甲班和乙班的计算过程. 895 | \begin{table}[!ht] 896 | \centering 897 | \caption{甲班成绩的计算过程}\label{tab:5.3.4} 898 | \begin{tabularx}{\textwidth}{YYYYYY} 899 | \toprule 900 | x&f_{\text{甲}}&x\cdot f_{\text{甲}}&(x-\bar x_{甲})^2f_{\text{甲}}&(x-\bar x_{甲})^3f_{\text{甲}}&(x-\bar x_{甲})^4f_{\text{甲}}\\ 901 | \midrule 902 | 95&5&475&1843.20&35389.440&679477.2480\\ 903 | 85&10&850&846.40&7786.880&71639.2960\\ 904 | 75&22&1650&14.08&-11.264&9.0112\\ 905 | 65&11&715&1283.04&-13856.832&149653.7856\\ 906 | 55&1&55&432.64&-8998.912&187 177.3696\\ 907 | 45&1&45&948.64&-29218.112&899917.8496\\ 908 | \midrule 909 | \text{和}&50&3790&5368&-8908.8&1987874.56\\ 910 | \bottomrule 911 | \end{tabularx} 912 | \end{table} 913 | \begin{table}[!ht] 914 | \centering 915 | \caption{乙班成绩的计算过程}\label{tab:5.3.5} 916 | \begin{tabularx}{\textwidth}{YYYYYY} 917 | \toprule 918 | x&f_{\text{乙}}&x\cdot f_{\text{乙}}&(x-\bar x_{乙})^2f_{\text{乙}}&(x-\bar x_{乙})^3f_{\text{乙}}&(x-\bar x_{乙})^4f_{\text{乙}}\\ 919 | \midrule 920 | 95&4&380&1474.56&28311.552&543581.7984\\ 921 | 85&14&1190&1184.96&10901.632&100295.0144\\ 922 | 75&16&1200&10.24&-8.192&6.5536\\ 923 | 65&14&910&1632.96&-17635.968&190468.4544\\ 924 | 55&2&110&865.28&-17997.824&374354.7392\\ 925 | \text{和}&50&3790&5168&3571.2&1208706.56\\ 926 | \bottomrule 927 | \end{tabularx} 928 | \end{table} 929 | 可算得两个班的平均成绩、标准差、偏态系数、峰态系数分别为: 930 | \begin{align*} 931 | \begin{gathered} 932 | \bar x_{\text{甲}}=\frac{3790}{50}=75.8,\\ 933 | s_{\text{甲}}=\sqrt{\frac{5368}{49}=10.47},\\ 934 | \gamma_{1\text{甲}}=\frac{-8908.8/50}{(5368/50)^{3/2}}=-0.16,\\ 935 | \gamma_{2\text{甲}}=\frac{1987874.56/50}{(5368/50)^2}-3=0.45, 936 | \end{gathered}\qquad 937 | \begin{gathered} 938 | \bar x_{\text{乙}}=\frac{3790}{50}=75.8,\\ 939 | s_{\text{乙}}=\sqrt{\frac{5168}{49}}=10.27,\\ 940 | \gamma_{1\text{乙}}=\frac{3571.2/50}{(5168/50)^{3/2}}=0.068,\\ 941 | \gamma_{2乙}=\frac{1208706.56/50}{(5168/50)^2}-3=-0.74. 942 | \end{gathered} 943 | \end{align*} 944 | 945 | 946 | 947 | 948 | \end{example} 949 | \subsection{次序统计量及其分布} 950 | 除了样本矩以外,另一类常见的统计量是 \textbf{次序统计量}\index{C!次序统计量},它在实际和理论中都有广泛的应用. 951 | \subsubsection{定义} 952 | \begin{definition}{}{5.3.7} 953 | 设$x_1,x_2,\dotsc,x_n$是取自总体X的样本, $x_{(i)}$称为该样本的第$i$个次序统计量,它的取值是将样本观测值由小到大排列后得到的第$i$个观测值.其中$x_{(1)}=\min\{x_1,\dotsc,x_n\}$称为该样本的 \textbf{最小次序统计量}\index{Z!最小次序统计量}, $x_{(n)}=\max\{x_1,\dotsc,x_n\}$称为该样本的 \textbf{最大次序统计量}\index{Z!最大次序统计量}. 954 | \end{definition} 955 | 956 | 在一个(简单随机)样本中, $x_1,x_2,\dotsc,x_n$是独立同分布的,而次序统计量$x_{(1)},x_{(2)},\dotsc,x_{(n)}$则既不独立,分布也不相同,看下例. 957 | \begin{example}\label{exam:5.3.6} 958 | 设总体$X$的分布为仅取$0,1,2$的离散均匀分布,分布列为 959 | \begin{center} 960 | \begin{tabularx}{0.5\textwidth}{Y|YYY} 961 | x&0&1&2\\ 962 | \midrule 963 | p&1/3&1/3&1/3 964 | \end{tabularx} 965 | \end{center} 966 | 现从中抽取容量为3的样本,其一切可能取值有$3^3=27$种,现将它们列在表~\ref{tab:5.3.6} 左侧,其右侧相应的次序统计量观测值. 967 | \end{example} 968 | \begin{table}[!ht] 969 | \centering 970 | \caption{例~\ref{exam:5.3.6} 中样本取值及其次序统计量}\label{tab:5.3.6} 971 | \begin{tabularx}{\textwidth}{YYY|YYY||YYY|YYY} 972 | \toprule 973 | x_1&x_2&x_3&x_{(1)}&x_{(2)}&x_{(3)}&x_1&x_2&x_3&x_{(1)}&x_{(2)}&x_{(3)}\\ 974 | \midrule 975 | 0&0&0&0&0&0&1&2&0&0&1&2\\ 976 | 0&0&1&0&0&1&2&1&0&0&1&2\\ 977 | 0&1&0&0&0&1&0&2&2&0&2&2\\ 978 | 1&0&0&0&0&1&2&0&2&0&2&2\\ 979 | 0&0&2&0&0&2&2&2&0&0&2&2\\ 980 | 0&2&0&0&0&2&1&1&2&1&1&2\\ 981 | 2&0&0&0&0&2&1&2&1&1&1&2\\ 982 | 0&1&1&0&1&1&2&1&1&1&1&2\\ 983 | 1&0&1&0&1&1&1&2&2&1&2&2\\ 984 | 1&1&0&0&1&1&2&1&2&1&2&2\\ 985 | 0&1&2&0&1&2&2&2&1&1&2&2\\ 986 | 0&2&1&0&1&2&1&1&1&1&1&1\\ 987 | 1&0&2&0&1&2&2&2&2&2&2&2\\ 988 | 2&0&1&0&1&2\\ 989 | \bottomrule 990 | \end{tabularx} 991 | \end{table} 992 | 由于样本取上述每一组观测值的概率相同,都为$1/27$,由此可给出$x_{(1)},x_{(2)},x_{(3)}$的分布列如下: 993 | \begin{center} 994 | \begin{minipage}{0.3\textwidth} 995 | \begin{tabularx}{0.9\textwidth}{Y|YYY} 996 | \toprule 997 | x_{(1)}&0&1&2\\ 998 | \midrule 999 | p&\frac{19}{27}&\frac{7}{27}&\frac1{27}\\ 1000 | \bottomrule 1001 | \end{tabularx} 1002 | \end{minipage} 1003 | \begin{minipage}{0.3\textwidth} 1004 | \begin{tabularx}{0.9\textwidth}{Y|YYY} 1005 | \toprule 1006 | x_{(2)}&0&1&2\\ 1007 | \midrule 1008 | p&\frac{7}{27}&\frac{13}{27}&\frac7{27}\\ 1009 | \bottomrule 1010 | \end{tabularx} 1011 | \end{minipage} 1012 | \begin{minipage}{0.3\textwidth} 1013 | \begin{tabularx}{0.9\textwidth}{Y|YYY} 1014 | \toprule 1015 | x_{(3)}&0&1&2\\ 1016 | \midrule 1017 | p&\frac{1}{27}&\frac{7}{27}&\frac{19}{27}\\ 1018 | \bottomrule 1019 | \end{tabularx} 1020 | \end{minipage} 1021 | \end{center} 1022 | 我们可以清楚地看到这三个次序统计量的分布是不相同的. 1023 | 1024 | 进一步,我们可以给出两个次序统计量的联合分布,如, $x_{(1)}$和$x_{(2)}$的联合分布列为 1025 | \begin{center} 1026 | \begin{tabularx}{\textwidth}{Y|YYY} 1027 | \toprule 1028 | \multirow{2}*{$x_{(1)}$}&\multicolumn{3}{c}{$x_{(2)}$}\\ 1029 | \cmidrule{2-4} 1030 | &1&2&3\\ 1031 | \midrule 1032 | 0&7/27&9/27&3/27\\ 1033 | 1&0&4/27&3/27\\ 1034 | 2&0&0&1/27\\ 1035 | \bottomrule 1036 | \end{tabularx} 1037 | \end{center} 1038 | 因为$P(x_{(1)}=0)P(x_{(2)}=0)=\frac{19}{27}\times\frac7{27}$,而$P(x_{(1)}=0,x_{(2)}=0)=7/27$,两者不等,由此可看出$x_{(1)}$和$x_{(2)}$是不独立的. 1039 | 1040 | 接下来我们讨论次序统计量的抽样分布,它们常用在连续总体上,故我们仅就总体$X$的分布为连续情况进行叙述. 1041 | \subsubsection{单个次序统计量的分布} 1042 | \begin{theorem}{}{5.3.5} 1043 | 设总体$X$的密度函数为$p(x)$,分布函数为$F(x),x_1,x_2,\dotsc,x_n$为样本,则第$k$个次序统计量$x_{(k)}$的密度函数为 1044 | \begin{equation}\label{eq:5.3.13} 1045 | p_k(x)=\frac{n!}{(k-1)!(n-k)!}(F(x))^{k-1}(1-F(x))^{n-k}p(x). 1046 | \end{equation} 1047 | \end{theorem} 1048 | \begin{proof} 1049 | 对任意的实数$x$,考虑次序统计量$x_{(k)}$取值落在小区间$(x,x+\Delta x]$内这一事件,它等价``样本容量为$n$的样本中有1个观测值落在$(x,x+△x]$之间,而有$k-1$个观测值小于等于$x$,有$n一k$个观测值大于$x+△x$'',其直观示意见图~\ref{fig:5.3.5}. 1050 | \begin{figure}[!ht] 1051 | \centering 1052 | \begin{tikzpicture}[semithick] 1053 | \draw(-4,0)--(4,0);\coordinate(a)at(-1,0);\node[below=2pt]at(a){$x$}; 1054 | \coordinate(b)at(1,0);\node[below]at(b){$x+\Delta x$}; 1055 | \draw[out=100,in=0](a)to(-3.4,1); 1056 | \draw[out=70,in=110](a)to(b); 1057 | \node at(0,0.75){$1$};\node at(-2.7,0.5){$k-1$}; 1058 | \draw[out=60,in=190](b)to(3.7,1.1); 1059 | \node at(2.6,0.5){$n-k$}; 1060 | \end{tikzpicture} 1061 | \caption{$x_{(k)}$取值的示意图}\label{fig:5.3.5} 1062 | \end{figure} 1063 | 1064 | 样本的每一个分量小于等于$x$的概率为$F(x)$,落入区间$(x,x+\Delta x]$的概率为$F(x+\Delta x)-F(x)$,大于$x+\Delta x$的概率为$1-F(x+\Delta x)$,而将$n$个分量分成这样的三组,总的分法有$\frac{n!}{(k-1)!1!(n-k)!}$种.于是,若以$F_k(x)$记$x_{(k)}$的分布函数,则由多项分布可得 1065 | \[F_k(x+\Delta x)-F_k(x)\approx\frac{n!}{(k-1)!1!(n-k)!}(F(x))^{k-1}(F(x+\Delta x)-F(x))(1-F(x+\Delta x))^{n-k},\] 1066 | 两边除以$\Delta x$,并令$\Delta x\to0$,即有 1067 | \begin{align*} 1068 | p_k(x)&=\lim_{\Delta x\to0}\frac{F_k(x+\Delta x)-F_k(x)}{\Delta x}\\ 1069 | &=\frac{n!}{(k-1)!(n-k)!}(F(x))^{k-1}p(x)(1-F(x))^{n-k}, 1070 | \end{align*} 1071 | 其中$p_k(x)$的非零区间与总体的非零区间相同.特别,令$k=1$和$k=n$即得到最小次序统计量$x_{(1)}$和最大次序统计量$x_{(n)}$的密度函数分别为: 1072 | \begin{gather} 1073 | p_1(x)=n\cdot(F(x))^{n-1}p(x),\label{eq:5.3.14}\\ 1074 | p_n(x)=n\cdot(1-F(x))^{n-1}p(x).\label{eq:5.3.15} 1075 | \end{gather} 1076 | \end{proof} 1077 | \begin{example}\label{exam:5.3.7} 1078 | 设总体密度函数为 1079 | \[p(x)=3x^2,\quad00$可以推出$00$,则当$n\to+\infty$时样本$p$分位数$m_p$的渐近分布为 1179 | \begin{equation}\label{eq:5.3.17} 1180 | m_p\dot{\sim}N\left(x_p,\frac{p(1-p)}{n\cdot p^2(x_p)}\right). 1181 | \end{equation} 1182 | 特别,对样本中位数,当$n\to+\infty$时近似地有 1183 | \begin{equation}\label{eq:5.3.18} 1184 | m_{0.5}\dot{\sim}\left(x_{0.5},\frac1{4n\cdot p^2(x_{0.5})}\right). 1185 | \end{equation} 1186 | \end{theorem} 1187 | \begin{example}\label{5.3.10} 1188 | 设总体为柯西分布,密度函数为 1189 | \[p(x;\theta)=\frac1{\pi(1+(x-\theta)^2)},\quad -\infty=Stealth,thick] 1279 | \draw[decorate,decoration={snake,segment length=1mm,amplitude=0.5mm}](0,0)--(0,0.3); 1280 | \draw[->](0,0.3)--(0,5); 1281 | \foreach \x in{0.5,2.5,4.5}\draw(0,\x)--(0.06,\x); 1282 | \node[left]at(0,0.5){30};\node[left]at(0,2.5){40};\node[left]at(0,4.5){50}; 1283 | \draw[->](0,0)--(11,0); 1284 | \foreach\x in{0.5,1,...,10}\draw(\x,0)--(\x,0.06); 1285 | \node[below]at(0.5,0){1};\node[below]at(1,0){2};\node[below]at(1.5,0){3}; 1286 | \node[below]at(2,0){4};\node[below]at(2.5,0){5};\node[below]at(3,0){6}; 1287 | \node[below]at(3.5,0){7};\node[below]at(4,0){8};\node[below]at(4.5,0){9}; 1288 | \node[below]at(5,0){10};\node[below]at(6,0){12};\node[below]at(7,0){14}; 1289 | \node[below]at(8,0){16};\node[below]at(9,0){18};\node[below]at(10,0){20}; 1290 | \draw(0.5,1)--(0.5,2)(0.3,2)--(0.7,2)--(0.7,2.9)--(0.3,2.9)--(0.3,2)(0.5,2.9)--(0.5,4.1) 1291 | (0.3,2.45)--(0.7,2.45); 1292 | \draw(1,1.1)--(1,2.1)(0.8,2.1)--(1.2,2.1)--(1.2,3)--(0.8,3)--(0.8,2.1)(1,3)--(1,4.05) 1293 | (0.8,2.55)--(1.2,2.55); 1294 | \draw(1.5,1.2)--(1.5,2)(1.3,2)--(1.7,2)--(1.7,2.9)--(1.3,2.9)--(1.3,2)(1.5,2.9)--(1.5,4) 1295 | (1.3,2.45)--(1.7,2.45); 1296 | \draw(2,1.3)--(2,2)(1.8,2)--(2.2,2)--(2.2,2.9)--(1.8,2.9)--(1.8,2)(2,2.9)--(2,4.1) 1297 | (1.8,2.45)--(2.2,2.45); 1298 | \draw(2.5,1.2)--(2.5,2)(2.3,2)--(2.7,2)--(2.7,2.9)--(2.3,2.9)--(2.3,2)(2.5,2.9)--(2.5,4) 1299 | (2.3,2.45)--(2.7,2.45); 1300 | \draw(3,1)--(3,2)(2.8,2)--(3.2,2)--(3.2,2.9)--(2.8,2.9)--(2.8,2)(3,2.9)--(3,4.1) 1301 | (2.8,2.45)--(3.2,2.45); 1302 | \draw(3.5,1.1)--(3.5,2.1)(3.3,2.1)--(3.7,2.1)--(3.7,3)--(3.3,3)--(3.3,2.1)(3.5,3)--(3.5,4.05) 1303 | (3.3,2.55)--(3.7,2.55); 1304 | \draw(4,1)--(4,2)(3.8,2)--(4.2,2)--(4.2,2.9)--(3.8,2.9)--(3.8,2)(4,2.9)--(4,4.1) 1305 | (3.8,2.45)--(4.2,2.45); 1306 | \draw(4.5,1.1)--(4.5,2.1)(4.3,2.1)--(4.7,2.1)--(4.7,3)--(4.3,3)--(4.3,2.1)(4.5,3)--(4.5,4.05) 1307 | (4.3,2.55)--(4.7,2.55); 1308 | \draw(5,1)--(5,2)(4.8,2)--(5.2,2)--(5.2,2.9)--(4.8,2.9)--(4.8,2)(5,2.9)--(5,4.1) 1309 | (4.8,2.45)--(5.2,2.45); 1310 | \draw(5.5,1.1)--(5.5,2)(5.3,2)--(5.7,2)--(5.7,2.9)--(5.3,2.9)--(5.3,2)(5.5,2.9)--(5.5,4) 1311 | (5.3,2.45)--(5.7,2.45); 1312 | \draw(6,1.1)--(6,2.1)(5.8,2.1)--(6.2,2.1)--(6.2,3)--(5.8,3)--(5.8,2.1)(6,3)--(6,4.05) 1313 | (5.8,2.55)--(6.2,2.55); 1314 | \draw(6.5,1)--(6.5,2)(6.3,2)--(6.7,2)--(6.7,2.9)--(6.3,2.9)--(6.3,2)(6.5,2.9)--(6.5,4.1) 1315 | (6.3,2.45)--(6.7,2.45); 1316 | \draw(7,1.2)--(7,2)(6.8,2)--(7.2,2)--(7.2,2.9)--(6.8,2.9)--(6.8,2)(7,2.9)--(7,4) 1317 | (6.8,2.45)--(7.2,2.45); 1318 | \draw(7.5,1.2)--(7.5,2)(7.3,2)--(7.7,2)--(7.7,2.9)--(7.3,2.9)--(7.3,2)(7.5,2.9)--(7.5,4) 1319 | (7.3,2.45)--(7.7,2.45); 1320 | \draw(8,1.2)--(8,2.1)(7.8,2.1)--(8.2,2.1)--(8.2,3)--(7.8,3)--(7.8,2.1)(8,3)--(8,3.9) 1321 | (7.8,2.55)--(8.2,2.55); 1322 | \draw(8.5,1.3)--(8.5,2)(8.3,2)--(8.7,2)--(8.7,2.9)--(8.3,2.9)--(8.3,2)(8.5,2.9)--(8.5,4) 1323 | (8.3,2.45)--(8.7,2.45); 1324 | \draw(9,1.6)--(9,2.5)(8.8,2.5)--(9.2,2.5)--(9.2,3.4)--(8.8,3.4)--(8.8,2.5)(9,3.4)--(9,4.3) 1325 | (8.8,2.95)--(9.2,2.95); 1326 | \draw(9.5,1.3)--(9.5,2)(9.3,2)--(9.7,2)--(9.7,2.9)--(9.3,2.9)--(9.3,2)(9.5,2.9)--(9.5,4.2) 1327 | (9.3,2.45)--(9.7,2.45); 1328 | \draw(10,1.3)--(10,2)(9.8,2)--(10.2,2)--(10.2,2.9)--(9.8,2.9)--(9.8,2)(10,2.9)--(10,4.2) 1329 | (9.8,2.45)--(10.2,2.45); 1330 | \end{tikzpicture} 1331 | \caption{20天某产品的直径的箱线图}\label{fig:5.3.9} 1332 | \end{figure} 1333 | 1334 | \begin{xiti} 1335 | \item 在一本书上我们随机地检查了10页,发现每页上的错误数为 1336 | \[4\quad5\quad6\quad0\quad3\quad1\quad4\quad2\quad1\quad4\] 1337 | 试计算其样本均值、样本方差和样本标准差. 1338 | \item 证明: 对任意常数$c,d$,有 1339 | \[\sum_{i=1}^n(x_i-c)(y_i-d)=\sum_{i=1}^n(x_i-\bar x)(y_i-\bar y)+n(\bar x-c)(\bar y-d).\] 1340 | \item 设$x_1,\dotsc,x_n$和$y_1,\dotsc,y_n$是两组样本观测值,且有如下关系: $y_I=3x_i-4,i=1,\dotsc,n$,试求样本值$\bar x$和$\bar y$间的关系以及样本方差$s_x^2$和$s_y^2$间的关系. 1341 | \item 记$\bar x_n=\frac1n\sum_{i=1}^n x_i,s_n^2=\frac1{n-1}\sum_{i=1}^n(x_I-\bar x_n)^2,n=1,2,\dotsc$,证明: 1342 | \begin{align*} 1343 | \bar x_{n+1}&=\bar x_n+\frac1{n+1}(x_{n+1}-\bar x_n),\\ 1344 | s_{n+1}^2&=\frac{n-1}ns_n^2+\frac1{n+1}(x_{n+1}-\bar x_n)^2. 1345 | \end{align*} 1346 | \item 从同一总体中抽取二个容量分别为$n,m$的样本,样本均值分别为$\bar x_1,\bar x_2$,样本方差分别为$s_1^2,s_2^2$,将二组样本合并,其均值、方差分别为$\bar x,s^2$,证明: 1347 | \begin{align*} 1348 | \bar x&=\frac{n\bar x_1+m\bar x_2}{n+m},\\ 1349 | s^2&=\frac{(n-1)S_1^2+(m-1)s_2^2}{n+m-1}+\frac{nm(\bar x_1=\bar x_2)^2}{(n+m)(n+m+1)}. 1350 | \end{align*} 1351 | \item 设有容量为$n$的样本$A$, 它的样本均值为$\bar x_A$,样本标准差为$s_A$,样本极差为$R_A$,样本中位数为$m_A$.现对样本中每一个观测值施行如下变换 1352 | \[y=ax+b,\] 1353 | 如此得到样本$B$,试写出样本B的均值、标准差、极差和中位数. 1354 | \item 证明:容量为$2$的样本$x_1,x_2$的方差为 1355 | \[s^2=\frac12(x_1-x_2)^2,\] 1356 | \item 设$x_1,\dotsc,x_n$是来自$U(-1,1)$的样本,试求$E(\bar x)$和$\operatorname{Var}(\bar x)$. 1357 | \item 设总体二阶矩存在, $x_1,\dotsc,x_n$是样本,证明$x_i-\bar x$与$x_j-\bar x(i\ne j)$的相关系数为$-(n-1)^{-1}$.对此你能够给予解释吗? 1358 | \item 利用契贝晓夫不等式求抛均匀硬币多少次才能使正面朝上的频率落在$(0.4,0.6)$间的概率至少为0.9.如何才能更精确地计算这个次数?是多少? 1359 | \item 从指数总体$Exp(1)$抽取了40个样品,试求$\bar x$的渐近分布. 1360 | \item 设$x_1,\dotsc,x_{25}$是从均匀分布$U(0,5)$抽取的样本,试求样本均值$\bar x$的渐近分布. 1361 | \item 设$x_1,\dotsc,x_{20}$是从二点分布$b(1,p)$抽取的样本,试求样本均值$\bar x$的渐近分布. 1362 | \item 设$x_1,\dotsc,x_{8}$是从正态总体$N(10,9)$中抽取的样本,试求样本均值$\bar x$的标准差. 1363 | \item 切尾均值也是一个常用的反映样本数据的特征量,其想法是将数据的两端的值舍去,而用剩下的当中的值为计算样本均值,其计算公式是 1364 | \[\bar x_n=\frac{x_{([n\alpha]+1)}+x_{([n\alpha]+2)}+\dotsb+x_{(n-[n\alpha])}}{n-2[n\alpha]}, 1365 | \;\text{其中}\; 0<\alpha<1/2 \;\text{是切尾系数} , \] 1366 | $x_{(1)}\leq x_{(2)}\leq\dotsb\leq x_{(n)}$是有序样本.现我们在某高校采访了16名大学生,了解他们平时的学习情况,以下数据是大学生每周用于看电视的时间: 1367 | \[15\quad14\quad12\quad9\quad20\quad4\quad17\quad26\quad15\quad18\quad6\quad10\quad16 1368 | \quad15\quad5\quad8\] 1369 | 取$\alpha=1/16$,试计算其切尾均值. 1370 | \item 有一个分组样本如下:\\[2mm] 1371 | \begin{tabularx}{\textwidth}{YYY} 1372 | \toprule 1373 | \text{区间}&\text{组中值}&\text{频数}\\ 1374 | \midrule 1375 | (145,155)&150&4\\ 1376 | (155,165)&160&8\\ 1377 | (175,185)&180&2\\ 1378 | \bottomrule 1379 | \end{tabularx}\\[2mm] 1380 | 试求该分组样本的样本均值、样本标准差、样本偏度和样本峰度. 1381 | \item 检查四批产品,其批量与不合格品率如下:\\[2mm] 1382 | \begin{tabularx}{\textwidth}{YYY} 1383 | \toprule 1384 | \text{批号}&\text{批量}&\text{不合格品率}\\ 1385 | \midrule 1386 | 1&100&0.05\\ 1387 | 2&300&0.06\\ 1388 | 3&250&0.04\\ 1389 | 4&150&0.03\\ 1390 | \bottomrule 1391 | \end{tabularx}\\[2mm] 1392 | 试求这四批产品的总不合格品率. 1393 | \item 设总体以等概率取$1,2,3,4,5$,现从中抽取一个容量为4的样本,试分别求$x_{(1)}$和$x_{(4)}$的分布. 1394 | \item 设$x_1,\dotsc,x_{16}$是来自$N(8,4)$的样本,试求下列概率: 1395 | \begin{enumerate} 1396 | \item $P(x_{(16)}>10)$. 1397 | \item $P(x_{(1)}>5)$. 1398 | \end{enumerate} 1399 | \item 设总体为威布尔分布,其密度函数为 1400 | \[p(x;m,\eta)=\frac{mx^{m-1}}{\eta^m}\exp\left\{ -\left( \frac{x}{\eta} \right) ^m \right\},\quad x>0,m>0,\eta>0.\] 1401 | 现从中得到样本$x_1,\dotsc,x_n$, 证明$x_{(1)}$仍复从威布尔分布,并指出其参数. 1402 | \item 设总体密度函数为$p(x)=6x(1-x),00)$&$n$&$2n$\\ 1438 | $F=\frac{(y_1^2+\dotsb+y_m^2)/m}{(x_1^2+\dotsc+x_n^2)/n}$& 1439 | $p(y)=\frac{\Gamma\left(\frac{m+n}2\right)\left(\frac mn\right)^{m/2}} 1440 | {\Gamma\left(\frac m2\right)\Gamma\left(\frac n2\right)}y^{\frac m2-1} 1441 | \left(1+\frac mny\right)^{-\frac{m+n}2}$ 1442 | &\parbox{1.2cm}{$\begin{matrix}\frac{n}{n-2}\\(n>2)\end{matrix}$} 1443 | &$\begin{matrix}\frac{2n^2(m+n-2)}{m(n-2)^2(n-4)}\\(n>4)\end{matrix}$\\ 1444 | $t=\frac{y_1}{\sqrt{(x_1^2+\dotsc+x_n^2)/n}}$&\parbox{6.5cm}{ 1445 | $\begin{matrix}p(y)=\frac{\Gamma\left(\frac{n+1}2\right)} 1446 | {\sqrt{n\pi}\Gamma\left(\frac n2\right)}\left(1+\frac{y^2}n\right)^{-\frac{n+1}2}\\ 1447 | (-\infty2)\end{matrix}$\\ 1450 | \bottomrule 1451 | \end{tabularx} 1452 | \end{table} 1453 | 1454 | 下面我们将对它们逐个进行推导与说明. 1455 | \subsection{$\chi^2$分布(卡方分布)\label{ssec:5.4.1}} 1456 | \begin{definition}{}{5.4.1} 1457 | 设$X_1,X_2,\dotsc,X_n$独立同分布于标准正态分布$N(0,1)$,则$\chi^2=X_1^2+\dotsc+X_n^2$的分布称为自由度为$n$的$\chi^2$分布\index{C!$\chi^2$分布},记为$\chi^2\sim\chi^2(n)$. 1458 | \end{definition} 1459 | 1460 | 在第三章我们已经指出,若$X\sim N(0,1)$,则$X^2\sim Ga(1/2,1/2)$,根据伽玛分布的可加性立有$\chi^2\sim Ga(n/2,n/2)=\chi^2(n)$,由此可见, $\chi^2(n)$分布是伽玛分布的特例,故$\chi^2(n)$分布的密度函数为 1461 | \[p(y)=\frac{(1/2)^{\frac n2}}{\Gamma(n/2)}y^{\frac n2-1}\ee^{-\frac y2},\quad y>0,\] 1462 | 1463 | 该密度函数的图像是一个只取非负值的偏态分布,见图~\ref{fig:5.4.1},其期望等于自由度,方差等于2倍自由度,即$E\chi^2=n,\operatorname{Var}(\chi^2)=2n$. 1464 | \begin{figure}[!ht] 1465 | \centering 1466 | \begin{tikzpicture}[>=Stealth,semithick,xscale=0.45,yscale=30,samples=500] 1467 | \draw[->](0,0)node[below left]{$O$}--(22,0); 1468 | \foreach\x in{2,4,...,20}\draw(\x,0.002)--(\x,0)node[below]{\x}; 1469 | \draw[->](0,0)--(0,0.2); 1470 | \foreach\x in{0.02,0.04,0.06,0.08,0.1,0.12,0.14,0.16,0.18}\draw(0,\x)node[left]{\x}--(0.12,\x); 1471 | \draw[thick,domain=0:20]plot(\x,{(\x)*e^(-(\x)/2)/4}); 1472 | \draw(3.2,0.16)--(12,0.16)node[right=-2pt]{$n=4$}; 1473 | \draw[thick,dashed,domain=0:20]plot(\x,{(\x)^2*e^(-(\x)/2)/16}); 1474 | \draw[very thick,domain=0:8]plot(\x,{0.1*e^(-(\x-8)^2/14)}); 1475 | \draw[very thick,domain=8:20]plot(\x,{0.1*e^(-(\x-8)^2/40)}); 1476 | \draw(5.62,0.12)--(12,0.12)node[right=-2pt]{$n=6$}; 1477 | \draw(11.8,0.07)--(16,0.07)node[right=-2pt]{$n=10$}; 1478 | \end{tikzpicture} 1479 | \caption{$\chi^2(n)$分布的密度函数}\label{fig:5.4.1} 1480 | \end{figure} 1481 | 1482 | 1483 | 当随机变量$\chi^2\sim\chi^2(n)$时,对给定$\alpha(0<\alpha<1)$,称满足$P(\chi^2\leq\chi_{1-\alpha}^2(n))=1-\alpha$的$\chi_{1-\alpha}^2$是自由度为$n$的卡方分布的$1-\alpha$分位数\index{F!分位数}.分位数$\chi_{1-\alpha}^2(n)$可以从附表3中查到.譬如$n=10,\alpha=0.05$,那么从附表3上查得 1484 | \[\chi_{1-0.05}^2(10)=\chi_{0.95}^2(10)=18.31.\] 1485 | \subsection{$F$分布\label{ssec:5.4.2}} 1486 | \begin{definition}{}{} 1487 | 设$X_1\sim\chi^2(m),X_2\sim\chi^2(n),X_1$与$X_2$独立,则称$F+\frac{X_1/m}{X_2/n}$的分布是自由度为$m$与$n$的$F$分布\index{F!$F$分布},记为$F\sim F(m,n)$,其中$m$称为分子自由度, $n$称为分母自由度. 1488 | \end{definition} 1489 | 下面分两步来导出$F$分布的密度函数. 1490 | 1491 | 首先我们导出$Z=\frac{X_1}{X_2}$的密度函数,若记$p_1(x)$和$p_2(x)$分别为$\chi^2(m)$和$\chi^2(n)$的密度函数,根据独立随机变量商的分布的密度函数公式~\eqref{eq:3.3.22}. $Z$的密度函数为 1492 | \begin{align*} 1493 | p_Z(z)&=\int_0^{=\infty}x_2p_1(zx_2)p_2(x_2)\dd x_2\\ 1494 | &=\frac{z^{\frac{m}{2}-1}}{\Gamma \left( \frac{m}{2} \right) \Gamma \left( \frac{n}{2} \right) 2^{\frac{m+n}{2}}}\int_0^{+\infty}x_2^{\frac{m+n}2-1}\ee^{-\frac{x_2}2(1+z)}\dd x_2. 1495 | \end{align*} 1496 | 运用变换$u=\frac{x_2}2(1+z)$,可得 1497 | \[p_Z(z)=\frac{z^{\frac{m}{2}-1}\left( 1+z \right) ^{\frac{m+n}{2}}}{\Gamma \left( \frac{m}{2} \right) \Gamma \left( \frac{n}{2} \right)}\int_0^{+\infty}u^{\frac{m+n}2-1}\ee^{-u}\dd u.\] 1498 | 最后的定积分为伽马函数$\Gamma\left(\frac{m+n}2\right)$,从而 1499 | \[ 1500 | p_Z\left( z \right) =\frac{\Gamma \left( \frac{m+n}{2} \right)}{\Gamma \left( \frac{m}{2} \right) \Gamma \left( \frac{n}{2} \right)}z^{\frac{m}{2}-1}\left( 1+z \right) ^{-\frac{m+n}{2}},\quad z>0. 1501 | \] 1502 | 第二步,我们导出$F=\frac nm Z$的密度函数,对$y>0$,有 1503 | \begin{align*} 1504 | p_F\left( y \right) &=p_Z\left( \frac{m}{n}y \right) \cdot \frac{m}{n}\\ 1505 | &=\frac{\Gamma \left( \frac{m+n}{2} \right)}{\Gamma \left( \frac{m}{2} \right) \Gamma \left( \frac{n}{2} \right)}\left( \frac{m}{n}y \right) ^{\frac{m}{2}-1}\left( 1+\frac{m}{n}y \right) ^{-\frac{m+n}{2}}\cdot \frac{m}{n}\\ 1506 | &=\frac{\Gamma \left( \frac{m+n}{2} \right) \left( \frac{m}{n} \right) ^{\frac{m}{2}}}{\Gamma \left( \frac{m}{2} \right) \Gamma \left( \frac{n}{2} \right)}y^{\frac{m}{2}-1}\left( 1+\frac{m}{n}y \right) ^{-\frac{m+n}{2}}. 1507 | \end{align*} 1508 | 这就是自由度为$m$与$n$的$F$分布的密度函数.该密度函数的图像是一个只取非负值的偏态分布(见图~\ref{fig:5.4.2} ) 1509 | \begin{figure} 1510 | \centering 1511 | \begin{tikzpicture}[xscale=1.5,yscale=5,>=Stealth,domain=0:4,samples=500] 1512 | \draw[->](0,0)node[below left]{$O$}--(4.5,0);\draw[->](0,0)--(0,0.9); 1513 | \foreach \x in{0.5,1,...,4}\draw(\x,0.01)--(\x,0)node[below]{$\x$}; 1514 | \foreach \x in{0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8}\draw(0.05,\x)--(0,\x)node[left]{$\x$}; 1515 | \draw[dashed]plot (\x,{12*(\x)/(1+4*(\x))^(5/2)}); 1516 | \draw plot (\x,{6*(\x)/(1+\x)^4}); 1517 | \draw[thick,dashed]plot (\x,{4.8*(\x)/(1+0.4*(\x))^7}); 1518 | \draw[thick,domain=0.05:4]plot (\x,{4*(\x)/(1+0.04*\x)^52+0.02}); 1519 | \draw[thick](2.5,.8)--(2.8,.8)node[right=-2pt]{$F(4,4000)$}; 1520 | \draw[thick,dashed](2.5,.72)--(2.8,.72)node[right=-2pt]{$F(4,10)$}; 1521 | \draw(2.5,.64)--(2.8,.64)node[right=-2pt]{$F(4,4)$}; 1522 | \draw[dashed](2.5,.56)--(2.8,.56)node[right=-2pt]{$F(4,1)$}; 1523 | \end{tikzpicture} 1524 | \caption{$F$分布的密度函数}\label{fig:5.4.2} 1525 | \end{figure} 1526 | 1527 | 当随机变量$F\sim F(n,m)$时,对给定$\alpha(0<\alpha<1)$,称满足$P(F\leq F_{1-\alpha}(m,n))=1-\alpha$的$F_{1-\alpha}(m,n)$是自由度为$m$与$n$的$F$分布的$1-\alpha$分位数. 1528 | 1529 | 由$F$分布的构造知,若$F\sim F(m,n)$,则有$1/F\sim F(n,m)$,故对给定$\alpha(0<\alpha<1)$, 1530 | \[ 1531 | \alpha =P\left( \frac{1}{F}=Stealth,domain=-6:6,samples=500] 1570 | \draw[->](-6,0)--(7,0);\draw[->](-6,0)--(-6,0.45); 1571 | \foreach \x in{-6,-4,...,6}\draw(\x,0.005)--(\x,0)node[below]{$\x$}; 1572 | \foreach \x in{0,0.05,0.1,0.15,0.2,0.25,0.3,0.35,0.4}\draw(-5.88,\x)--(-6,\x)node[left]{$\x$}; 1573 | \draw[thick]plot(\x,{0.396*e^(-(\x)^2/2)+0.004}); 1574 | \draw plot(\x,{0.375*(1+(\x)^2/4)^(-5/2)}); 1575 | \draw[thick](3,0.35)--(4,0.35)node[right=-2pt]{$N(0,1)$}; 1576 | \draw(3,0.32)--(4,0.32)node[right=-2pt]{$t(4)$}; 1577 | \end{tikzpicture} 1578 | \caption{$t$分布与$N(0,1)$的密度函数}\label{fig:5.4.3} 1579 | \end{figure} 1580 | \begin{itemize} 1581 | \item 自由度为$1$的$t$分布就是标准柯西分布,它的均值不存在; 1582 | \item $n>1$时, $t$分布的数学期望存在切尾$0$; 1583 | \item $n>2$时, $t$分布的方程存在,且为$n/(n-2)$; 1584 | \item 当自由度较大(如$n\geq30$时), $t$分布可以用$N(0,1)$分布近似. 1585 | \end{itemize} 1586 | 1587 | $t$分布是统计学中的一类重要分布,它与标准正态分布的微小差别是由英国统计学家哥塞特(Gosset)发现的.哥塞特年轻时在牛津大学学习数学和化学, 1899年开始在一家酿酒厂担任酿酒化学技师,从事试验和数据分析工作. 由于哥塞特接触的样本容量都较小,只有$4,5$过大量实验数据的积累,哥塞特发现$t=\sqrt{n-1}(\bar x-\mu)/s$的分布与传统认为的$N(0,1)$分布并不同,特别是尾部概率相差较大,表~\ref{tab:5.4.2} 列出了标准正态分布$N(0,1)$和自由度为4的$t$分布的一些尾部概率. 1588 | \begin{table}[!ht] 1589 | \centering 1590 | \caption{$N(0,1)$和$t(4)$的尾部概率$P(|X|\geq c)$}\label{tab:5.4.2} 1591 | \begin{tabularx}{\textwidth}{YYYYY} 1592 | \toprule 1593 | &c=2&c=2.5&c=3&c=3.5\\ 1594 | \midrule 1595 | X\sim N(0,1)&0.0455&0.0124&0.0027&0.000465\\ 1596 | X\sim t(4)&0.1161&0.0668&0.0399&0.0249\\ 1597 | \bottomrule 1598 | \end{tabularx} 1599 | \end{table} 1600 | 1601 | 由此,哥塞特怀疑是否有另一个分布族存在,通过深入研究,哥塞特于1908年``Studen''的笔名发表了此项研究结果,故后人也称$t$分布为学生氏分布. $t$分布的发现在统计学史上具有划时代的意义,打破了正态分布一统天下的局面,开创了小样本统计推断的新纪元. 1602 | 1603 | 当随机变量$t\sim t(n)$,称满足$P(t\leq t_{1-\alpha}(n))=1-\alpha$的$t_{1-\alpha}(n)$是自由度为$n$的$t$分布的$1-\alpha$分位数. 分位数$t_{1-\alpha}(n)$可以从附表3中查到.譬如$n=10,\alpha=0.05$,那么从附表4上查得$t_{1-0.05}(10)=t_{0.95}(10)=1.812$. 1604 | 1605 | 由于$t$分布的密度函数关于0对称,故其分位数间有如下关系 1606 | \begin{equation}\label{eq:5.4.2} 1607 | t_\alpha(n)=-t_{1-\alpha}(n). 1608 | \end{equation} 1609 | 譬如, $t_{0.05}(10)=-t_{0.95}(10)=-1.812$. 1610 | \subsection{一些重要结论} 1611 | 来自一般正态总体的样本均值$x$和样本方差$s_2$的抽样分布是应用最广的抽样分布,下面我们加以介绍. 1612 | \begin{theorem}{}{5.4.1} 1613 | 设$x_1,\dotsc,x_n$是来自正态总体$N(\mu,\sigma^2)$的样本,其样本均值和样本方差分别为 1614 | \[\bar x=\frac1n\sum_{i=1}^nx_i\;\text{和}\;s^2=\frac1{n-1}\sum_{i=1}^n(x_i-\bar x)^2,\] 1615 | 则有 1616 | \begin{enumerate}[label=(\arabic*)] 1617 | \item $\bar x$相互独立; 1618 | \item $\bar x\sim N(\mu,\sigma^2/n)$; 1619 | \item $\frac{(n-1)\cdot s^2}{\sigma^2}=\chi^2(n-1)$. 1620 | \end{enumerate} 1621 | \end{theorem} 1622 | \begin{proof} 1623 | 记$\bm X=(x_1,\dotsc,x_n)\TT$,则有 1624 | \[E\bm X=\begin{pmatrix} 1625 | \mu\vdots\mu 1626 | \end{pmatrix},\operatorname{\bm X}=\sigma^2 \bm I.\] 1627 | \end{proof} 1628 | 取一个$n$维正交矩阵$\bm A$,其第一行的每一个元素均为$1/\sqrt n$,如 1629 | \[\bm A=\begin{pmatrix} 1630 | \frac1{\sqrt n}&\frac{1}{\sqrt n}&\frac1{\sqrt n}&\cdots&\frac1{\sqrt n}\\ 1631 | \frac1{\sqrt{2\cdot1}}&-\frac1{\sqrt{2\cdot1}}&0&\cdots&0\\ 1632 | \frac1{\sqrt{3\cdot2}}&\frac1{\sqrt{3\cdot2}}&-\frac2{\sqrt{3\cdot2}}&\cdots&0\\ 1633 | \vdots&\vdots&\vdots&\ddots&\vdots\\ 1634 | \frac1{\sqrt{n(n-1)}}&\frac1{\sqrt{n(n-1)}}&\frac1{\sqrt{n(n-1)}}&\cdots& 1635 | -\frac1{\sqrt{n(n-1)}} 1636 | \end{pmatrix}\] 1637 | 令$\bm Y=\bm A\bm X$,则由多维正态分布的性质知$\bm Y$仍服从$n$维正态分布,其均值和方差为 1638 | \begin{align*} 1639 | E\bm Y&\bm A\cdot E\bm X=\begin{pmatrix} 1640 | \sqrt n\mu\\0\\\vdots\\0 1641 | \end{pmatrix},\\ 1642 | \operatorname{Var}(\bm Y)&=\bm A\cdot\operatorname(\bm X\cdot\bm A\TT=\bm A\cdot\sigma^2\bm I\cdot \bm A\TT\\ 1643 | &=\sigma^2\bm A\bm A\TT=\sigma^2\bm I, 1644 | \end{align*} 1645 | 由此, $\bm Y=(y_1,\dotsc,y_n)\TT$的各个分量相互独立,且都服从正态分布,其方差均为$\sigma^2$,而均值并不完全相同, $y_1$的均值为$\sqrt n\mu,y_2,\dotsc,y_n$的均值为$0$.注意到$\bar x=\frac1{\sqrt n}y_1$,这就证明了结论(2);由于$\sum_{i=1}^ny_i^2=\bm Y\TT\bm Y=\bm X\TT\bm A\TT\bm A\bm X=\sum_{i=1}^nx_i^2$,故而 1646 | \begin{align*} 1647 | (n-1)\cdot s^2&=\sum_{i=1}^n(x_i-\bar x)^2=\sum_{i=1}^nx_i^2-(\sqrt n\bar x)^2\\ 1648 | &=\sum_{i=1}^ny_i^2-y_1^2=\sum_{i=2}^ny_i^2, 1649 | \end{align*} 1650 | 这证明结论(1);由于$y_2,\dotsc,y_n$独立同分布于$N(0,\sigma^2)$,于是 1651 | \begin{equation}\label{eq:5.4.3} 1652 | \frac{(n-1)\cdot s^2}{\sigma^2}=\sum_{i=2}^n\left(\frac{y_i}\sigma\right)^2\sim\chi^2(n-1), 1653 | \end{equation} 1654 | 定理证明完成. 1655 | \begin{corollary}{}{5.4.1} 1656 | 在定理~\ref{thm:5.4.1} 的记号下,有 1657 | \begin{equation}\label{eq:5.4.4} 1658 | t=\frac{\sqrt n(\bar x-\mu)}s\sim t(n-1). 1659 | \end{equation} 1660 | \end{corollary} 1661 | \begin{proof} 1662 | 由定理~\ref{thm:5.4.1}(2)可以推出 1663 | \begin{equation}\label{eq:5.4.5} 1664 | \frac{\bar x-\mu}{\sigma/\sqrt n}\sim N(0,1), 1665 | \end{equation} 1666 | 将~\ref{eq:5.4.4} 左端改写为 1667 | \begin{equation}\label{eq:5.4.6} 1668 | \frac{\sqrt{n}\left( \bar{x}-\mu \right)}{\sigma /\sqrt{n}}=\frac{\frac{\bar{x}-\mu}{\sigma /\sqrt{n}}}{\sqrt{\frac{\left( n-1 \right) \cdot s^2/\sigma ^2}{n-1}}}. 1669 | \end{equation} 1670 | 由于分子是标准正态变量,分母的根号里是自由度为$n-1$的$t$变量除以它的自由度,且分子与分母相互独立,由$t$分布定义可知$t\sim t(n-1)$,推论证完. 1671 | \end{proof} 1672 | \begin{corollary}{}{5.4.2} 1673 | 设$x_1,\dotsc,x_m$是来自$N(\mu_1,\sigma_1^2)$的样本, $y_1,\dotsc,y_n$是来自$N(\mu_2,\sigma_2^2)$的样本,且此两样本相互独立,记 1674 | \[s_x^2=\frac1{m-1}\sum_{i=1}^m(x_i-\bar x)^2,\quad s_y^2=\frac1{n-1}\sum_{i=1}^n 1675 | (y_i-\bar y)^2,\] 1676 | 其中 1677 | \[\bar x=\frac1m\sum_{i=1}^m x_i,\quad \bar y=\frac1n\sum_{i=1}^ny_i,\] 1678 | 则有 1679 | \begin{equation}\label{eq5.4.7} 1680 | F=\frac{s_x^2/\sigma_1^2}{s_y^2/\sigma_2^2}\sim F(m-1,n-1). 1681 | \end{equation} 1682 | 特别,若$\sigma_1^2=\sigma_2^2$,则$F=s_x^2/s_y^2\sim F(m-1,n-1)$. 1683 | \end{corollary} 1684 | \begin{proof} 1685 | 由两样本独立可知, $s_x^2$与$s_y^2$相互独立,且 1686 | \[\frac{(m-1)s_x^2}{\sigma_1^2}\sim\chi^2(m-1),\quad 1687 | \frac{(n-1)s_y^2}{\sigma_1^2}\sim\chi^2(n-1).\] 1688 | 由$F$分布定义可知$F\sim F(m-1,n-1)$. 1689 | \end{proof} 1690 | \begin{corollary}{}{5.4.3} 1691 | 在推论~\ref{cor:5.4.2}的记号下,设$\sigma_1^2=\sigma_2^2=\sigma^2$,并记 1692 | \[ 1693 | s_{w}^{2}=\frac{\left( m-1 \right) s_{x}^{2}+\left( n-1 \right) s_{y}^{2}}{m+n-2}=\frac{\sum_{i=1}^m{\left( x_i-\bar{x} \right) ^2}+\sum_{i=1}^n{\left( y_i-\bar{y} \right) ^2}}{m+n-2}, 1694 | \] 1695 | 则 1696 | \begin{equation}\label{eq:5.4.8} 1697 | \frac{\left( \bar{x}-\bar{y} \right) -\left( \mu _1-\mu _2 \right)}{s_w\sqrt{\frac{1}{m}+\frac{1}{n}}}\sim t\left( m+n-2 \right). 1698 | \end{equation} 1699 | \end{corollary} 1700 | \begin{proof} 1701 | 由$\bar x\sim N(\mu_1,\sigma^2/m),\bar y\sim N(\mu_2,\sigma^2/n),\bar x$与$\bar y$独立,故有 1702 | \[\bar x-\bar y\sim N\left(\mu_1-\mu_2,\left(\frac1m+\frac1n\right)\sigma^2\right),\] 1703 | 所以 1704 | \begin{equation}\label{eq:5.4.9} 1705 | \frac{\left( \bar{x}-\bar{y} \right) -\left( \mu _1-\mu _2 \right)}{\sigma \sqrt{\frac{1}{m}+\frac{1}{n}}}\sim N\left( \left( ,1 \right) \right). 1706 | \end{equation} 1707 | 由定理~\ref{eq:5.4.1} 知, $\frac{(m-1)s_x^2}{\sigma^2}\sim\chi^2(m-1), 1708 | \frac{(n-1)s_y^2}{\sigma^2}\sim\chi^2(n-1)$,且它们相互独立,则由可加性知 1709 | \begin{equation}\label{eq:5.4.10} 1710 | \frac{\left( m+n-2 \right) s_{w}^{2}}{\sigma ^2}=\frac{\left( m-1 \right) s_{x}^{2}+\left( n-1 \right) s_{y}^{2}}{\sigma ^2}\sim \chi ^2\left( m+n-2 \right). 1711 | \end{equation} 1712 | 由于$\bar x-\bar y$与$s_w^2$相互独立,根据$t$分布的定义即可得到~\eqref{eq:5.4.8}. 1713 | \end{proof} 1714 | \begin{xiti} 1715 | \item 在总体$N(7.6.4)$中抽取样本容量为$n$的样本,如果要求样本均值落在$(5.6,9.6)$内的概率不小于$0.95$,则$n$至少为多少? 1716 | \item 设$x_1,\dotsc,x_n$是来自$N(\mu,25)$的样本,问$n$多大时才能使得$P(|\bar x-\mu|<1)\ge10.95$成立? 1717 | \item 由正态总体$N(100,4)$抽取二个独立样本,样本均值分别为$\bar x,\bar y$,样本容量分别为$15,20$,试求$P(|\bar x-\bar y|>0.2)$. 1718 | \item 由正态总体$N(\mu,\sigma^2)$抽取容量为$20$的样本,试求$P(10\sigma^2\leq\sum_{i=1}^{20}(x_i-\mu)^2\leq30\sigma^2)$. 1719 | \item 设$x_1,\dotsc,x_{16}$是来自$N(\mu,\sigma^2)$的样本,经计算$\bar x=9,s^2=5.32$,试求$P(|\bar x-\mu|<0.6)$. 1720 | \item 设$x_1,\dotsc,x_n$是来自$N(\mu,1)$的样本,试确定最小的常数$c$,使得对任意的$\mu\geq0$,有$P(|\bar x|k \right) =0.05. 1726 | \] 1727 | \item 设$x_1,\dotsc,x_n$是来自$N(\mu_1,\sigma^2)$的样本, $y,\dotsc,y_m$是来自$N(\mu_2,\sigma^2)$的样本, $c,d$是任意两个不为0的常数,证明: 1728 | \[ 1729 | t=\frac{c\left( \bar{x}-\mu _1 \right) +d\left( \bar{y}-\mu _2 \right)}{s_w\sqrt{\frac{c^2}{n}+\frac{d^2}{m}}}\sim t\left( n+m-2 \right), 1730 | \] 1731 | 其中$s_{w}^{2}=\frac{\left( n-1 \right) s_{x}^{2}+\left( m-1 \right) s_{y}^{2}}{n+m-2}$. 1732 | \item 设$x_1,\dotsc,x_n,x_{n+1}$是来自$N(\mu,\sigma^2)$的样本, $\bar x_n=\frac1n\sum_{i=1}^nx_i,s_n^2=\frac1{n-1}\sum_{i=1}^n(x_i-\bar x_n)^2$,试求常数$c$使得$t_c=c\frac{x_{n+1}-\bar x_n}{s_n}$服从$t$分布,并指出分布的自由度. 1733 | \item 设从两个方差相等的正态总体中分别抽取容量为$15,20$的样本,其样本方差分别为$s_1^2,s_2^2$,试求$P(s_1^2/s_2^2>2)$. 1734 | \end{xiti} 1735 | \section{充分统计量\label{sec:5.5}} 1736 | \subsection{充分性的概念\label{ssec:5.5.1}} 1737 | 统计量是把样本中的信息进行加工处理的结果,它可简化数据,便于统计推断.人们自然希望这种加工处理不损失原样本中的信息.不损失信息的统计量就是充分统计量.下面``不损失信息''给出明确的数学含义. 1738 | \begin{example}\label{exam:5.5.1} 1739 | 为研究某个运动员的打靶命中率$\theta$,我们对该运动员进行测试,观测其10次,发现除第三、六次未命中外,其余8次都命中,这样的观测结果包含了两种信息: 1740 | \begin{enumerate} 1741 | \item[(1)] 打靶10次命中8次; 1742 | \item[(2)] 2次不命中分别出现在第3次和第6次打靶上. 1743 | \end{enumerate} 1744 | 1745 | 第二种信息对了解该运动员的命中率是没有什么帮助的: 设想我们对该运动员的观测结果是第一、二次未命中,其余都命中,虽然样本观测值是不一样的,但它们提供的关于命中率$\theta$的信息是一样的.因此,在绝大多数实际问题中,试验编号信息常常对了解总体或其参数是无关紧要的,所以人们通常在试验前对样品进行随机编号. 1746 | \end{example} 1747 | 1748 | 一般地,设我们对该运动员进行$n$次观测,得到$x_1,\dotsc,x_n$每个$x_j$取值非0即1,命中为1,不命中为0,令 1749 | $T=x_1+\dotsc+x_n,T$为观测到的命中次数,在这种场合仅仅记录使用$T$不会丢失任何与命中率$\theta$有关的信息,统计上将这种``样本加工不损失信''称为``充分性''\index{C!充分性}. 1750 | 1751 | 上面我们直观地给出了关于``充分性''的概念,接下来我们从概率层面对之进行分析.我们知道,样本$ X=(x_1,\dotsc,x_n)$有一个样本分布$F_\theta( X)$, 这个分布包含了样本中一切有关$\theta$的信息.统计量$T=T(x_1,\dotsc,x_n)$也有一个抽样分布$F_\theta^T(t)$,当我们期望用统计量$T$代替原始样本$X$并且不损失任何有关$\theta$的信息时,也就是期望抽样分布$F_\theta^T(t)$像$F_\theta(X)$一样概括了有关$\theta$的一切信息.换言之,我们考察在统计量$T$的取值为$t$的情况下样本$X$的条件分布$F_\theta(X|T=t)$,可能有两种情况: 1752 | \begin{itemize} 1753 | \item $F_\theta(X|T=t)$依赖于参数$\theta$,此条件分布仍含有$\theta$的信息; 1754 | \item $F_\theta(X|T=t)$不依赖于参数$\theta$,此条件分布已不含有$\theta$的信息. 1755 | \end{itemize} 1756 | 后者表明,条件``$T=t$''的出现使得从样本分布$F_\theta(X)$到条件分布$F_\theta(X|T=t)$,有关$\theta$的信息消失了,这说明有关$\theta$的信息都含在统计量$T$之中.当已知统计量$T$的取值之后,也就知道了样本中关于$\theta$的所有信息,这正是统计量具有充分性的含义. 1757 | \begin{example}\label{exam:5.5.2} 1758 | 设总体为二点分布$b(1,\theta),X_1,\dotsc,X_n$为样本,令$T=X_1+\dotsb+X_n$,则在给定$T$的取值后,对任意一组$x_1,\dotsc,x_n\bigl(\sum_{i=1}^nx_i=t\bigr)$,有 1759 | \begin{align*} 1760 | P(X_1=x_1,\dotsc,X_n=x_n|T=t)&=\frac{P\bigl(X_1=x_1,\dotsc,X_{n-1}=x_{n-1},X_n 1761 | =t-\sum_{i=1}^{n-1}x_i\bigr)}{P\bigl(\sum_{i=1}^nX_i=t\bigr)}\\ 1762 | &=\frac{\prod_{i=1}^{n-1}P(X_i=x_i)\cdot P\bigl(X_n=t-\sum_{i=1}^{n-1}x_i\bigr)} 1763 | {\binom nt\theta^t(1-\theta)^{n-t}}\\ 1764 | &=\frac{\prod_{i=1}^{n-1}\theta^{x_i}(1-\theta)^{1-x_i}\cdot\theta^{t-\sum_{i=1}^{n-1}x_i} 1765 | (1-\theta)^{1-t+\sum_{i=1}^{n-1}x_i}}{\binom nt\theta^t(1-\theta)^{n-t}}\\ 1766 | &=\frac{\theta^t(1-\theta)^{n-t}}{\binom nt\theta^t(1-\theta)^{n-t}}=\frac1{\binom nt}, 1767 | \end{align*} 1768 | 该条件分布与$\theta$无关.若令$S=X_1+X_2(n>2)$,由于$S$只是用了前面两个样品观测值,显然没有包含样本中所有关于$\theta$的信息,在给定$S$的取值$S=s$后,对任意的一组$x_1,\dotsc,x_n(x_1+x_2=s)$,有 1769 | \begin{align*} 1770 | P(X_1=x_1,\dotsc,X_n=x_n|S=s)&=\frac{P(X_1=x_1,X_2=s-x_1,X_3=x_3,\dotsc,X_n=x_n)}{P(X_1+X_2=s)}\\ 1771 | &=\frac{\theta^{1+\sum_{i=3}^n}(1-\theta)^{n-s-\sum_{i=3}^nx_i}}{\binom 2s\theta^s(1-\theta)^{2-s}} 1772 | =\frac{\theta^{\sum_{i=3}^nx_i}(1-\theta)^{n-2-\sum_{i=3}^nx_i}}{\binom2s}. 1773 | \end{align*} 1774 | 这个分布依赖于未知参数$\theta$, 这说明样本中有关0的信息没有完全包含在统计量$S$中. 1775 | \end{example} 1776 | 1777 | 从上例可以直观地看出,用条件分布与未知参数无关来表示统计量不损失样本中有价值的信息是妥当的.由此可给出充分统计量的定义. 1778 | \begin{definition}{}{5.5.1} 1779 | 设$x_1,\dotsc,x_n$是来自某个总体的样本,总体分布函数为$F(x;\theta)$,统计量$T=T(x_1,\dotsc,x_n)$称为$\theta$的 \textbf{充分统计量}\index{C!充分统计量},如果在给定$T$的取值后, $x_1,\dotsc,x_n$的条件分布与$\theta$无关. 1780 | \end{definition} 1781 | 1782 | 应用中条件分布可用条件分布列或条件密度函数来表示. 1783 | \begin{example}\label{exam:5.5.2} 1784 | 设$x_1,\dotsc,x_n$是来自$N(\mu,1)$的样本, $T=\bar x$,则$T\sim N(\mu,1/n)$,易计算 1785 | \begin{align*} 1786 | p_\mu(x_1,\dotsc,x_N|T=t)&=\frac{p_\mu(x_1,\dotsc,x_n)}{p_\mu(t)} 1787 | =\frac{(2\pi)^{-1/2}\exp\left\{-\frac12\sum_{i=1}^n(x_i-\mu)^2\right\}} 1788 | {(2\pi/n)^{-1/2}\exp\left\{-\frac n2(t-\mu)^2\right\}}\\ 1789 | &=\sqrt n(2\pi)^{(n-1)/2}\exp\left\{-\frac12\sum_{i=1}^n(x_i-t)^2\right\}, 1790 | \end{align*} 1791 | 该分布与$\mu$无关,这说明$\bar x$是$\mu$的充分统计量.其中最后一个等式成立是因为有如下的平方和分解: 1792 | \[\sum_{i=1}^n(x_i-\mu)^2=\sum_{i=1}^n(x_i-t)^2+n(t-\mu)^2.\] 1793 | \end{example} 1794 | \subsection{因子分解定理\label{ssec:5.5.2}} 1795 | 在统计学中有一个基本原则: 在充分统计量存在场合,任何统计推断都可以基于充分统计量进行,这可以简化统计推断的程序,通常将该原则称为充分性原则.然而在一般场合直接由定义~\ref{def:5,5.1} 出发验证一个统计量是充分的是困难的,因为条件分布的计算通常不那么容易.幸运的是,我们有一个简单的办法判断一个统计量是否充分,这就是下面的\textbf{因子分解定理},它由统计学家奈曼(Neyman)给出.为简便起见,我们引入一个在两种分布类型通用的概念—概率函数. $f(x)$称为随机变量$X$的概率函数: 在连续型场合, $f(x)$表示$X$的概率密度函数;在离散型场合,$f(x)$表示$X$的概率分布列. 1796 | \begin{theorem}{}{5.5.1} 1797 | 设总体概率函数为$f(x;\theta),X_1,\dotsc,X_n$为样本,则$T=T(X_1,\dotsc,X_n)$为充分统计量的充分必要条件是: 存在两个函数$g(t,\theta)$和$h(x_1,\dotsc,x_n)$使得对任意的$\theta$和任一组观测值$x_1,\dotsc,x_n$,有 1798 | \begin{equation}\label{eq:5.5.1} 1799 | f(x_1,\dotsc,x_n;\theta)=g\big(T(x_1,\dotsc,x_n)\big)h(x_1,\dotsc,x_n), 1800 | \end{equation} 1801 | 其中$g(t,\theta)$是通过统计量$T$的取值而依赖于样本的. 1802 | \end{theorem} 1803 | \begin{proof} 1804 | 一般性结果的证明超出本课程范围,此处我们将给出离散型随机变量下的证明,此时, $f(x_1,\dotsc,x_n)=P(X_1=x_1,\dotsc,X_n=x_n;\theta)$. 1805 | 1806 | 先证必要性.设$T$是充分统计量,则在$T=t$下, $P(X_1=x_1,\dotsc,X_n=x_n|T=t)$与$\theta$无关,记为$h(x_1,\dotsc,x_n)$或$h(\bm X)$,令$A(t)=\{\bm X:T(\bm X)=t\}$,当$\bm X\in A(t)$时有 1807 | \[\{T=t\}\supset\{X_1=x_1,\dotsc,X_n=x_n\},\] 1808 | 故 1809 | \begin{align*} 1810 | P(X_1=x_1,\dotsc,X_n&=x_n;\theta)=P(X_1=x_1,\dotsc,X_n=x_n,T=t;\theta)\\ 1811 | &=P(X_1=x_1,\dotsc,X_n=x_n|T=t)P(T=t;\theta)\\ 1812 | =h(x_1,\dotsc,x_n)g(t,\theta), 1813 | \end{align*} 1814 | 其中$g(t,\theta)=P(T=t;\theta)$,而$h(\bm X)=P(X_1=x_1,\dotsc,X_n=x_n|T=t)$与$\theta$无关,必要性得证. 1815 | 1816 | 对充分性,由于 1817 | \begin{align*} 1818 | P(T=t;\theta)&=\sum_{\{(x_1,\dotsc,x_n):T(x_1,\dotsc,x_n)=t\}}P(X_1=x_1,\dotsc,X_n=x_n;\theta)\\ 1819 | &=\sum_{\{(x_1,\dotsc,x_n):T(x_1,\dotsc,x_n)=t\}}g(t,\theta)h(x_1,\dotsc,x_n), 1820 | \end{align*} 1821 | 对任给$\bm X=(x_1,\dotsc,x_n)$和$t$,满足$\bm X\in A(t)$,有 1822 | \begin{align*} 1823 | P(X_1=x_1,\dotsc,X_n=x_n|T=t)&=\frac{P(X_1=x_1,\dotsc,X_n=x_n,T=t;\theta)}{P(T=t;\theta)}\\ 1824 | &=\frac{P(X_1=x_1,\dotsc,X_n=x_n;\theta)}{P(T=t;\theta)}\\ 1825 | &=\frac{g(t,\theta)h(x_1,\dotsc,x_n)}{g(t,\theta)\sum_{\{(y_1,\dotsc,y_n): 1826 | T(y_1,\dotsc,y_n)=t\}}h(y_1,\dotsc,y_n)}\\ 1827 | &=\frac{h(x_1,\dotsc,x_n)}{\sum_{\{(y_1,\dotsc,y_n):T(y_1,\dotsc,y_n)=t\}}h(y_1,\dotsc,y_n)}, 1828 | \end{align*} 1829 | 该分布与$\theta$无关,这证明了充分性. 1830 | \end{proof} 1831 | \begin{example}\label{exam:5.5.4} 1832 | 设$x_1,\dotsc,x_n$是取自总体$U(0,\theta)$的样本,即总体的密度函数为 1833 | \[p(x;\theta)=\begin{cases} 1834 | 1/\theta,*00$,所以我们将上式改写为 1843 | \[p(x_1;\theta)\dotsm p(x_n;\theta)=(1/\theta)^nI_{\{x_{(n)}<\theta\}},\] 1844 | 取$T=x_{(n)}$,并令$g(t,\theta)=(1/\theta)^nI_{t<\theta},h(\bm X)=1$,由因子分解定理知$T=x_{(n)}$是$\theta$的充分统计量. 1845 | \end{example} 1846 | \begin{example} 1847 | 设$x_1,\dotsc,x_n$是取自总体$N(\mu,\sigma^2)$的样本, $\theta=(\mu,\sigma^2)$是未知的,则联合密度函数为 1848 | \begin{align*} 1849 | P(x_1,\dotsc,x_n;\theta)&=(2\pi\sigma^2)^{-n/2}\exp\left\{-\frac1{2\sigma^2}\sum_{i=1}^n 1850 | (x_i-\mu)^2\right\}\\ 1851 | &=(2\pi\sigma^2)^{_n/2}\exp\left\{-\frac{n\mu^2}{2\sigma^2}\right\} 1852 | \exp\left\{-\frac1{2\sigma^2}\left(\sum_{i=1}^nx_i^2-2\mu\sim_{i=1}^n x_i\right)\right\}, 1853 | \end{align*} 1854 | 取$t_1=\sum_{i=1}^nx_i,t_2=\sum_{i=1}^nx_i^2$,并令 1855 | \[g(t_1,t_2,\theta)=(2\pi\sigma^2)^{-n/2}\exp\left\{-\frac{n\mu^2}{2\sigma^2}\right\} 1856 | \exp\left\{-\frac1{2\sigma^2}(t_2-2\mu t_1)\right\},h(\bm X)=1,\] 1857 | 则由因子分解定理, $T=(t_1,t_2)=\left(\sum_{i=1}^nx_i,\sum_{i=1}^n x_i^2\right)$是充分统计量.进一步,我们指出这个统计量与$(\bar x,s^2)$是一一对应的,这说明在正态总体场合常用的$(\bar x,s^2)$是充分统计量. 1858 | \end{example} 1859 | \begin{xiti} 1860 | \item 设$x_1,\dotsc,x_n$来自几何分布 1861 | \[P(X=x)=\theta(1-\theta)^xm\quad x=0,1,2,\dotsc\] 1862 | 的样本,证明$T=\sum_{i=1}^nx_i$是充分统计量. 1863 | \item 设$x_1,\dotsc,x_n$是来自泊松分布$P(\lambda)$的样本,证明$T=\sum_{i=1}^nx_i$是充分统计量. 1864 | \item 设总体为如下离散型分布, 1865 | \begin{center} 1866 | \begin{tabularx}{0.6\textwidth}{Y|YYYY} 1867 | x&a_1&a_2&\dotsm&a_k\\ 1868 | \hline 1869 | p&p_1&p_2&\dotsm&p_k 1870 | \end{tabularx} 1871 | \end{center} 1872 | $x_1,\dotsc,x_n$是来自该总体的样本, 1873 | \begin{enumerate} 1874 | \item 证明次序统计量$(x_{(1)},\dotsc,x_{(n)})$是充分统计量. 1875 | \item 以$n_j$表示$x_1,\dotsc,x_n$中等于$a_j$的个数,证明$(n_1,\dotsc,x_n)$是充分统计量. 1876 | \end{enumerate} 1877 | \item 设$x_1,\dotsc, x_n$是来自正态分布$N(\mu,1)$的样本,证明$T=\sum_{i=1}^nx_i$是充分统计量. 1878 | \item 设$x_1,\dotsc,x_n$是来自 1879 | \[p(x;\theta)=\theta\cdot x^{\theta-1},00\] 1880 | 的样本,试给出一个充分统计量. 1881 | \item 设$x_1,\dotsc,x_n$是来自威布尔分布 1882 | \[p(x;\theta)=mx^{m-1}\theta^{-m}\ee^{-(x/\theta)^m},\quad x>0,\theta>0\] 1883 | 的样本($m>0$已知),试给出一个充分统计量. 1884 | \item 设$x_1,\dotsc,x_n$是来自Pareto分布 1885 | \[p(x;\theta)=\theta\cdot a^\theta x^{-(\theta+1)},\quad x>a,\theta>0\] 1886 | 的样本($a>0$已知),试给出一个充分统计量. 1887 | \item 设$x_1,\dotsc,x_n$是来自Laplace分布 1888 | \[p(x;\theta)=\frac1{2\theta}\ee^{-|x|\theta},\quad\theta>0\] 1889 | 的样本,试给出一个充分统计量. 1890 | \item 设$x_1,\dotsc,x_n$是辣子正态分布$N(\mu,\sigma^2)$的样本. 1891 | \begin{enumerate} 1892 | \item 在$\mu$已知时给出$\sigma^2$的一个充分统计量; 1893 | \item 在$\sigma^2$已知时给出$\mu$的一个充分统计量. 1894 | \end{enumerate} 1895 | \item 设$x_1,\dotsc,x_n$是来自均匀分布$U(\theta_1,\theta_2)$的样本,试给出一个充分统计量. 1896 | \item 设$x_1,\dotsc,x_n$是来自均匀分布$U(\theta,2\theta),\theta>0$的样本,试给出充分统计量. 1897 | \end{xiti} 1898 | -------------------------------------------------------------------------------- /delete-temp-files.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | del /q *.aux *.bbl *.blg *.log *.out *.toc *.bcf *.xml *.synctex *.nlo *.nls *.bak *.ind *.idx *.ilg *.lof *.lot *.ent-x *.tmp *.ltx *.los *.lol *.loc *.listing *.gz *.userbak *.nav *.snm *.vrb *.synctex(busy) 3 | 4 | 5 | del /q *.nav *.snm *.vrb *.fls *.xdv *.fdb_latexmk -------------------------------------------------------------------------------- /elegantbook.cls: -------------------------------------------------------------------------------- 1 | %%%%%%%%%%%%%%%%%%%%%% 2 | %% start of file `elegantbook.cls'. 3 | %% Copyright 2013-2019 ElegantLaTeX (elegantlatex2e@gmail.com) 4 | %% 5 | %% This work may be distributed and/or modified freely 6 | %% available at https://github.com/ElegantLaTeX/ElegantBook 7 | % % 8 | %% Last Modification 2019-04-12 9 | %%%%%%%%%%%%%%%%%%%%% 10 | % % !Mode:: "TeX:UTF-8" 11 | \NeedsTeXFormat{LaTeX2e} 12 | \ProvidesClass{elegantbook}[2019/04/03 v3.07 ElegantBook document class] 13 | 14 | \RequirePackage{kvoptions} 15 | \RequirePackage{etoolbox} 16 | \SetupKeyvalOptions{family=ELEGANT, prefix=ELEGANT@, setkeys=\kvsetkeys} 17 | \newcommand{\ekv}[1]{\kvsetkeys{ELEGANT}{#1}} 18 | 19 | % ----- Colors ----- 20 | \DeclareStringOption[blue]{color} 21 | \DeclareStringOption[en]{lang} 22 | \DeclareStringOption[answer]{result} 23 | \DeclareStringOption[fancy]{mode} 24 | \DeclareStringOption[show]{base} 25 | 26 | 27 | % ----- backward compatibility 28 | \DeclareVoidOption{green}{\ekv{color = green}} 29 | \DeclareVoidOption{cyan}{\ekv{color = cyan}} 30 | \DeclareVoidOption{blue}{\ekv{color = blue}} 31 | \DeclareVoidOption{gray}{\ekv{color = gray}} 32 | \DeclareVoidOption{black}{\ekv{color = black}} 33 | \DeclareVoidOption{nocolor}{\ekv{color = none}} 34 | 35 | \DeclareVoidOption{en}{\ekv{lang=en}} 36 | \DeclareVoidOption{cn}{\ekv{lang=cn}} 37 | 38 | \DeclareVoidOption{fancy}{\ekv{mode=fancy}} 39 | \DeclareVoidOption{simple}{\ekv{mode=simple}} 40 | 41 | \DeclareVoidOption{answer}{\ekv{result = answer}} 42 | \DeclareVoidOption{noanswer}{\ekv{result = noanswer}} 43 | 44 | \DeclareVoidOption{hide}{\ekv{base = hide}} 45 | \DeclareVoidOption{show}{\ekv{base = show}} 46 | 47 | % ----- Math option ----- 48 | \newcommand\mailto[1]{\href{mailto:#1}{\nolinkurl{#1}}} 49 | 50 | % ----- Title Style ----- 51 | \DeclareStringOption[hang]{titlestyle}[hang] 52 | % ----- backward compatibility 53 | \DeclareVoidOption{hang}{\ekv{titlestyle = hang}} 54 | \DeclareVoidOption{display}{\ekv{titlestyle = display}} 55 | % ----- Default Options ----- 56 | \DeclareDefaultOption{\PassOptionsToClass{\CurrentOption}{book}} 57 | 58 | \ProcessKeyvalOptions*\relax 59 | % \ProcessOptions*\relax 60 | \LoadClass[a4paper,oneside,openany]{book} 61 | 62 | \RequirePackage{indentfirst,comment} 63 | \setlength\parindent{2em} 64 | 65 | % fontsetting 66 | \RequirePackage{amsmath,mathrsfs,amsfonts,amssymb} 67 | \PassOptionsToPackage{no-math}{fontspec} 68 | \RequirePackage[UTF8, scheme=plain,punct=kaiming]{ctex} 69 | 70 | \RequirePackage{ifxetex} 71 | 72 | \ifxetex 73 | \RequirePackage{fontenc} 74 | \else 75 | \RequirePackage[T1]{fontenc} 76 | \fi 77 | 78 | %\RequirePackage{newtxtext} 79 | %\RequirePackage{newtxmath} 80 | % 81 | 82 | % font setting for text and math 83 | % \RequirePackage[T1]{fontenc} 84 | % \RequirePackage{newtxtext} 85 | % \RequirePackage{newtxmath} 86 | % \RequirePackage[scale=0.85]{newtxtt} 87 | \RequirePackage{anyfontsize} 88 | 89 | %\DeclareSymbolFont{CMletters} {OML}{cmm} {m}{it}% 90 | %\DeclareSymbolFont{CMsymbols} {OMS}{cmsy}{m}{n}% 91 | %\DeclareSymbolFont{CMlargesymbols}{OMX}{cmex}{m}{n}% 92 | % 93 | %% \let\sum\relax 94 | %% \DeclareMathSymbol{\sum}{\mathop}{CMlargesymbols}{"50}% 95 | %% \let\int\relax 96 | %% \DeclareMathSymbol{\int}{\mathop}{CMlargesymbols}{"5A}% 97 | % 98 | %\let\intop\relax\let\sumop\relax\let\ointop\relax\let\prodop\relax 99 | %\DeclareMathSymbol{\sumop}{\mathop}{CMlargesymbols}{"50} 100 | %\DeclareMathSymbol{\intop}{\mathop}{CMlargesymbols}{"52} 101 | %\DeclareMathSymbol{\ointop}{\mathop}{CMlargesymbols}{"49} 102 | %\DeclareMathSymbol{\prodop}{\mathop}{CMlargesymbols}{"59} 103 | 104 | % \let\partial\relax 105 | % \DeclareMathSymbol{\partial}{\mathord}{CMletters}{"40}% 106 | % \let\in\relax 107 | %\DeclareMathSymbol{\in}{\mathrel}{CMsymbols}{"32}% 108 | % \let\pi\relax 109 | % \DeclareMathSymbol{\pi}{\mathord}{CMletters}{"19} 110 | 111 | 112 | % ----- Handle Colors ----- 113 | %% 章节以及页脚图形 114 | 115 | \RequirePackage{xcolor} 116 | \ifdefstring{\ELEGANT@color}{green}{ 117 | \definecolor{structurecolor}{RGB}{0,120,2}% 118 | \definecolor{main}{RGB}{0,120,2}% 119 | \definecolor{second}{RGB}{230,90,7}% 120 | \definecolor{third}{RGB}{0,160,152}% 121 | }{\relax} 122 | \ifdefstring{\ELEGANT@color}{cyan}{ 123 | \definecolor{structurecolor}{RGB}{31,186,190}% 124 | \definecolor{main}{RGB}{59,180,5}% 125 | \definecolor{second}{RGB}{175,153,8}% 126 | \definecolor{third}{RGB}{244,105,102}% 127 | }{\relax} 128 | \ifdefstring{\ELEGANT@color}{blue}{ 129 | \definecolor{structurecolor}{RGB}{60,113,183} 130 | \definecolor{main}{RGB}{0,166,82}% 131 | \definecolor{second}{RGB}{255,134,24}% 132 | \definecolor{third}{RGB}{0,174,247}% 133 | }{\relax} 134 | \ifdefstring{\ELEGANT@color}{gray}{ 135 | \definecolor{structurecolor}{RGB}{0,0,0} 136 | \definecolor{main}{RGB}{150,150,150}% 137 | \definecolor{second}{RGB}{150,150,150}% 138 | \definecolor{third}{RGB}{150,150,150}% 139 | }{\relax} 140 | \ifdefstring{\ELEGANT@color}{black}{ 141 | \definecolor{structurecolor}{RGB}{0,0,0} 142 | \definecolor{main}{RGB}{0,0,0}% 143 | \definecolor{second}{RGB}{0,0,0}% 144 | \definecolor{third}{RGB}{0,0,0}% 145 | }{\relax} 146 | 147 | %green color 148 | \definecolor{structure1}{RGB}{0,120,2}% 149 | \definecolor{main1}{RGB}{0,120,2}% 150 | \definecolor{second1}{RGB}{230,90,7}% 151 | \definecolor{third1}{RGB}{0,160,152}% 152 | %cyan color 153 | \definecolor{structure2}{RGB}{31,186,190}% 154 | \definecolor{main2}{RGB}{59,180,5}% 155 | \definecolor{second2}{RGB}{175,153,8}% 156 | \definecolor{third2}{RGB}{244,105,102}% 157 | %blue color 158 | \definecolor{structure3}{RGB}{60,113,183} 159 | \definecolor{main3}{RGB}{0,166,82}% 160 | \definecolor{second3}{RGB}{255,134,24}% 161 | \definecolor{third3}{RGB}{0,174,247}% 162 | % gray color 163 | \definecolor{structure4}{RGB}{0,0,0} 164 | \definecolor{main4}{RGB}{150,150,150}% 165 | \definecolor{second4}{RGB}{150,150,150}% 166 | \definecolor{third4}{RGB}{150,150,150}% 167 | % black color 168 | \definecolor{structure5}{RGB}{0,0,0} 169 | \definecolor{main5}{RGB}{0,0,0}% 170 | \definecolor{second5}{RGB}{0,0,0}% 171 | \definecolor{third5}{RGB}{0,0,0}% 172 | 173 | % corlor definition 174 | \definecolor{winered}{rgb}{0.5,0,0} 175 | \definecolor{bule}{RGB}{18,29,57} 176 | 177 | 178 | \newcommand{\base}[2]{% 179 | \par\nointerlineskip \vspace{0.1\baselineskip}\hspace{\fill} 180 | {\color{#1} 181 | \resizebox{0.3\linewidth}{1.5ex} 182 | {{% 183 | {\begin{tikzpicture} 184 | \node (C) at (0,0) {}; 185 | \node (D) at (4,0) {}; 186 | \path (C) to [ornament=#2] (D); 187 | \end{tikzpicture}}}}}% 188 | \hspace{\fill} 189 | \par\nointerlineskip \vspace{0.1\baselineskip} 190 | } 191 | 192 | % ----- Title Style ----- 193 | \ifdefstring{\ELEGANT@titlestyle}{hang}{\def\style{hang}}{\relax} 194 | \ifdefstring{\ELEGANT@titlestyle}{display}{\def\style{display}}{\relax} 195 | 196 | 197 | \newtoks\email 198 | \newtoks\version 199 | \newtoks\institute 200 | \newtoks\subtitle 201 | 202 | \usepackage{paralist} 203 | 204 | % list/itemize/enumerate setting 205 | \RequirePackage[shortlabels]{enumitem} 206 | \setlist{nolistsep} 207 | 208 | % caption settings 209 | \RequirePackage{caption} 210 | \captionsetup{labelfont = bf} 211 | \RequirePackage[font=small,labelfont={bf,color=structurecolor}]{caption} 212 | \captionsetup[table]{skip=3pt} 213 | \captionsetup[figure]{skip=3pt} 214 | 215 | %% 常用宏包 216 | \linespread{1.3} 217 | \RequirePackage{graphicx} 218 | %\RequirePackage{enumerate} 219 | 220 | \RequirePackage{booktabs} 221 | \RequirePackage{multicol} 222 | \RequirePackage{xcolor} 223 | \RequirePackage{fancyvrb} 224 | \RequirePackage{makecell,lipsum,bxtexlogo,setspace} 225 | 226 | 227 | %%中文结构名字 228 | \ifdefstring{\ELEGANT@lang}{en}{ 229 | \newcommand\figref[1]{\textbf{Figure}~\ref{#1}} 230 | \newcommand\tabref[1]{\textbf{Table}~\ref{#1}} 231 | \renewcommand{\chaptername}{Chapter \thechapter} 232 | }{\relax} 233 | \ifdefstring{\ELEGANT@lang}{cn}{ 234 | \renewcommand{\contentsname}{目\hspace{2em}录} 235 | \renewcommand{\figurename}{图} 236 | \renewcommand{\tablename}{表} 237 | \renewcommand{\partname}{第 \thepart\; 部分} 238 | \renewcommand{\listfigurename}{插图目录} 239 | \renewcommand{\listtablename}{表格目录} 240 | \renewcommand{\bibname}{参考文献} 241 | \renewcommand{\appendixname}{附录} 242 | \renewcommand{\indexname}{索\hspace{2em}引} 243 | \newcommand\figref[1]{\textbf{图}~\ref{#1}} 244 | \newcommand\tabref[1]{\textbf{表}~\ref{#1}} 245 | \renewcommand{\chaptername}{第 \thechapter\;章} 246 | }{\relax} 247 | 248 | 249 | 250 | \graphicspath{{./figure/}{./figures/}{./image/}{./images/}{./graphics/}{./graphic/}{./pictures/}{./picture/}} 251 | 252 | \RequirePackage{tikz} 253 | \usetikzlibrary{backgrounds,calc,shadows} 254 | \usepackage[object=vectorian]{pgfornament} %% 255 | 256 | \newcommand*{\eitemi}{\tikz \draw [baseline, ball color=structurecolor, draw=none] circle (2pt);} 257 | \newcommand*{\eitemii}{\tikz \draw [baseline, fill=structurecolor,draw=none,circular drop shadow] circle (2pt);} 258 | \newcommand*{\eitemiii}{\tikz \draw [baseline, fill=structurecolor,draw=none] circle (2pt);} 259 | \setlist[enumerate,1]{label=\color{structurecolor}\arabic*.,ref=\color{structurecolor}\arabic*} 260 | \setlist[enumerate,2]{label=\color{structurecolor}(\arabic*),leftmargin=0.59cm} 261 | \setlist[enumerate,3]{label=\color{structurecolor}\Roman*.} 262 | \setlist[enumerate,4]{label=\color{structurecolor}\Alph*.} 263 | \setlist[itemize,1]{label={\eitemi}} 264 | \setlist[itemize,2]{label={\eitemii}} 265 | \setlist[itemize,3]{label={\eitemiii}} 266 | 267 | % \RequirePackage{natbib} 268 | \RequirePackage{gbt7714} 269 | %\bibliographystyle{gbt7714-numerical} 270 | \setlength{\bibsep}{0.0pt} 271 | \def\bibfont{\footnotesize} 272 | 273 | 274 | %% device settings 275 | 276 | \RequirePackage{geometry} 277 | \geometry{ 278 | a4paper, 279 | % left=27mm, %% or inner=23mm 280 | % right=27mm, %% or outer=18mm 281 | top=25.4mm, bottom=25.4mm, 282 | headheight=2.17cm, 283 | headsep=4mm, 284 | footskip=12mm 285 | } 286 | 287 | \RequirePackage{imakeidx} 288 | \makeindex[ 289 | title = {名词索引}, 290 | intoc = true, 291 | columns = 2, 292 | columnsep = 1cm, 293 | columnseprule = true, 294 | program = makeindex, 295 | options = {-s mkind.ist}, 296 | noautomatic = false 297 | ] 298 | \indexsetup{ 299 | toclevel = chapter, 300 | headers = {名词索引}{名词索引}, 301 | othercode = { 302 | \renewcommand{\indexspace}{\smallskip} 303 | } 304 | } 305 | 306 | \RequirePackage{hyperref} 307 | \hypersetup{ 308 | breaklinks, 309 | unicode, 310 | linktoc=all, 311 | bookmarksnumbered=true, 312 | bookmarksopen=true, 313 | pdfkeywords={ElegantBook}, 314 | colorlinks, 315 | linkcolor=winered, 316 | citecolor=winered, 317 | urlcolor = winered, 318 | plainpages=false, 319 | pdfstartview=FitH, 320 | pdfborder={0 0 0}, 321 | linktocpage 322 | } 323 | \let\email\relax 324 | \newcommand\email[1]{\href{mailto:#1}{\nolinkurl{#1}}} 325 | 326 | %% 章节设置 327 | \RequirePackage[center,pagestyles]{titlesec} 328 | \RequirePackage{apptools} 329 | \RequirePackage[toc,page]{appendix} 330 | 331 | \setcounter{secnumdepth}{5} 332 | \renewcommand{\thesubsubsection}{\zhnumber{\arabic{subsubsection}}} 333 | 334 | \titleformat{\chapter}[\style]{\bfseries} 335 | {\filcenter\LARGE\enspace\bfseries{\color{structurecolor}\IfAppendix{\appendixname}{\chaptername}\enspace}}{1pt}{\bfseries\color{structurecolor}\LARGE\filcenter}[\ifdefstring{\ELEGANT@base}{hide}{}{\filcenter\base{structurecolor}{88}}] 336 | 337 | \titleformat{\section}[hang]{\bfseries} 338 | {\hspace{-2.45em}\Large\bfseries{\color{structurecolor}\thesection}\enspace}{1pt}{\color{structurecolor}\Large\bfseries\filright} 339 | 340 | \titleformat{\subsection}[hang]{\bfseries} 341 | {\hspace{-2.45em}\large\bfseries\color{structurecolor}\thesubsection\enspace}{1pt}{\color{structurecolor}\large\bfseries\filright} 342 | 343 | \titleformat{\subsubsection}[hang]{\bfseries} 344 | {\hspace{2em}\bfseries\color{structurecolor}\thesubsubsection、\enspace}{0pt}{\color{structurecolor}\bfseries\filright} 345 | 346 | 347 | \titlespacing{\chapter}{0pt}{-20pt}{1.3\baselineskip} 348 | \titlespacing{\subsubsection}{0pt}{0.5\baselineskip}{0.5\baselineskip} 349 | %\titlespacing{\subsection}{0pt}{0.5\baselineskip}{-\baselineskip} 350 | 351 | 352 | 353 | %%define the note and proof environment 354 | \RequirePackage{pifont,manfnt,bbding} 355 | % list/itemize/enumerate setting 356 | \RequirePackage[shortlabels]{enumitem} 357 | \setlist{nolistsep} 358 | 359 | 360 | \RequirePackage[many]{tcolorbox} 361 | \ifdefstring{\ELEGANT@mode}{fancy}{ 362 | \tcbset{ 363 | common/.style={ 364 | %fontupper=\ifdefstring{\ELEGANT@lang}{en}{\itshape}{\upshape\kaishu}, 365 | lower separated=false, 366 | coltitle=white, 367 | colback=gray!5, 368 | boxrule=0.5pt, 369 | fonttitle=\bfseries, 370 | enhanced, 371 | breakable, 372 | top=8pt, 373 | before skip=8pt, 374 | attach boxed title to top left={yshift=-0.11in,xshift=0.15in}, 375 | boxed title style={boxrule=0pt,colframe=white,arc=0pt,outer arc=0pt}, 376 | separator sign={.}, 377 | }, 378 | defstyle/.style={ 379 | common, 380 | colframe=main, 381 | colback=main!5, 382 | colbacktitle=main, 383 | overlay unbroken and last={\node[anchor=south east, outer sep=6pt] at (\textwidth-width,0) {\textcolor{main}{$\clubsuit$}}; } 384 | }, 385 | thmstyle/.style={ 386 | common, 387 | colframe=second, 388 | colback=second!5, 389 | colbacktitle=second, 390 | overlay unbroken and last={\node[anchor=south east, outer sep=6pt] at (\textwidth-width,0) {\textcolor{second}{$\heartsuit$}}; } 391 | }, 392 | propstyle/.style={ 393 | common, 394 | colframe=third, 395 | colback=third!5, 396 | colbacktitle=third, 397 | overlay unbroken and last={\node[anchor=south east, outer sep=6pt] at (\textwidth-width,0) {\textcolor{third}{$\spadesuit$}}; } 398 | }, 399 | } 400 | 401 | \newtcbtheorem[auto counter,number within=section]{definition}{ 402 | \ifdefstring{\ELEGANT@lang}{en}{Definition}{定义} 403 | }{defstyle}{def} 404 | 405 | \newtcbtheorem[auto counter,number within=section]{theorem}{ 406 | \ifdefstring{\ELEGANT@lang}{en}{Theorem}{定理} 407 | }{thmstyle}{thm} 408 | 409 | \newtcbtheorem[auto counter,number within=section]{proposition}{ 410 | \ifdefstring{\ELEGANT@lang}{en}{Proposition}{命题} 411 | }{propstyle}{pro} 412 | 413 | \newtcbtheorem[auto counter,number within=section]{corollary}{ 414 | \ifdefstring{\ELEGANT@lang}{en}{Corollary}{推论} 415 | }{thmstyle}{cor} 416 | 417 | \newtcbtheorem[auto counter,number within=section]{lemma}{ 418 | \ifdefstring{\ELEGANT@lang}{en}{Lemma}{引理} 419 | }{thmstyle}{lem} 420 | 421 | }{\relax} 422 | 423 | \ifdefstring{\ELEGANT@mode}{simple}{ 424 | \let\openbox\relax 425 | \RequirePackage{amsthm} 426 | \let\proof\relax 427 | \let\endproof\relax 428 | % declare a new theorem style 429 | \newtheoremstyle{edefstyle}% 430 | {3pt}% Space above 431 | {3pt}% Space below 432 | {\ifdefstring{\ELEGANT@lang}{en}{\itshape}{\upshape\kaishu}}% Body font 433 | {}% Indent amount 434 | {\bfseries\color{main}}% Theorem head font 435 | {.}% Punctuation after theorem head 436 | {.5em}% Space after theorem head 437 | {\thmname{#1}\thmnumber{ #2}\thmnote{ (#3)}}% Theorem head spec (can be left empty, meaning ‘normal’) 438 | % -------------------------------------------------% 439 | \newtheoremstyle{ethmstyle}% 440 | {3pt}% Space above 441 | {3pt}% Space below 442 | {\ifdefstring{\ELEGANT@lang}{en}{\itshape}{\upshape\kaishu}}% Body font 443 | {}% Indent amount 444 | {\bfseries\color{second}}% Theorem head font 445 | {.}% Punctuation after theorem head 446 | {.5em}% Space after theorem head 447 | {\thmname{#1}\thmnumber{ #2}\thmnote{ (#3)}}% Theorem head spec (can be left empty, meaning ‘normal’) 448 | % -------------------------------------------------% 449 | \newtheoremstyle{eprostyle}% 450 | {3pt}% Space above 451 | {3pt}% Space below 452 | {\ifdefstring{\ELEGANT@lang}{en}{\itshape}{\upshape\kaishu}}% Body font 453 | {}% Indent amount 454 | {\bfseries\color{third}}% Theorem head font 455 | {.}% Punctuation after theorem head 456 | {.5em}% Space after theorem head 457 | {\thmname{#1}\thmnumber{ #2}\thmnote{ (#3)}}% Theorem head spec (can be left empty, meaning ‘normal’) 458 | 459 | \theoremstyle{edefstyle} 460 | \newtheorem{edefinition}{\ifdefstring{\ELEGANT@lang}{en}{Definition}{定义}}[section] 461 | 462 | \theoremstyle{ethmstyle} 463 | \newtheorem{etheorem}{\ifdefstring{\ELEGANT@lang}{en}{Theorem}{定理}}[section] 464 | \newtheorem{elemma}{\ifdefstring{\ELEGANT@lang}{en}{Lemma}{引理}}[section] 465 | \newtheorem{ecorollary}{\ifdefstring{\ELEGANT@lang}{en}{Corollary}{推论}}[section] 466 | 467 | \theoremstyle{eprostyle} 468 | \newtheorem{eproposition}{\ifdefstring{\ELEGANT@lang}{en}{Proposition}{命题}}[section] 469 | 470 | \newenvironment{theorem}[2] 471 | {\ifstrempty{#1}{\etheorem}{\etheorem[#1]}\ifstrempty{#2}{}{\label{thm:#2}}} 472 | {\endetheorem} 473 | 474 | \newenvironment{definition}[2] 475 | {\ifstrempty{#1}{\edefinition}{\edefinition[#1]}\ifstrempty{#2}{}{\label{def:#2}}} 476 | {\endedefinition} 477 | 478 | \newenvironment{lemma}[2] 479 | {\ifstrempty{#1}{\elemma}{\elemma[#1]}\ifstrempty{#2}{}{\label{lem:#2}}} 480 | {\endelemma} 481 | 482 | \newenvironment{corollary}[2] 483 | {\ifstrempty{#1}{\ecorollary}{\ecorollary[#1]}\ifstrempty{#2}{}{\label{cor:#2}}} 484 | {\endecorollary} 485 | 486 | \newenvironment{proposition}[2] 487 | {\ifstrempty{#1}{\eproposition}{\eproposition[#1]}\ifstrempty{#2}{}{\label{pro:#2}}} 488 | {\endeproposition} 489 | }{\relax} 490 | 491 | % main(green-def): example exercise problem solution 492 | % second(orange-thm): proof note remark 493 | % third(blue-prop): assumptions property conclusion custom 494 | 495 | %% Example with counter 496 | \newcounter{exam}[section] 497 | \setcounter{exam}{0} 498 | \renewcommand{\theexam}{\thesection.\arabic{exam}} 499 | \newenvironment{example}[1][]{ 500 | \refstepcounter{exam}\par\noindent\kern-0.2em\textbf{\color{main}{ 501 | \ifdefstring{\ELEGANT@lang}{en}{Example}{例} 502 | }~\theexam #1: }\rmfamily % 503 | }{ 504 | \par\ignorespacesafterend % 505 | } 506 | 507 | %% Exercise with counter 508 | \newcounter{exer}[section] 509 | \setcounter{exer}{0} 510 | \renewcommand{\theexer}{\thesection.\arabic{exer}} 511 | \newenvironment{exercise}[1][]{ 512 | \refstepcounter{exer}\par\noindent\makebox[-3pt][r]{\scriptsize\color{red!90}\HandPencilLeft\quad}\textbf{\color{main}{ 513 | \ifdefstring{\ELEGANT@lang}{en}{Exercise}{练习} 514 | }~\theexer #1: }\rmfamily % 515 | }{ 516 | \par\medskip\ignorespacesafterend % 517 | } 518 | 519 | %% Exercise with counter 520 | \newcounter{prob}[section] 521 | \setcounter{prob}{0} 522 | \renewcommand{\theprob}{\thesection.\arabic{prob}} 523 | \newenvironment{problem}[1][]{ 524 | \refstepcounter{prob}\par\noindent\textbf{\color{main}{% 525 | \ifdefstring{\ELEGANT@lang}{en}{Problem}{例题} 526 | }~\theprob #1: }\rmfamily % 527 | }{ 528 | \par\medskip\ignorespacesafterend % 529 | } 530 | 531 | 532 | 533 | \newenvironment{note}{\par\noindent{\makebox[0pt][r]{\scriptsize\color{red!90}\textdbend\quad}\textbf{\color{second} 534 | \ifdefstring{\ELEGANT@lang}{en}{Note:}{注意:} 535 | }}\ifdefstring{\ELEGANT@lang}{en}{\itshape}{\kaishu}}{\par} 536 | 537 | \newenvironment{proof}{\par\noindent\textbf{\color{second} 538 | \ifdefstring{\ELEGANT@lang}{en}{Proof:}{证明:} 539 | }\color{black!90}\small}{ 540 | %\hfill$\Box$\quad 541 | \par} 542 | \newenvironment{remark}{\noindent\textbf{\color{second} 543 | \ifdefstring{\ELEGANT@lang}{en}{Remark:}{注:} 544 | }}{\par} 545 | \newenvironment{assumption}{\par\noindent\textbf{\color{third} 546 | \ifdefstring{\ELEGANT@lang}{en}{Assumption:}{假设:} 547 | }}{\par} 548 | \newenvironment{conclusion}{\par\noindent\textbf{\color{third} 549 | \ifdefstring{\ELEGANT@lang}{en}{Conclusion:}{结论:} 550 | }}{\par} 551 | \newenvironment{solution}{\par\noindent\textbf{\color{main} 552 | \ifdefstring{\ELEGANT@lang}{en}{Solution:}{解:} 553 | }}{\par} 554 | \newcounter{prop}[section] 555 | 556 | \newenvironment{property}{\par\noindent\kern-0.2em\textbf{\color{third}\refstepcounter{prop} 557 | \ifdefstring{\ELEGANT@lang}{en}{Property:}{性质\thesection.\theprop:} 558 | }}{\par} 559 | \newenvironment{custom}[1]{\par\noindent\textbf{\color{third} 560 | \ifdefstring{\ELEGANT@lang}{en}{#1:}{#1:} 561 | }}{\par} 562 | 563 | \ifdefstring{\ELEGANT@result}{noanswer}{ 564 | \AtBeginDocument{ 565 | \excludecomment{solution} 566 | \excludecomment{proof} 567 | \excludecomment{inline} 568 | } 569 | }{\relax} 570 | 571 | 572 | %页眉页脚 573 | \RequirePackage{fancyhdr} 574 | \RequirePackage{lastpage} 575 | \fancyhf{} 576 | 577 | \if@twoside 578 | \fancyhead[EL,OR]{\color{structurecolor}\ifdefstring{\ELEGANT@lang}{en}{\itshape}{\kaishu}--\thepage/\pageref*{LastPage}--} 579 | \fancyhead[ER]{\color{structurecolor}\ifdefstring{\ELEGANT@lang}{en}{\itshape}{\kaishu}\leftmark{}} 580 | \fancyhead[OL]{\color{structurecolor}\ifdefstring{\ELEGANT@lang}{en}{\itshape}{\kaishu}\rightmark} 581 | \else 582 | \fancyhead[R]{\color{structurecolor}\ifdefstring{\ELEGANT@lang}{en}{\itshape}{\kaishu}--\thepage/\pageref*{LastPage}--} 583 | \fancyhead[L]{\color{structurecolor}\ifdefstring{\ELEGANT@lang}{en}{\itshape}{\kaishu}\rightmark} 584 | \fi 585 | 586 | \fancyfoot[c]{\base{structurecolor}{88}} 587 | \renewcommand{\headrule}{\color{structurecolor}\hrule width\textwidth} 588 | \pagestyle{fancy} 589 | \renewcommand{\headrulewidth}{1pt} 590 | % \renewcommand{\headrule}{} 591 | \fancypagestyle{plain}{\renewcommand{\headrulewidth}{0pt}\fancyhf{}\renewcommand{\headrule}{}} 592 | \renewcommand{\sectionmark}[1]{\markright{\thesection\; #1}{} } 593 | \renewcommand{\chaptermark}[1]{\markboth{\chaptername \; #1\;}{}} 594 | 595 | %%封面 596 | \newcommand*{\equote}[1]{\def\@equote{#1}} 597 | 598 | \def\IfEmpty#1{% 599 | \edef\1{\the#1} 600 | \ifx\1\empty 601 | } 602 | \def \ifempty#1{\def\temp{#1} \ifx\temp\empty } 603 | 604 | \newcommand*{\logo}[1]{ 605 | \def\@logo{\includegraphics[width=4.2cm]{#1} 606 | } 607 | } 608 | \newcommand*{\cover}[1]{ 609 | \def\@cover{\includegraphics[width=\linewidth]{#1} 610 | } 611 | } 612 | 613 | 614 | \renewcommand{\baselinestretch}{1.35} 615 | 616 | \renewcommand*{\maketitle}{% 617 | \hypersetup{pageanchor=false} 618 | \begin{titlepage} 619 | \newgeometry{margin = 0in} 620 | \parindent=0pt 621 | \@cover 622 | \setlength{\fboxsep}{0pt} 623 | \colorbox{second}{\makebox[\linewidth][c]{\shortstack[c]{\vspace{0.5in}}}} 624 | \vfill 625 | \vskip-2ex 626 | \hspace{2em} 627 | \parbox{0.8\textwidth}{ 628 | \bfseries\Huge \@title\par 629 | } 630 | \vfill 631 | \vspace{-1.0cm} 632 | \setstretch{2.5} 633 | \hspace{2.5em} 634 | \begin{minipage}[c]{0.68\linewidth} 635 | {\color{darkgray}\bfseries\Large \the\subtitle\\[2ex]} 636 | \color{gray}\kaishu\normalsize 637 | {\renewcommand{\arraystretch}{0.618} 638 | \begin{tabular}{l} 639 | \ifdefstring{\ELEGANT@lang}{en}{\textbf{Author: }}{\textbf{作者:}} \@author \\ 640 | \ifdefstring{\ELEGANT@lang}{en}{\textbf{Institute: }}{\textbf{组织:}} \the\institute\\ 641 | \ifdefstring{\ELEGANT@lang}{en}{\textbf{Date: }}{\textbf{时间:}} \@date\\ 642 | \ifdefstring{\ELEGANT@lang}{en}{\textbf{Version: }}{\textbf{版本:}} \the\version\\ 643 | \end{tabular}} 644 | \end{minipage} 645 | \begin{minipage}[c]{0.27\linewidth} 646 | \begin{tikzpicture}[remember picture,overlay] 647 | \begin{pgfonlayer}{background} 648 | \node[opacity=0.8,anchor=south east,outer sep=0pt,inner sep=0pt] at ($(current page.south east) +(-0.8in,1.5in)$) {\@logo}; 649 | \end{pgfonlayer} 650 | \end{tikzpicture} 651 | \end{minipage} 652 | \vfill 653 | \centerline{\itshape \@equote} 654 | \vfill 655 | \end{titlepage} 656 | \restoregeometry 657 | \thispagestyle{empty} 658 | } 659 | 660 | 661 | 662 | 663 | \RequirePackage{listings} 664 | \renewcommand{\ttdefault}{cmtt} 665 | \lstdefinestyle{mystyle}{ 666 | basicstyle=% 667 | \ttfamily 668 | \lst@ifdisplaystyle\small\fi 669 | } 670 | 671 | \lstset{basicstyle=\ttfamily,style=mystyle} 672 | 673 | \definecolor{lightgrey}{rgb}{0.9,0.9,0.9} 674 | \definecolor{frenchplum}{RGB}{190,20,83} 675 | \lstset{language=[LaTeX]TeX, 676 | texcsstyle=*\color{winered}, 677 | numbers=none, 678 | breaklines=true, 679 | keywordstyle=\color{winered}, 680 | commentstyle=\color{gray}, 681 | emph={elegantpaper,fontenc,fontspec,xeCJK,FiraMono,xunicode,newtxmath,figure,fig,image,img,table,itemize,enumerate,newtxtext,newtxtt,ctex,microtype,description,times,newtx,booktabs,tabular,PDFLaTeX,XeLaTeX,type1cm,BibTeX,device,color,mode,lang,amsthm,tcolorbox,titlestyle}, 682 | emphstyle={\color{frenchplum}}, 683 | morekeywords={DeclareSymbolFont,SetSymbolFont,toprule,midrule,bottomrule,institute,version,includegraphics,setmainfont,setsansfont,setmonofont ,setCJKmainfont,setCJKsansfont,setCJKmonofont,RequirePackage,figref,tabref,email,maketitle,keywords,definecolor,equote,logo,cover,subtitle,appendix,chapter,hypersetup,mainmatter,tableofcontents}, 684 | frame=single, 685 | tabsize=2, 686 | rulecolor=\color{structurecolor}, 687 | framerule=0.2pt, 688 | columns=flexible, 689 | % backgroundcolor=\color{lightgrey} 690 | } 691 | 692 | 693 | 694 | -------------------------------------------------------------------------------- /figure/REBook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-book/ptmst/83eb4f5fface45e8c473ae1e79b603228864aa38/figure/REBook.png -------------------------------------------------------------------------------- /figure/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-book/ptmst/83eb4f5fface45e8c473ae1e79b603228864aa38/figure/cover.jpg -------------------------------------------------------------------------------- /figure/fig3-1-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-book/ptmst/83eb4f5fface45e8c473ae1e79b603228864aa38/figure/fig3-1-1.pdf -------------------------------------------------------------------------------- /figure/fig3-1-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-book/ptmst/83eb4f5fface45e8c473ae1e79b603228864aa38/figure/fig3-1-2.pdf -------------------------------------------------------------------------------- /figure/fig3-1-3a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-book/ptmst/83eb4f5fface45e8c473ae1e79b603228864aa38/figure/fig3-1-3a.pdf -------------------------------------------------------------------------------- /figure/fig3-1-3b.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-book/ptmst/83eb4f5fface45e8c473ae1e79b603228864aa38/figure/fig3-1-3b.pdf -------------------------------------------------------------------------------- /figure/fig3-1-4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-book/ptmst/83eb4f5fface45e8c473ae1e79b603228864aa38/figure/fig3-1-4.pdf -------------------------------------------------------------------------------- /figure/fig3-1-5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-book/ptmst/83eb4f5fface45e8c473ae1e79b603228864aa38/figure/fig3-1-5.pdf -------------------------------------------------------------------------------- /figure/fig3-2-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-book/ptmst/83eb4f5fface45e8c473ae1e79b603228864aa38/figure/fig3-2-1.pdf -------------------------------------------------------------------------------- /figure/fig3-2-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-book/ptmst/83eb4f5fface45e8c473ae1e79b603228864aa38/figure/fig3-2-2.pdf -------------------------------------------------------------------------------- /figure/fig3-2-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-book/ptmst/83eb4f5fface45e8c473ae1e79b603228864aa38/figure/fig3-2-3.pdf -------------------------------------------------------------------------------- /figure/fig3-2-4a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-book/ptmst/83eb4f5fface45e8c473ae1e79b603228864aa38/figure/fig3-2-4a.pdf -------------------------------------------------------------------------------- /figure/fig3-2-4b.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-book/ptmst/83eb4f5fface45e8c473ae1e79b603228864aa38/figure/fig3-2-4b.pdf -------------------------------------------------------------------------------- /figure/fig3-4-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-book/ptmst/83eb4f5fface45e8c473ae1e79b603228864aa38/figure/fig3-4-1.pdf -------------------------------------------------------------------------------- /figure/fig3-4-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-book/ptmst/83eb4f5fface45e8c473ae1e79b603228864aa38/figure/fig3-4-2.pdf -------------------------------------------------------------------------------- /figure/fig4-4-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-book/ptmst/83eb4f5fface45e8c473ae1e79b603228864aa38/figure/fig4-4-1.pdf -------------------------------------------------------------------------------- /figure/fig4-4-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-book/ptmst/83eb4f5fface45e8c473ae1e79b603228864aa38/figure/fig4-4-2.pdf -------------------------------------------------------------------------------- /figure/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-book/ptmst/83eb4f5fface45e8c473ae1e79b603228864aa38/figure/logo.png -------------------------------------------------------------------------------- /main.tex: -------------------------------------------------------------------------------- 1 | \PassOptionsToPackage{inline}{enumitem} 2 | \documentclass[cn,simple]{elegantbook} 3 | 4 | 5 | \title{概率论与数理统计教程} 6 | \subtitle{经典书籍重排} 7 | 8 | \author{ 茆诗松 \quad 程依明\quad 濮晓龙} 9 | \institute{ RE-Book Program} 10 | \date{ \today} 11 | 12 | \input{settings} 13 | 14 | 15 | 16 | \version{ 3.00} 17 | \equote{普通高等教育“十五”国家级规划教材} 18 | \logo{REBook.png} 19 | \cover{cover.jpg} 20 | \bibliographystyle{plain} 21 | 22 | 23 | \begin{document} 24 | 25 | \setlength{\abovedisplayskip}{3pt} 26 | \setlength{\belowdisplayskip}{3pt} 27 | \maketitle 28 | 29 | 30 | 31 | 32 | \mainmatter 33 | \hypersetup{pageanchor=true} 34 | 35 | \include{preface} 36 | \tableofcontents 37 | \cleardoublepage 38 | \include{chapter1} 39 | \include{chapter2} 40 | \include{chapter3} 41 | \include{chapter4} 42 | \include{chapter5} 43 | \include{chapter6} 44 | \include{chapter7} 45 | \include{chapter8} 46 | \include{appendix} 47 | \include{answer} 48 | 49 | 50 | 51 | \catcode`\,=13 52 | \newcommand{,}{,} 53 | 54 | \indexprologue{这里列出本文涉及的所有名词。} 55 | \printindex 56 | \nocite{*} 57 | \bibliography{ref} 58 | \phantomsection 59 | \addcontentsline{toc}{chapter}{参考文献} 60 | 61 | \end{document} 62 | -------------------------------------------------------------------------------- /preface.tex: -------------------------------------------------------------------------------- 1 | 2 | \chapter*{序\quad 言} 3 | \addcontentsline{toc}{chapter}{序言} 4 | 概率论与数理统计是全国高等院校数学系与统计系的基础课程。这门课的任务是以丰富的背景、巧妙的思维和有趣的结论吸引读者,使学生在浓厚的兴趣中学习和掌握概率论与数理统计的基本概念、基本方法和基本理论。我们正是抱着这样的心愿编写这本教科书,并努力去实现它。很幸运,2003年该书先后被列入“国家级十五规划教材”和“高等教育百门精品课程教材建设项目”。这使我们信心倍增,同时也深感责任重大,定要同心协力编写好此书,以适应祖国日益发展的经济形势的需要。 5 | 6 | 本书内容为八章,前四章为概率论,后四章为数理统计。在编写上作了一些尝试,我们把随机变量的定义分两步完成,其直观定义在第一章就出现了,用来表示事件,较为严格的定义在第二章中完成。这样可使学生对随机变量有了较具体又完整的概念。在随机变量层次上,我们更强调分布的概念。另外在概率定义上,我们采用了公理化系统,而把频率、古典概率、几何概率和主观概率作为确定概率的四种方法。在统计部分,我们尽量从数据出发提出问题和研究问题,对总体、抽样分布、检验的拒绝域等概念的叙述都作了一些改进,增加了描述性统计的基本内容和贝叶斯统计初步,让学生能较为全面地认识统计。另外对分位数、检验的$p$值、零概率事件(几乎处处)和渐近分布等都作了较为详尽和具体的叙述。在叙述中我们尽力做到图文并茂,全书共有图100多幅,相信这对内容的理解会有帮助。 7 | 8 | 作为概率论与数理统计的入门书,我们不想一进门就把学生引入数学天堂,而是在“野外”先浏览概率统计的各种风景之后,再进入数学天堂,使各种概念和定理成为有源之水、有本之木。可使学生感到读此书的趣味,感到与读数学教科书有不同的味道。当然我们也十分注意从偶然性中提炼出来的一些规律性的证明和论述,因为只有理解了的东西才能更深刻地感受它。 9 | 10 | 本书给出的例子,总量达到近250个,其中很多例子更贴近人们的社会、经济、生活和生产管理,更具有时代气息。这些例子是我们日常教学和研究中收集起来的,它能把概率统计基本内容渗透到各种实际中去。 11 | 12 | 本书的习题分节设立,这样可使习题更具针对性,并通过习题增强能力和扩大视野。习题数量也明显增多,全书有600道习题。这些习题中一半左右是基 13 | 本题,使大多数学生在掌握基本知识后都能做出,还有一部分习题经过努力大多也能做出,这样安排习题是希望培养学生兴趣与能力,提高学生学好这门课程的信心。另外,配合本书的教与学,我们还编了一本“概率论与数理统计习题与解答”,将于近期出版。这本辅助读物有助于把学生的兴趣和能力引向更深的层次,亦起到“解惑”的作用。 14 | 15 | 使用本书有两个建议方案,若概率论与数理统计分两学期开设,每学期60学时,本书可在120学时左右全部讲完。这正是本书编写的初衷。若概率论与数理统计作为一门课程在一学期开设,可选择部分内容组织教学,譬如, 16 | 17 | \begin{itemize} 18 | \item 概率论部分可选第一、二章大部分内容加上数学期望与方差运算性质、伯努利大数定律和中心极限定理。 19 | \item 统计部分可选第五、六、七章大部分内容,其中充分统计量、最小方差无偏估计、两样本的假设检验均可略去。 20 | \end{itemize} 21 | 22 | 在此我们首先感谢华东师范大学统计系领导和全体教师,由于他(她)们的关心、支持和鼓励使我们能以充沛的精力去完成此书。我们还要感谢葛广平教授,他在百忙之中审阅了全部书稿,提出了宝贵意见。由于采纳了他的改进意见,使本书的质量进一步得到了提高。最后要感谢高等教育出版社理科分社对本书的支持和督促,没有他(她)们的热心指导和出色编辑,不可能使本书迅速问世。 23 | 24 | 本书前四章由程依明编写,后四章由濮晓龙编写,全书由茆诗松统稿。我们经常讨论、切磋写法、选择例题、相互补充,终于完成此书。由于水平有限,不当之处在所难免,愿请广大教师和学生提出宝贵意见,我们将作进一步改进。 25 | 26 | \hfill 茆诗松、程依明、濮晚龙 27 | 28 | \hfill 2004年3月 \hspace{0.8cm} 29 | 30 | \chapter*{前言} 31 | \addcontentsline{toc}{chapter}{前言} 32 | 本书的重排项目本来是由github的re-book项目组于2019年4月份发起, 原本是每人一章分工合作,但是中间陆续有人退出,大量排版工作没有完成,还有巨多的图要画,我完成了分配给自己的第五章,但是其他很多的章节落下了太多,后来就干脆变成了一个烂尾的项目。如今时隔两年,我觉得这本书还是有完成的必要,于是自己重操旧业,准备来完成这本书的剩余部分,然后制作附录表格,并将所有的图重新用TikZ绘制,相信这本书将来会对很多人的学习产生帮助。 33 | 34 | 由于这本书是分工完成的,不同人代码风格差异很大,文字是用ORC识别的,也有所缺失。很多公式都是机器代码,我也没有精力再去一一修改。如果读者在阅读过程中发现了排版错误的,欢迎致邮勘误. \href{mailto:739049687@qq.com}{\ding{43}} 35 | 36 | \hfill 向禹\hspace{2em} 37 | 38 | \hfill 2020年3月 39 | -------------------------------------------------------------------------------- /ref.bib: -------------------------------------------------------------------------------- 1 | % Encoding: UTF-8 2 | 3 | @Book{gelie, 4 | author = {格涅坚科}, 5 | publisher = {高等教育出版社}, 6 | title = {概率论教程}, 7 | year = {1956}, 8 | address = {北京}, 9 | key = {ge2 nie4 jian1 ke1}, 10 | translator = {丁寿田}, 11 | } 12 | 13 | @Book{weilian, 14 | author = {威廉\textbullet 费勒}, 15 | publisher = {科学出版社}, 16 | title = {概率论及其应用}, 17 | year = {1964}, 18 | address = {北京}, 19 | key = {wei1 lian2 fei4 le1}, 20 | translator = {吴迪鹤 ,林向清}, 21 | } 22 | 23 | @Book{lixianping, 24 | author = {李贤平}, 25 | publisher = {高等教育出版社}, 26 | title = {概率论及其应用}, 27 | year = {1997}, 28 | address = {北京}, 29 | key = {li3 xian2 ping2}, 30 | } 31 | 32 | @Book{maoshisong, 33 | author = {茆诗松等}, 34 | publisher = {中国统计出版社}, 35 | title = {概率论基础(第二版)}, 36 | year = {2000}, 37 | address = {北京}, 38 | key = {mao3 shi1 song1}, 39 | } 40 | 41 | @Book{chenxiru, 42 | author = {陈希孺}, 43 | publisher = {科学出版社}, 44 | title = {概率论与数理统计(第二版)}, 45 | year = {2002}, 46 | address = {北京}, 47 | key = {chen2 xi1 ru1}, 48 | } 49 | 50 | @Book{lixianping1, 51 | author = {李贤平等}, 52 | publisher = {复旦大学出版社}, 53 | title = {概率论与数理统计}, 54 | year = {2003}, 55 | address = {上海}, 56 | key = {li3 xian2 ping2}, 57 | } 58 | 59 | @Book{kelamei, 60 | author = {克拉梅}, 61 | publisher = {上海科学技术出版社}, 62 | title = {统计的数学方法}, 63 | year = {1966}, 64 | address = {上海}, 65 | key = {ke4 la1 mei2}, 66 | translator = {魏宗舒等}, 67 | } 68 | 69 | @Book{yangzhenming, 70 | author = {杨振明}, 71 | publisher = {科学出版社}, 72 | title = {概率论}, 73 | year = {1999}, 74 | address = {北京}, 75 | key = {yang2 zhen4 ming2}, 76 | } 77 | 78 | @Book{wangrenguan, 79 | author = {汪仁官}, 80 | publisher = {北京大学出版社}, 81 | title = {概率论引论}, 82 | year = {1994}, 83 | address = {北京}, 84 | key = {wang1 ren2 guan1}, 85 | } 86 | 87 | @Book{maoshisong1, 88 | author = {茆诗松,王静龙}, 89 | publisher = {华东师范大学出版社}, 90 | title = {数理统计}, 91 | year = {1990}, 92 | address = {上海}, 93 | key = {mao3 shi1 song1}, 94 | } 95 | 96 | @Book{maoshisong2, 97 | author = {茆诗松}, 98 | publisher = {中国统计出版社}, 99 | title = {贝叶斯统计}, 100 | year = {1990}, 101 | address = {北京}, 102 | key = {mao3 shi1 song1}, 103 | } 104 | 105 | @Book{bikeer, 106 | author = {比克尔}, 107 | publisher = {兰州大学出版社}, 108 | title = {数理统计}, 109 | year = {1991}, 110 | address = {兰州}, 111 | key = {bi3 ke4 er3}, 112 | translator = {李泽慧等}, 113 | } 114 | 115 | @Book{zhaoxuanmin, 116 | author = {赵选民等}, 117 | publisher = {科学出版社}, 118 | title = {数理统计(第二版)}, 119 | year = {2002}, 120 | address = {北京}, 121 | key = {zhao4 xuan3 min2}, 122 | } 123 | 124 | @Book{sunronghuan, 125 | author = {孙荣桓}, 126 | publisher = {科学出版社}, 127 | title = {应用数理统计}, 128 | year = {2002}, 129 | address = {北京}, 130 | key = {sun1 rong2 huan2}, 131 | } 132 | 133 | @Comment{jabref-meta: databaseType:bibtex;} 134 | -------------------------------------------------------------------------------- /settings.tex: -------------------------------------------------------------------------------- 1 | \let\le\leqslant 2 | \let\ge\geqslant 3 | \let\leq\le 4 | \let\geq\ge 5 | 6 | \usepackage[free-standing-units]{siunitx} 7 | 8 | \usepackage{makeidx} 9 | \makeindex 10 | \numberwithin{figure}{section} 11 | \numberwithin{table}{section} 12 | \numberwithin{equation}{section} 13 | \usepackage{bm} 14 | 15 | % \usepackage{gbt7714} 16 | % \bibliographystyle{gbt7714-numerical} 17 | \usepackage{multirow} 18 | 19 | \newcommand{\ee}{\mathrm e} 20 | \newcommand{\dd}{\mathop{}\!\mathrm d} 21 | 22 | \newcommand{\textop}[1]{\relax\ifmmode\mathop{\text{#1}}\else\text{#1}\fi} 23 | \usepackage{tabularx,booktabs,multirow} 24 | %%%%%%定义两个列格式,数学与非数学模式 25 | \newcolumntype{Y}{>{\centering\arraybackslash$}X<{$}} 26 | \newcolumntype{Z}{>{\centering\arraybackslash}X} 27 | \newcolumntype{L}{>{\raggedright\arraybackslash}X} 28 | \newcolumntype{R}{>{\raggedleft\arraybackslash}X} 29 | 30 | \newenvironment{xiti}{\begin{center} 31 | \textbf{\zihao{-3}\ding{45}\,习~~题\quad\thesection} 32 | \addcontentsline{toc}{subsection}{习题 \thesection} 33 | \end{center} 34 | \begin{enumerate}[leftmargin=0.5cm] 35 | }{\end{enumerate}} 36 | 37 | \newenvironment{answer}{\begin{center}\stepcounter{section} 38 | \textbf{\zihao{-3}\ding{45}\,习~~题\quad\thesection} 39 | \end{center} 40 | \begin{enumerate}[leftmargin=0.5cm] 41 | }{\end{enumerate}} 42 | 43 | \usetikzlibrary{decorations.pathreplacing,decorations.pathmorphing,arrows.meta,patterns} 44 | \newcommand{\TT}{^{\mathrm T}} 45 | \allowdisplaybreaks[4] 46 | 47 | \usepackage{subcaption} 48 | 49 | % \newcommand\hmmax{0} 50 | % \newcommand\bmmax{0} 51 | \DeclareMathAlphabet{\mathbbm}{U}{bbm}{m}{n} 52 | 53 | \usepackage{bm} 54 | \DeclareMathOperator{\Cov}{Cov} 55 | \DeclareMathOperator{\Corr}{Corr} 56 | \DeclareMathOperator{\Var}{Var} 57 | 58 | \let\heavymath\undefined 59 | \let\Bbbk\undefined 60 | \let\emptyset\varnothing 61 | \let\dotsc\cdots 62 | \newcommand\MR{\mathbb R} 63 | \let\olim\lim 64 | \def\lim{\olim\limits} 65 | \def\Binom#1#2{ 66 | \Big(\begin{array}{@{}c@{}} 67 | #1\\#2 68 | \end{array}\Big) 69 | } 70 | \setmainfont{Times New Roman} 71 | 72 | 73 | \IfFileExists{mtpro2.sty}{ 74 | \usepackage[zswash,amsbb,straightbraces]{mtpro2} 75 | }{\usepackage{amssymb}} 76 | 77 | \usepackage{varwidth} 78 | \usepackage{zhlineskip} 79 | \usepackage[Symbol]{upgreek} 80 | \usepackage{longtable} 81 | \usepackage{lscape} 82 | \usepackage{diagbox} 83 | \let\pi\uppi 84 | \let\vOmega\Omega 85 | \let\Omega\varOmega 86 | \belowrulesep0pt 87 | \aboverulesep0pt 88 | \setcounter{MaxMatrixCols}{25} 89 | 90 | \edef\closure#1{% 91 | {}\mkern2mu\overline{\mkern-2mu#1} 92 | } 93 | \renewcommand\bar{\closure} 94 | \renewcommand\overline{\closure} 95 | \newcommand\BB{\mathrm B} 96 | 97 | \setCJKmainfont[BoldFont={FZHei-B01},ItalicFont={FZKai-Z03}]{FZShuSong-Z01} 98 | \let\originalleft\left 99 | \let\originalright\right 100 | \renewcommand{\left}{\mathopen{}\mathclose\bgroup\originalleft} 101 | \renewcommand{\right}{\aftergroup\egroup\originalright} 102 | \newcommand\ii{\mathrm i} 103 | \usetikzlibrary{positioning} 104 | 105 | \makeatletter 106 | \newcommand{\rmnum}[1]{\romannumeral #1} 107 | \newcommand{\Rmnum}[1]{\expandafter\@slowromancap\romannumeral #1@} 108 | \makeatother 109 | \let\Theta\varTheta 110 | \IfFontExistsTF{汉仪大宋简}{ 111 | \newCJKfontfamily\hyds{汉仪大宋简} 112 | }{ 113 | \let\hyds\rmfamily 114 | } 115 | \let\bfseries\hyds 116 | \let\Phi\varPhi 117 | %\let\ldots\cdots 118 | 119 | 120 | -------------------------------------------------------------------------------- /茆诗松概率论LaTeX.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/re-book/ptmst/83eb4f5fface45e8c473ae1e79b603228864aa38/茆诗松概率论LaTeX.pdf --------------------------------------------------------------------------------