Processing math: 100%

We would like to understand the general model f2(x;a0,a1,a2)=a0+a1x+a2x2 where x≥0. How does the behavior of this model change when we change the values of the parameters a0, a1, and a2?

Upon exploring the function f2, we find the parameter a0 shifts the function vertically. In fact, the y-intercept of f2 is a0 because when x=0 we see f2(0)=a0+a1(0)+a2(02)=a0+0+0=a0. This behavior is demonstrated in the figure below.

On the right a0=80, a1=0.03, and a2=−0.00001, f2(x)=80+0.03x−0.00001x2 with x≥0.

On the left a0=40, a1=0.03, and a2=−0.00001, f2(x)=40+0.03x−0.00001x2 with x≥0.

x <- seq(-500,3000,5)

f <- function(x,a0=0,a1=0,a2=1){
  a0 + a1*x + a2*x^2
}
y1 <- f(x,80,0.03,-0.00001)
y2 <- f(x,40,0.03,-0.00001)


par(mfrow=c(1,2),mar=c(5,5,0.5,0.25),oma=c(0,0,2,0))
plot(x,y1,ylim=c(0,120),type='l',xlab="x",ylab='f(x)')
abline(h=0,lty=3,col='gray')
abline(v=0,lty=3,col='gray')
plot(x,y2,ylim=c(0,120),type='l',xlab="x",ylab='f(x)')
abline(h=0,lty=3,col='gray')
abline(v=0,lty=3,col='gray')
mtext('figure 1',outer=TRUE)

We see the curve in the right plot has a y-intercept (0,80) and the curve in the left plot has a y-intercept (0,40). Changing a0 from 80 to 40 shifts the curve down.

In the figures below we will demonstrate how the parameters a1 and a2 change the behavior of the function f2.

In the next figure the parameter values used are stated below.

On the right a0=80, a1=−0.03, and a2=−0.00001, f2(x)=80−0.03x−0.00001x2 with x≥0.

On the left a0=80, a1=0.03, and a2=−0.00001, f2(x)=80+0.03x−0.00001x2 with x≥0.

x <- seq(-3000,3000,5)

f <- function(x,a0=0,a1=0,a2=1){
  a0 + a1*x + a2*x^2
}
y1 <- f(x,80,-0.03,-0.00001)
y2 <- f(x,80,0.03,-0.00001)


par(mfrow=c(1,2),mar=c(5,5,0.5,0.25),oma=c(0,0,2,0))
plot(x,y1,ylim=c(0,120),type='l',xlab="x",ylab='f(x)')
abline(h=0,lty=3,col='gray')
abline(v=0,lty=3,col='gray')
plot(x,y2,ylim=c(0,120),type='l',xlab="x",ylab='f(x)')
abline(h=0,lty=3,col='gray')
abline(v=0,lty=3,col='gray')
mtext('figure 2',outer=TRUE)

We see a1 changes the location of the peak. In the right plot, when a1<0 the peak is on the left of the x-axis. In the left plot, when a1>0 the peak is on the right of the x-axis. In this figure with a2<0 the graphs opens down.

In the next figure the parameter values used are stated below.

On the right a0=80, a1=−0.03, and a2=0.00001, f2(x)=80−0.03x+0.00001x2 with x≥0.

On the left a0=80, a1=0.03, and a2=0.00001, f2(x)=40+0.03x+0.00001x2 with x≥0.

x <- seq(-3000,3000,5)

f <- function(x,a0=0,a1=0,a2=1){
  a0 + a1*x + a2*x^2
}
y1 <- f(x,80,-0.03,0.00001)
y2 <- f(x,80,0.03,0.00001)


par(mfrow=c(1,2),mar=c(5,5,0.5,0.25),oma=c(0,0,2,0))
plot(x,y1,ylim=c(0,120),type='l',xlab="x",ylab='f(x)')
abline(h=0,lty=3,col='gray')
abline(v=0,lty=3,col='gray')
plot(x,y2,ylim=c(0,120),type='l',xlab="x",ylab='f(x)')
abline(h=0,lty=3,col='gray')
abline(v=0,lty=3,col='gray')
mtext('figure 3',outer=TRUE)

Once again, we see a1 changes the location of the peak. In the right plot, when a1<0 the peak is on the right of the x-axis. In the left plot, when a1>0 the peak is on the left of the x-axis. In this figure with a2>0 the graphs opens up.

In the next figure the parameter values used are stated below.

On the right a0=80 and a2=−0.00001. The value of a1 is 0.03 for the blue curve and 0.01 for the green curve.

f2(x)=80+0.03x−0.00001x2 with x≥0 (blue curve, right plot)

f2(x)=80+0.01x−0.00001x2 with x≥0 (blue curve, right plot)

On the left a0=80 and a2=0.00001. The value of a1 is -0.03 for the blue curve and -0.01 for the green curve.

f2(x)=80−0.03x+0.00001x2 with x≥0 (blue curve, left plot)

f2(x)=80−0.01x+0.00001x2 with x≥0 (blue curve, left plot)

x <- seq(-500,3000,5)

f <- function(x,a0=0,a1=0,a2=1){
  a0 + a1*x + a2*x^2
}
y1 <- f(x,80,0.03,-0.00001)
y2 <- f(x,80,0.01,-0.00001)

y3 <- f(x,80,-0.03,0.00001)
y4 <- f(x,80,-0.01,0.00001)


par(mfrow=c(1,2),mar=c(5,5,0.5,0.25),oma=c(0,0,2,0))
plot(x,y1,ylim=c(0,120),type='l',xlab="x",ylab='f(x)',col='blue')
lines(x,y2,col='green')
abline(h=0,lty=3,col='gray')
abline(v=0,lty=3,col='gray')
plot(x,y3,ylim=c(0,120),type='l',xlab="x",ylab='f(x)',col='blue')
lines(x,y4,col='green')
abline(h=0,lty=3,col='gray')
abline(v=0,lty=3,col='gray')
mtext('figure 4',outer=TRUE)

We see as a1 get closer to zero, the height of the peak gets smaller (left plot) or the place of the valley is higher (right plot). We also see the width of the opening at y=80 is less when a1 gets closer to zero. We also see the curve at (0,80) is less steep when a1 is closer to zero.

In summary, we have observed some key characteristics of f2 influenced by the parameters a0, a1, and a2. We see a0 shifts the curve up and down and a2 determines whether the curve opens up or opens down. We also see that a1 is involved with which side of the y-axis the peak (or valley) is and how wide the opening of the curve will be. We have also seen there there is some interaction between a1 and a2 in these behaviors.