\(\ 1/√2π*e^(−1/2)\)
e=2.71828
clt=1/sqrt(2*pi)* (e**(-1/2))
n=200
p=1/2
q=1/2
n*p
## [1] 100
ans=sqrt(n*p*q)
x100=(100-(n*p))/ans
x100
## [1] 0
x100*clt
## [1] 0
n=200
p=1/2
q=1/2
n*p
## [1] 100
ans=sqrt(n*p*q)
x90=(90-(n*p))/ans
x90
## [1] -1.414214
x90*clt
## [1] -0.3421984
n=200
p=1/2
q=1/2
n*p
## [1] 100
ans=sqrt(n*p*q)
x80=(80-(n*p))/ans
x80
## [1] -2.828427
x80*clt
## [1] -0.6843968