πŸ“ Parametric Test

Student's t-Test

Compare means when the population standard deviation is unknown. Supports one-sample, two-sample (Welch's), and paired designs. Exact p-values from the t-distribution.

Input
Results

One-sample t statistic:

t = (xΜ„ βˆ’ ΞΌβ‚€) / (s / √n)

Degrees of freedom:

df = n βˆ’ 1

95% CI for ΞΌ:

xΜ„ Β± t*(Ξ±/2, n-1) Γ— (s / √n)
Input
Results

Welch's t-test (unequal variances):

t = (x̄₁ βˆ’ xΜ„β‚‚) / √(s₁²/n₁ + sβ‚‚Β²/nβ‚‚)

Welch-Satterthwaite degrees of freedom:

df = (s₁²/n₁ + sβ‚‚Β²/nβ‚‚)Β² / [(s₁²/n₁)Β²/(n₁-1) + (sβ‚‚Β²/nβ‚‚)Β²/(nβ‚‚-1)]

Pooled t-test (equal variances):

spΒ² = [(n₁-1)s₁² + (nβ‚‚-1)sβ‚‚Β²] / (n₁+nβ‚‚-2) t = (x̄₁ βˆ’ xΜ„β‚‚) / (sp Γ— √(1/n₁ + 1/nβ‚‚))
Input
Results

Compute differences dα΅’ = x₁ᡒ βˆ’ xβ‚‚α΅’, then:

t = dΜ„ / (sd / √n)

Degrees of freedom:

df = n βˆ’ 1

CI for mean difference:

dΜ„ Β± t*(Ξ±/2, n-1) Γ— (sd / √n)