- #1
logicgate
- 13
- 2
- TL;DR Summary
- I just want to know if my attempt is valid and correct. If it's not, then how can I improve it to make it better.
So assuming I have a graph of a parent function f(x) and I want to graph for example the function f(2x+1). I need to find a way to manipulate the function f(x) to make it look like the function f(2x+1).
For the parent function f(x) I have coordinates of (x , y).
And for the function f(2x+1) I have coordinates of (???, y).
Since both functions have the y coordinate the same, I can equate both functions : f(2x+1) = f(x).
My goal is to manipulate both sides so that the new function f(2x+1) becomes the same as the parent function.
I begin with subtracting one from both sides : f(2x) = f(x-1)
Then divide both sides by 2 : f(x) = f((x-1)/2)
This tells me that the x-coordinate of f(2x + 1) is (x-1)/2
Which means that if I want to move from parent function to f(2x+1), from every point on parent function I have to move one step to the left then divide by 2 to get into the function f(2x+1)
Is my approach valid ?
For the parent function f(x) I have coordinates of (x , y).
And for the function f(2x+1) I have coordinates of (???, y).
Since both functions have the y coordinate the same, I can equate both functions : f(2x+1) = f(x).
My goal is to manipulate both sides so that the new function f(2x+1) becomes the same as the parent function.
I begin with subtracting one from both sides : f(2x) = f(x-1)
Then divide both sides by 2 : f(x) = f((x-1)/2)
This tells me that the x-coordinate of f(2x + 1) is (x-1)/2
Which means that if I want to move from parent function to f(2x+1), from every point on parent function I have to move one step to the left then divide by 2 to get into the function f(2x+1)
Is my approach valid ?