In: Math
Page1
Page2
R Script:
n<-rnorm(10000,12.85,1.93) #generating random number from
given normal population
plot(density(n), main="Population density curve: N(mean=12.85,st
dv= 1.93)")# density curve for the given normal population
Z0.01<-qnorm(0.01,0,1,lower.tail = F);Z0.01 #critical value for
1% probability
stN<-rnorm(10000,0,1) #generating random numbers from Standard
normal populations
plot(density(stN), main="N(mean=0,st dv=1)")# density curve for the
standard normal population
Density curve plots:
Please don't dislike. In case there is something not clear please contact me. Thank you!