Predict: Connect the First and Last Points?
A student fits a line by connecting the leftmost and rightmost points.
- Is this a good way to draw a line of fit?
- Commit to yes or no before advancing
There's a reason this one trips people up.
Answer: No — it ignores all the middle data and tilts badly if an endpoint is unusual.
Your Turn: Draw a Line, Find Its Equation
For a roughly linear study-hours data set:
- Draw a balancing line through the cloud
- Pick two points on the line; find slope and intercept
- Write the equation
Draw, write the equation, then advance.
Answer: Any balanced line with its two-point equation is acceptable.
Everyone's Line Differs — We Need One
Your eyeballed lines all differ slightly — all reasonable.
- "The best line" is still ambiguous
- We need one precisely defined, reproducible line
That's the least-squares regression line.
Technology Computes the Least-Squares Line
The calculator or spreadsheet returns the one best-fit line.
- LinReg on a calculator; SLOPE/INTERCEPT or LINEST in a sheet
- Enter the data, run it, read
One precise rule, the same equation for everyone.
Run LinReg on the Study-Hours Data
Step 1: Enter the study-hours and test-score data
Step 2: Run LinReg
Step 3: Read the returned equation
Compare to an eyeballed
"Best" Means Smallest Total Squared Misses
- Each point has a residual — a vertical miss
- Least-squares makes the total of squared misses smallest
Regression vs Eyeballed: Close but Precise
The two lines are close, with one difference:
- The eyeballed line is a good estimate
- The regression line is precisely defined and reproducible
A small difference between them is expected, not an error.
Use the Regression Line to Predict
Using
Substitute
The model predicts about a 74 — a trend estimate, not exact.
Quick Check: Is the Hand Line Wrong?
Your hand line is
- Is your line wrong?
- Explain in one sentence.
Decide, then advance.
Answer: No — a good eyeballed line is close to, not identical to, the regression line.
Your Turn: Run a Regression, Then Predict
For an hours-vs-free-throws data set:
- State how you'd run the regression
- Using
, predict the makes at 8 hours
Run it, predict, then advance.
Answer: LinReg → equation;
Full Task: Confirm, Eyeball, Regress, Predict
Given a linear-looking scatter plot:
- Confirm the form is linear
- Draw a line of fit; write its equation
- Find the regression line; predict
Do all three, then advance.
Answer: Confirm form; hand line + equation; LinReg line; substitute to predict.
Key Takeaways and What's Next
✓ Confirm linear form before fitting a line
✓ A line of fit balances the cloud — may touch no point
✓ Least-squares is the reproducible best fit
Slope is the rate, not fit quality
A good hand line is close to, not identical to, regression
Next: interpret the slope and intercept (C.7).
Click to begin the narrated lesson
Fit a linear function to a scatter plot