Define a function 1 which is $f_1(x)=a-1/x$ and function 2 which is $f_2(x)=1-ax $
If I set both to zero I am looking for when $x=1/a$ as the root using Newtons method.
When I do this I get two different answers however and they should surely both be the same.
for 1 I get $$x(n+1)=x(n)+x(n) (1-ax(n) )$$ and for 2 I get $$x(n+1)=x(n)+(1/a)(1-ax(n))$$
difference being the $1/a$ term.