Collatz conjecture If the function $f(n)$ is applied recursively enough number of times on any positive integer $n$, then unity will always be reached. \begin{align*} f(n) &= \left\{ \begin{array}{ll} n/2 &\text{if }n \bmod2=0 \\ 3n+1 &\text{if }n \bmod2=1 \end{array} \right.\\ \strut\\ \end{align*}
It is an unproven problem. This question explores various approaches to attack the problem. It seems following approach is not discussed there.
Start with unity and apply the inverse function $g(n)$ recursively. Visualize each positive integer as a node and each iteration as a path. To prove the conjecture, one has to show that every node will be reached eventually. To disprove the conjecture, one has to show that there exist at least one node which will never be reached. \begin{align*} g(n) &= \left\{ \begin{array}{ll} 2n &\text{if }n \bmod2=0 \\ (n-1)/3 &\text{if }n \bmod2=0 \hspace{5pt} \& \hspace{5pt} n \bmod3=1 \\ 2n &\text{if }n \bmod2=1 \end{array} \right.\\ \strut\\ \end{align*} Note that while $f(n)$ is a one to one function, $g(n)$ is not.
What work has been done using this approach? Also, if you can comment or throw some insight on the approach, it will be appreciated.