Image:Normal approximation to binomial.png
From Wikipedia, the free encyclopedia
Size of this preview: 800 × 600 pixel
Image in higher resolution (1300 × 975 pixel, file size: 92 KB, MIME type: image/png)
This is a file from the Wikimedia Commons. The description on its description page there is shown below. | |
This file has been superseded by Image:Normal approximation to binomial.svg. It is recommended that the other file be used. If you just added this tag and want to nominate this image for deletion, please check if it is used and if so replace it with the new image.
Afterwards please add the following code to here: (Please review the discussion here.)
Important: Before deleting this file, check if the new one is really superior! Also check:
Afrikaans | Alemannisch | العربية | Български | Česky | Dansk | Deutsch | English | Ελληνικά | Esperanto | Español | Français | Galego | עברית | हिन्दी | Magyar | Bahasa Indonesia | Ido | Italiano | 日本語 | 한국어 | Nederlands | Norsk (nynorsk) | Polski | Português | Românǎ | Русский | Slovenščina | Српски | Svenska | Türkçe | 简体中文 | 正體中文 | +/- |
Plot of the probability density function of a normal distribution approximating the probability mass function of a binomial distribution
Note: "Norm(12, 3)" is a normal distribution with a mean of 12 and a standard deviation of 3. Its variance is 48 × 1/4 × 3/4 = 9.
gnuplot source under GPL:
# normal (Gaussian) distribution _ln_dnorm(x, m, s) = -0.5 * log(2*pi) - log(s) - 0.5*((x-m)*1.0/s)**2 dnorm(x, mean, sd) = exp(_ln_dnorm(x, mean, sd)) pnorm(x, mean, sd) = norm((x-mean) * 1.0/sd) # binomial distribution _ln_binom(x, n, p) =\ lgamma(n+1) - lgamma(x+1) - lgamma(n-x+1) + x*log(p) + (n-x)*log(1-p) dbinom(x, size, prob) = (x==int(x))? exp(_ln_binom(floor(x), size, prob)) : 0 pbinom(x, size, prob) =\ (x<0)? 0 : (x<size)? ibeta(size-floor(x), floor(x)+1, 1-prob) : 1 set terminal postscript enhanced color solid lw 2 "Times-Roman" 20 set output set key 22,0.13 n = 48 p = 0.25 xmax = 25 set samples 50*xmax+1 plot [0:xmax] \ dbinom(x, n, p) with impulses title "Binom(48, 0.25)", \ dnorm(x, n*p, sqrt(n*p*(1-p))) linetype 3 title "Norm(12, 3)"
This work is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or any later version. This work is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
العربية ǀ Česky ǀ Deutsch ǀ English ǀ Español ǀ فارسی ǀ Français ǀ Italiano ǀ 日本語 ǀ Nederlands ǀ Polski ǀ Português ǀ Русский ǀ Svenska ǀ Türkçe ǀ 简体中文 ǀ 正體中文 ǀ +/- |