My Initials are WSF. So from last time I have
a=3
b=2
c=0
So my function is f(x)=3x2+2x.
Let g(x)=x2+γ and φ(x)=αx+β.
Then
f(φ(x))=3(αx+β)2+2(αx+β)=(3α2)x2+(6αβ+2α)x+(3β2+2β)
φ(g(x))=α(x2+γ)+β=αx2+(αγ+β)
Setting f(φ(x))=φ(g(x)), we can construct the following system of equations:
3α2=α
6αβ+2α=0
3β2+2β=αγ+β
Solving these equations gives us α=1/3, β=−1/3, and γ=0.
So then g(x)=x2 and φ(x)=(1/3)x−1/3.
Lastly, we’ll check to see if we got the right α, β, and γ.
f(φ(x))=3((1/3)x−1/3)2+2((1/3)x−1/3)=(1/3)x2−1/3
φ(g(x))=(1/3)x2−1/3
We got it!
Now we will compute the first five terms of the critical orbits for f and g.
First, let’s find the critical points for f and g.
Note that f′(x)=6x+2=0 implies that x=−1/3 and g′(x)=2x=0 implies that x=0.
Using Mathematica and our critical points, we generate the first five terms of the critical orbits for f and g.
For f we have:
NestList[3*#^2 + 2*# &, -1/3, 4]
{-(1/3), -(1/3), -(1/3), -(1/3), -(1/3)}
For g we have:
NestList[#^2 &, 0, 4]
{0, 0, 0, 0, 0}
Interestingly, our critical points for f and g were also fixed points.
Now, we will look at the image of the critical orbit of g, {0,0,0,0,0}, under φ.
Note that φ(0)=(1/3)⋅0−1/3=−1/3.
So then the image of {0,0,0,0,0} under φ is {−(1/3),−(1/3),−(1/3),−(1/3),−(1/3)}, which is the critical orbit of f.