Now let’s combine all these rules:
To transform the function “a f(b(x+c))+d”;
1.Set some points of f(x)
x: ,p ,p’ ,p”,
y: ,s ,s’ ,s”,
2.Multiply only the “y” numbers by “a”
x: ,p ,p’ ,p”,
y: ,S*a ,s’*a ,s”*a,
3.Divide only the “x” numbers by “b”
x: ,p/b ,p'/b ,p"/b,
y: ,S*a ,s’*a ,s”*a,
4.Add the amount of “-c” to only the “x” numbersx: ,p/b - c ,p'/b - c ,p"/b - c,y: ,S*a ,s’*a ,s”*a,5.Add the amount of “d” to only the “y” numbersx: ,p/b - c ,p'/b - c ,p"/b - c,y: ,(S*a)+d ,(s”*a)+d ,(s’*a)+d,
Abstract: