Compare two samples accurately today.
Statistical inference heavily relies on measuring how far sample evidence deviates from a null hypothesis. Depending on your data type, different equations formulate the standardized test statistic.
When comparing two independent proportions, the pooled proportion $p_c$ is calculated first:
$$p_c = \frac{x_1 + x_2}{n_1 + n_2}$$
The standard error ($SE$) and test statistic ($Z$) follow:
$$Z = \frac{(\hat{p}_1 - \hat{p}_2) - d_0}{\sqrt{p_c(1 - p_c)(\frac{1}{n_1} + \frac{1}{n_2})}}$$
When population standard deviations are unknown, the standard error for unpooled (Welch's) data uses sample variances:
$$T = \frac{(\bar{x}_1 - \bar{x}_2) - d_0}{\sqrt{\frac{s_1^2}{n_1} + \frac{s_2^2}{n_2}}}$$
It is a metric showing how many standard errors a sample estimate lies away from the hypothesized population parameter value.
Use a Z-test when sample sizes are large or population standard deviations are known, whereas T-tests fit smaller samples with unknown variances.
Checking the pooled variance option forces the algorithm to combine sample variances, assuming both underlying populations share identical spreads.
Important Note: All the Calculators listed in this site are for educational purpose only and we do not guarentee the accuracy of results. Please do consult with other sources as well.