Central limit theorem ဂဏန်းတွက်စက်
လူဦးရေ ဖြန့်ဝေမှုသည် ပုံမှန်မဟုတ်သော်လည်း နမူနာအရွယ်အစား လုံလောက်စွာကြီးမားပါက နမူနာ၏နမူနာဖြန့်ဝေမှုသည် ပုံမှန်မဟုတ်ကြောင်း ဗဟိုကန့်သတ်သီအိုရီက ဖော်ပြသည်။ ဗဟိုကန့်သတ်သီအိုရီတွင်လည်း နမူနာဖြန့်ဝေမှုတွင် အောက်ပါဂုဏ်သတ္တိများ ပါလိမ့်မည်-
1. နမူနာဖြန့်ဝေမှု၏ ပျမ်းမျှသည် လူဦးရေဖြန့်ဖြူးမှု၏ပျမ်းမျှနှင့် ညီမျှသည်-
x = µ
2. နမူနာ ဖြန့်ဝေမှု၏ စံသွေဖည်မှုသည် နမူနာအရွယ်အစားဖြင့် ပိုင်းခြားထားသော လူဦးရေ ဖြန့်ဖြူးမှု၏ စံသွေဖည်မှုနှင့် ညီမျှသည်-
s = σ / √n
ပေးထားသောနမူနာတစ်ခု၏ နမူနာပျမ်းမျှနှင့် စံသွေဖည်မှုကို ရှာဖွေရန်၊ အောက်တွင် လိုအပ်သောတန်ဖိုးများကို ရိုးရှင်းစွာထည့်သွင်းပြီး “ တွက်ချက်ရန်” ခလုတ်ကို နှိပ်ပါ။
နမူနာဆိုလိုချက် ( x ) = 17
နမူနာစံသွေဖည်မှု (များ) = 0.8
function calc() {
//get input degrees of freedom, t-value var n = document.getElementById('n').value*1; var pop_mean = document.getElementById('pop_mean').value*1; var pop_sd = document.getElementById('pop_sd').value*1;
//calculate sample mean and sample standard deviation var sample_mean = pop_mean; var sample_sd = pop_sd / Math.sqrt(n);
//output values document.getElementById('sample_mean').innerHTML = sample_mean.toFixed(5); document.getElementById('sample_sd').innerHTML = sample_sd.toFixed(5); }