Polynomial Regression Preview

BOD=a0·Time+a1·Time2
Data-Table
 TimeBOD
110.6
220.7
341.5
461.9
582.1
6102.6
7122.9
8143.7
9163.5
10183.7
11203.8

Program validated. Ready to Solve.
# Example 12 (c) - 2nd degree polynomial passing through the origin fit to BOD data
# BOD = a1*Time + a2*Time^2
# Verified Solution: a1 = 0.354779, a2 = -0.008236

[
Time BOD
1 0.6
2 0.7
4 1.5
6 1.9
8 2.1
10 2.6
12 2.9
14 3.7
16 3.5
18 3.7
20 3.8
]
polyfit Time BOD 2 origin

Regression Model

y = a0 x + a1 x2

where y represents BOD and x represents Time

VariableValue95% confidence
a00.354779390.0441714
a1-0.00823581830.00272357

R²adjRmsdVariance
0.9766050.9740060.05218910.0366186

2nd order Polynomial Regression
Chart
2nd order Polynomial Regression BOD Residuals
Chart

Data Table

 Time (x)BOD (y)Calculated YResidual %
110.60.3465435742.24%
220.70.676615513.341%
341.51.287344514.18%
461.91.83218693.569%
582.12.3111427-10.05%
6102.62.7242121-4.777%
7122.93.0713948-5.910%
8143.73.35269119.387%
9163.53.5681007-1.946%
10183.73.7176239-0.4763%
11203.83.8012605-0.03317%

Settings and Hints

 Name/SourceValueType
1 Polynomial Degree 2 Setting
2 Through Origin true Setting
3 Data Points 11 Setting
4 y=pol(x) BOD=pol(Time) Setting
5 Version 7.0.73 Setting
6 #@report_fix_digits = 8 Default (integer)
7 #@chart_size = 428,300 Default (array)
8 #@report_show_charts = true Default (boolean)
9 #@report_show_data_points = true Default (boolean)
10 #@report_show_source = true Default (boolean)
11 #@report_show_header = false Default (boolean)
12 #@report_show_settings = true Default (boolean)

Messages

 SeverityDescription
1Info-Infor- 2 Known vectors variables (Time, BOD)
2Info-Infor- 0 Explicit expressions
3Info-Infor- Regression command: polyfit Time BOD 2 origin

Source

# Example 12 (c) - 2nd degree polynomial passing through the origin fit to BOD data
# BOD = a1*Time + a2*Time^2
# Verified Solution: a1 = 0.354779, a2 = -0.008236

[
Time BOD
1 0.6
2 0.7
4 1.5
6 1.9
8 2.1
10 2.6
12 2.9
14 3.7
16 3.5
18 3.7
20 3.8
]
polyfit Time BOD 2 origin