Recently, I came across the following equation: $$2^x=4x$$ To solve it, I decided to iterate. Firstly I stated: $$x_{n+1}=\frac{2^{x_n}}{4},x_0=1$$ and found a solution of $x\approx 0.3099069324$.
Then I again rearranged it to: $$x_{n+1}=\log_{2}({4x_n}), x_0=1,$$ and achieved the solution $x=4$.
Despite trying many values, I was unable to get these iterations to find the other solution. What I would like to know is: what is the reasoning behind this?
I have seen a similar thing happen in the case of other iterations, where I iterate for a solution in different ways and get two different (correct) solutions - and it has perplexed me.
You are aiming at fixed points of two different functions.
Some fixed points are attractors and some are repellers.
If you graph your functions you see as you iterate, the points tend to the attractor and stay away from the repeller.
For $f(x) = \frac {2^x}{4}$ the point $x\approx 0.3099069324$ is an attractor and $x=4$ is a repeller.
For the other function it is the other way around.