Drawing trend lines through clouds of data points is called "regression analysis." When people draw trend lines with a straightedge through noisy data, they naturally tend to fit a line that minimizes the overall deviations of the points from the line. More specifically, they appear to minimize the sum of the squared deviations of the points from the line, since outlier points seem to exert more "pull" on the line than points closer to the line. So it makes sense to have a computer use that same criterion when calculating a trend line.

You should get output that looks like this:

There are lots of diagnostics provided here, but usually you only need to check a few noted in the figure. The most important are the t-statistics for the regression coefficients: do they exceed (in absolute value) the threshold value for whatever confidence level you want? A commonly-used confidence level is 95%, which corresponds to a t-statistic of about 2 (as long as you have any reasonable number of observations). The "null hypothesis" is that the coefficients are not significantly different from zero. Given the high t-statistics for these coefficients, we can reject this null hypothesis with very high (>99.99%) confidence.
Plugging in the coefficient estimates, we obtain the empirical demand equation: Q = 67.58 - 37.64P + e where e is the deviation of the actual data from the predicted line. Check this against the equation you derived in the first exercise: is it reasonably consistent?

Once you're comfortable with this analysis, try a multivariate regression analysis!