The Wilcoxon Signed-Rank Test is a non-parametric statistical method used to compare median differences between paired observations. It serves as an alternative to the paired t-test when data does not meet the assumption of normality.
The test was introduced by statistician Frank Wilcoxon in 1945 as part of early developments in non-parametric statistics. Unlike parametric tests, it does not rely on the assumption of normally distributed differences. Instead, it ranks the absolute differences between paired values and assigns a positive or negative sign depending on the direction of change. This ranking approach makes the test more sensitive than the simpler 1-Sample Sign Test.
Formula
\(
T = \min(W^+, W^-)
\)
where
\(
W^+ = \sum \text{positive signed ranks}, \quad W^- = \sum \text{negative signed ranks}
\)
For large samples, \(T\) can be approximated by a normal distribution with
\[
z = \frac{T – \frac{n(n+1)}{4}}{\sqrt{\frac{n(n+1)(2n+1)}{24}}}
\]
where \(n\) is the number of non-zero differences.
The Wilcoxon Signed-Rank Test is widely applied in education, healthcare, and behavioural research.
This test balances robustness and sensitivity, making it ideal for paired data that violates normality assumptions. It is more powerful than the 1-Sample Sign Test while avoiding strict distributional requirements. Its broad applicability ensures reliable results in fields such as medicine, education, and social sciences.