16.5 Hypothesis Testing on Parameters

The t tests are used to conduct hypothesis tests on the regression coefficients obtained in simple linear regression.

H0:β1=0 H1:β10

The test statistic used for this test is:

tstat=^β1se(^β1)

where β1 is the least square estimate of β1, and se(^β1) is its standard error. The value of se(^β1)can be calculated as follows:

se(ˆβ1)=ni=1e2in2ni=1(xiˉx)2

The test statistic, T0, follows a t distribution with (n2) degrees of freedom, where n is the total number of observations. The null hypothesis, H0, is not rejected if the calculated value of the test statistic (tstat) is such that:

tα/2,n2<T0<tα/2,n2

where tα/2,n2 and tα/2,n2 are the critical values for the two-sided hypothesis. tα/2,n2 is the percentile of the t distribution corresponding to a cumulative probability of (1α/2) and α is the significance level.

The test indicates if the fitted regression model is of value in explaining variations in the observations or if you are trying to impose a regression model when no true relationship exists between x and y. Failure to reject H0:β1=0 implies that no linear relationship exists between x and y.