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:β1≠0
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)=√n∑i=1e2in−2n∑i=1(xi−ˉx)2
The test statistic, T0, follows a t distribution with (n−2) 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,n−2<T0<tα/2,n−2
where tα/2,n−2 and −tα/2,n−2 are the critical values for the two-sided hypothesis. tα/2,n−2 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.