🧠MindStat

⚠️ Calculator not found

This calculator does not exist or may have been moved.

Browse all calculators
📊
Distribution

Chi-Square Calculator — Critical Value Table

Free chi-square (χ²) distribution calculator. Compute p-values from a χ² statistic and degrees of freedom, plus critical χ² values — for the test of independence, goodness-of-fit, and variance tests.

📊 χ² = 16.92, df = 9 → p = .0500
Live calculator
🧮 Live Calculator
P(χ² ≤ x)
P(χ² ≥ x) (p-value)
Critical χ² (upper tail)
Got your number. Need a full analysis of your own data? Open MindStat
Formula, reference table & FAQ

The chi-square (χ²) distribution arises as the sum of k independent squared standard-normal variables, which makes it the natural reference distribution for anything built from squared deviations: the chi-square test of independence for contingency tables, the goodness-of-fit test, and the confidence interval for a single population variance. Because it is a sum of squares, χ² is never negative and is right-skewed, especially at low degrees of freedom (df) — as df grows, it gradually approaches a normal shape. df is usually determined by the table's structure, e.g. (rows − 1) × (columns − 1) for a contingency table.

Chi-square goodness-of-fit
χ2=i=1k(OiEi)2Ei

Critical χ² Values (upper tail)

dfχ².90 (α=.10)χ².95 (α=.05)χ².975 (α=.025)χ².99 (α=.01)
12.7063.8415.0246.635
24.6055.9917.3789.210
36.2517.8159.34811.345
47.7799.48811.14313.277
59.23611.07012.83315.086
610.64512.59214.44916.812
712.01714.06716.01318.475
813.36215.50717.53520.090
914.68416.91919.02321.666
1015.98718.30720.48323.209
1522.30724.99627.48830.578
2028.41231.41034.17037.566
2534.38237.65240.64644.314
3040.25643.77346.97950.892
4051.80555.75859.34263.691
5063.16767.50571.42076.154
6074.39779.08283.29888.379
8096.578101.879106.629112.329
100118.498124.342129.561135.807
Generated directly from src/core/distributions.js (chiInv) — never hand-typed.

Frequently Asked Questions

Why is chi-square always positive?
Because it is defined as a sum of squared terms — Σ(Oᵢ−Eᵢ)²/Eᵢ or a sum of squared standard-normal variables — and a square can never be negative. The distribution's support is [0, ∞), which is also why, unlike the normal or t distributions, chi-square tests are typically one-tailed (only large χ² values are 'unusual').
How do I find df for a contingency table?
For a chi-square test of independence on an r × c contingency table, df = (r − 1) × (c − 1). For example, a 2×2 table (two groups, two outcomes) has df = 1; a 3×4 table has df = 6. For a goodness-of-fit test against k categories, df = k − 1 (minus one more per estimated parameter, if any).
What does a large chi-square statistic mean?
A large χ² means the observed frequencies deviate substantially from what the null hypothesis (independence, or the specified distribution) predicts. Whether that deviation is 'significant' depends on comparing it to the critical value for the chosen α and df — this calculator's p-value (P(χ² ≥ x)) gives the exact probability of observing a deviation this large, or larger, purely by chance under the null.
Is chi-square the same as Cramér's V?
No — chi-square (χ²) is a test statistic that indicates whether an association exists and how likely it is by chance, but it grows mechanically with sample size and has no fixed upper bound, so it cannot be compared across studies. Cramér's V rescales χ² into a bounded [0, 1] effect-size measure, which is what should be reported and compared alongside the significance test.