This document guides you through performing Simple Linear Regression (SLR) using a TI-84 calculator, showing step-by-step instructions, output interpretation, and a practical example.
STAT
.1: Edit
and press ENTER
.L1
, L2
, etc.
x
values (independent
variable) into L1
.y
values (dependent
variable) into L2
.L1
or L2
, you
can clear it by navigating to the column name (e.g., L1
),
pressing CLEAR
, and then ENTER
.Press STAT
, use the arrow keys to navigate to
CALC
, and choose 4: LinReg(ax + b)
.
You should see LinReg(ax+b)
appear on the screen. If
it does not, press 4
after navigating to
CALC
.
Next, you need to specify the lists where your data is stored. If
your x
values are in L1
and your
y
values are in L2
, enter:
LinReg(ax+b) L1, L2
Press 2ND
then 1
to insert L1
,
and press 2ND
then 2
to insert
L2
.
Press ENTER
. The calculator will display the
regression output.
The calculator will show the following results: - a: The slope (\(\hat{eta_1}\)) of the regression line. - b: The intercept (\(\hat{eta_0}\)) of the regression line. - r: The correlation coefficient, showing the strength and direction of the linear relationship. - r²: The coefficient of determination (\(R^2\)), indicating how well the regression line explains the data.
Suppose you have the following data:
L1 | 1 | 2 | 3 | 4 | 5 | 6 |
L2 | 2 | 4 | 5 | 4 | 5 | 7 |
x
values into
L1
and y
values into L2
.LinReg(ax+b) L1, L2
.a = 0.7857
b = 1.9048
r = 0.8995
r² = 0.8091
Equation of the Line: The equation of the regression line is: \[ \hat{y} = ax + b \] Substituting the values: \[ \hat{y} = 0.7857x + 1.9048 \]
Slope (a = 0.7857):
x
,
the y
value is expected to increase by approximately
0.7857.x
increases by 1, y
will increase by about 0.7857 units on
average.Intercept (b = 1.9048):
y
when
x
is 0.x = 0
, the
predicted y
value would be 1.9048.Correlation Coefficient (r = 0.8995):
r
is close to 1, it indicates a strong
positive linear relationship between x
and
y
.Coefficient of Determination (\(R^2 = 0.8091\)):
y
that can be explained by the linear
relationship with x
.y
is explained by the linear
relationship with x
.y
value for
x = 7
.x = 7
, the
predicted y
value is approximately 7.4.x
and y
lists have the same
number of data points.r
value does not show up, you may need to enable
the Diagnostic
feature:
2ND
then 0
(for CATALOG).DiagnosticOn
and press ENTER
twice.Following these steps and understanding the output will allow you to perform and interpret Simple Linear Regression using the TI-84 calculator effectively.