Skip to content

Commit 3c28158

Browse files
committed
Fix CDF of F distribution
The CDF formula of the F distribution contained a typo where d_1 got repeated twice instead of being once d_1 and once d_2. Reported by Catherine Tousey.
1 parent f940790 commit 3c28158

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stat-cookbook.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
% improvements.
3838
% - The patch version changes for trivial fixes, such as typos in text or
3939
% formulas.
40-
\newcommand{\version}{0.2.4}
40+
\newcommand{\version}{0.2.5}
4141

4242
% Probability and Statistics LaTeX shortcuts.
4343
\input{probstat}
@@ -252,7 +252,7 @@ \subsection{Continuous Distributions}
252252
(1-2s)^{-k/2} \; s<1/2\\[3ex]
253253

254254
F & \text{F}(d_1,d_2) &
255-
I_\frac{d_1x}{d_1x+d_2}\left(\frac{d_1}{2},\frac{d_1}{2}\right) &
255+
I_\frac{d_1x}{d_1x+d_2}\left(\frac{d_1}{2},\frac{d_2}{2}\right) &
256256
\frac{\sqrt{\frac{(d_1x)^{d_1} d_2^{d_2}}{(d_1x+d_2)^{d_1+d_2}}}}
257257
{x\mathrm{B}\left(\frac{d_1}{2},\frac{d_1}{2}\right)} &
258258
\frac{d_2}{d_2-2} %\; d_2 > 2

0 commit comments

Comments
 (0)