حاسبة الانحراف المعياري ذي الحدين
يتم تعريف الانحراف المعياري للتوزيع ذي الحدين على النحو التالي:
σ = √ ن*ص*(1−ص)
حيث n هو حجم العينة و p هي نسبة السكان.
لحساب الانحراف المعياري لتوزيع ذي الحدين، ما عليك سوى ملء القيم أدناه ثم النقر فوق الزر “احسب”.
σ = 16.56
توضيح:
σ = √ ن*ص*(1−ص)
σ = √ 40 * 0.43 *(1− 0.43 )
σ = 16.56
function calc() { //get input values var p = document.getElementById('p').value*1; var n = document.getElementById('n').value*1;
//calculate stuff var result = Math.sqrt(n*p*(1-p));
//output document.getElementById('result').innerHTML = result.toFixed(3); document.getElementById('result2').innerHTML = result.toFixed(3); document.getElementById('n2').innerHTML = n; document.getElementById('p2').innerHTML = p; document.getElementById('p3').innerHTML = p; }