Chapter 3: Problem 9
Fit the data with the models given, using least squares. Data for the ponderosa pine $$ \begin{array}{l|llllllllllllll} x & 17 & 19 & 20 & 22 & 23 & 25 & 28 & 31 & 32 & 33 & 36 & 37 & 39 & 42 \\ \hline y & 19 & 25 & 32 & 51 & 57 & 71 & 113 & 140 & 153 & 187 & 192 & 205 & 250 & 260 \end{array} $$ a. \(y=a x+b\) b. \(y=a x^{2}\) c. \(y=a x^{3}\) d. \(y=a x^{3}+b x^{2}+c\)
Short Answer
Step by step solution
Understanding the Data
Formula for Least Squares
Model a - Linear Fit
Model b - Quadratic Fit
Model c - Cubic Fit
Model d - Polynomial Fit
Unlock Step-by-Step Solutions & Ace Your Exams!
-
Full Textbook Solutions
Get detailed explanations and key concepts
-
Unlimited Al creation
Al flashcards, explanations, exams and more...
-
Ads-free access
To over 500 millions flashcards
-
Money-back guarantee
We refund you if you fail your exam.
Over 30 million students worldwide already upgrade their learning with 91Ó°ÊÓ!
Key Concepts
These are the key concepts you need to understand to accurately answer the question.
Linear Regression
- \( y = ax + b \)
- \[ a = \frac{n\sum{x_iy_i} - \sum{x_i}\sum{y_i}}{n\sum{x_i^2} - (\sum{x_i})^2} \]
- \[ b = \frac{\sum{y_i} - a\sum{x_i}}{n} \]
Quadratic Fit
- \( y = ax^2 \)
- \[ a = \frac{\sum{x_i^2 y_i}}{\sum{x_i^4}} \]
Cubic Fit
- \( y = ax^3 \)
- \[ a = \frac{\sum{x_i^3 y_i}}{\sum{x_i^6}} \]
Polynomial Model
- \( y = ax^3 + bx^2 + c \)
- \( \sum{y_i} = c n + b \sum{x_i^2} + a \sum{x_i^3} \)
- \( \sum{x_i^2 y_i} = c \sum{x_i^2} + b \sum{x_i^4} + a \sum{x_i^5} \)
- \( \sum{x_i^3 y_i} = c \sum{x_i^3} + b \sum{x_i^5} + a \sum{x_i^6} \)