Σ
SDCalc
متوسطFundamentals·9 min

شرح معادلة الانحراف المعياري: دليلك الشامل خطوة بخطوة

أتقن حساب الانحراف المعياري من خلال دليلنا المفصل خطوة بخطوة. تعرف على الفروق الجوهرية بين معادلات المجتمع الإحصائي والعينة، وطرق الحساب والتطبيقات العملية.

By Standard Deviation Calculator Team · Data Science Team·Published

ما هي معادلة الانحراف المعياري؟

تُعد معادلة الانحراف المعياري المعادلة الرياضية المستخدمة لقياس مقدار التباين أو التشتت في مجموعة من القيم البيانية. يشير الانحراف المعياري المنخفض إلى أن نقاط البيانات تميل إلى التركز بالقرب من المتوسط (μ أو x̄)، بينما يشير الانحراف المعياري المرتفع إلى أن نقاط البيانات موزعة على نطاق أوسع من القيم.

في علم الإحصاء، تعتمد المعادلة التي ينبغي استخدامها على ما إذا كنت تعمل مع مجتمع إحصائي كامل أم مع عينة مسحوبة من ذلك المجتمع. يتلخص المفهوم الأساسي في حساب متوسط مربعات الانحرافات عن المتوسط، وهو ما يُعرف بـ التباين (σ²)، ثم أخذ الجذر التربيعي لإعادة القياس إلى وحدات البيانات الأصلية.

الانحراف المعياري للمجتمع

σ = √[ Σ (xi - μ)² / N ]
  • σ (سيجما): الانحراف المعياري للمجتمع
  • Σ (سيجما): مجموع...
  • xi: كل قيمة فردية في مجموعة البيانات
  • μ (مو): متوسط المجتمع
  • N: العدد الإجمالي لنقاط البيانات في المجتمع

الانحراف المعياري للمجتمع مقابل العينة

في تحليل البيانات الواقعي، نادراً ما تتوفر لدينا بيانات لجميع أفراد المجتمع الإحصائي. في أغلب الأحيان، نقوم بجمع عينة لاستنتاج خصائص المجتمع الأكبر. ونظراً لأن العينة تُقدر متوسط المجتمع فقط، فإن حساب الانحراف المعياري باستخدام معادلة المجتمع على عينة ما يؤدي باستمرار إلى التقليل من التقدير الحقيقي للتشتت. ولتصحيح هذا التحيز، نستخدم معادلة الانحراف المعياري للعينة.

الانحراف المعياري للعينة

s = √[ Σ (xi - x̄)² / (n - 1) ]

لا تخلط بين المعادلتين!

استخدام 'N' لعينة أو 'n-1' لمجتمع سيؤدي إلى قياس غير صحيح للتشتت. المعادلة العينية التي تستخدم n-1 تُعرف بـ تصحيح بيسل وهي ضرورية بشكل قاطع للحصول على مقدر غير متحيز لتباين المجتمع.

حساب المعادلة خطوة بخطوة

يتطلب حساب الانحراف المعياري يدوياً منهجية واضحة. باتباع هذه الخطوات، يمكنك حساب الانحراف المعياري للمجتمع أو العينة بدقة لأي مجموعة بيانات.

1

احسب المتوسط

اجمع كل نقاط البيانات (Σxi) واقسمها على العدد الإجمالي للنقاط (N أو n) لإيجاد المتوسط (μ أو x̄).
2

أوجد الانحرافات

اطرح المتوسط من كل نقطة بيانات فردية لإيجاد الانحراف: (xi - المتوسط).
3

ربّع الانحرافات

اضرب كل انحراف حصلت عليه في الخطوة السابقة في نفسه: (xi - المتوسط)². هذا يضمن أن جميع القيم موجبة.
4

اجمع الانحرافات المربعة

اجمع كل الانحرافات المربعة لإيجاد مجموع المربعات: Σ(xi - المتوسط)².
5

اقسم على N أو n-1

للمجتمع، اقسم على N. وللعينة، اقسم على (n - 1). سيعطيك هذا التباين (σ² أو s²).
6

خذ الجذر التربيعي

خذ الجذر التربيعي للتباين لإيجاد الانحراف المعياري (σ أو s).

لماذا تقسم معادلة العينة على n-1؟

القسمة على n-1 بدلاً من n هو مفهوم يُعرف بـ تصحيح بيسل. نظراً لأن متوسط العينة (x̄) يُحسب من بيانات العينة نفسها، فإن الانحرافات (xi - x̄) تكون مقيدة رياضياً بحيث يكون مجموعها صفراً. هذا يعني أن نقاط البيانات أقرب قليلاً إلى متوسط العينة مقارنة بمتوسط المجتمع الحقيقي (μ).

بالقسمة على n-1 (وهي ما يُعرف بـ درجات الحرية)، نقوم بزيادة التباين بالقدر الكافي لتعويض هذا التقليل في التقدير، مما يوفر لنا مقدراً غير متحيز لتباين المجتمع.

Further Reading

Sources

References and further authoritative reading used in preparing this article.

  1. الدليل الإلكتروني لأساليب الإحصاء NIST/SEMATECH
  2. الانحراف المعياري - ويكيبيديا
  3. تصحيح بيسل

How to Read This Article

A statistics tutorial is a practical interpretation guide, not just a formula dump. It refers to the assumptions, notation, and reporting language that analysts need when they explain a result to a teacher, manager, client, or reviewer. The article body covers the specific topic, while the sections below create a common interpretation frame that readers can reuse across related metrics.

Reading goalWhat to focus onCommon mistake
DefinitionWhat the metric is and what quantity it summarizesTreating the formula as self-explanatory
Formula choiceSample versus population assumptions and notationUsing n when n-1 is required or vice versa
InterpretationWhether the result indicates concentration, spread, or riskCalling a large value good or bad without context

Frequently Asked Questions

How should I interpret a high standard deviation?

A high standard deviation means the observations are spread farther from the mean on average. Whether that spread is acceptable depends on the context: wide dispersion might signal risk in finance, instability in manufacturing, or genuine natural variation in scientific data.

Why do some articles mention n while others mention n-1?

The denominator reflects the difference between population and sample formulas. Population variance and population standard deviation use N because the full dataset is known. Sample variance and sample standard deviation often use n-1 because Bessel’s correction reduces bias when estimating population spread from a sample.

What is a statistical interpretation guide?

A statistical interpretation guide is a page that moves beyond arithmetic and explains meaning. It tells you what a metric is, when the formula applies, and how to describe the result in plain English without overstating certainty.

Can I cite this article in a report?

You should cite the underlying authoritative reference for formal work whenever possible. This page is best used as an explanatory bridge that helps you understand the concept before quoting the original standard or handbook.

Why include direct citations on every article page?

Direct citations give readers a route to verify the definition, notation, and assumptions. That improves trust and reduces the chance that a simplified explanation is mistaken for the entire technical standard.

Authoritative References

These sources define the concepts referenced most often across our articles. Bessel's correction is a sample adjustment, variance is a squared measure of spread, and standard deviation is the square root of variance expressed in the same units as the data.