Given the function
$$ S(n) = \begin{cases} \frac{n}{2}, & \text{if $n$ is even} \\ n + 1, & \text{if $n$ is odd} \end{cases} $$
Prove the conjecture: for any positive integer $n$, if you apply the function $S(n)$ repeatdly, it will eventually reach 1.
To prove this you just need to combine the $n + 1$ and the $\frac{n}{2}$ steps, as an odd number when added an odd number always become even.
$$ S(n) = \begin{cases} \frac{n}{2}, & \text{if $n$ is even} \\ \frac{n + 1}{2}, & \text{if $n$ is odd} \end{cases} $$
This way you just need to prove that the output of the function is always smaller than the input for any value bigger than 1, because the value will become smaller and smaller when applying the function which means that it will eventually reach the minimun value (1).
Case 1: $\frac{n}{2} < n \implies n < 2n \implies 0 < n \implies n > 0 \implies n > 1$
Case 2: $\frac{n + 1}{2} < n \implies n + 1 < 2n \implies 1 < n \implies n > 1$
Which proves the conjecture.
My question is about when the increment is a huge number
$$ S(n) = \begin{cases} \frac{n}{2}, & \text{if $n$ is even} \\ \frac{n + 10^{10^{100}} + 1}{2}, & \text{if $n$ is odd} \end{cases} $$
How can one prove any starting positive integer will reach a loop? (It might have multiple loops)
For $$ S(n) = \begin{cases} \frac{n}{2}, & \text{if $n$ is even} \\ n + 1 & \text{if $n$ is odd} \end{cases} $$
All you need to prove is that for $n \ge 2$ there will be an element less than $n$ in the sequence. And that is obviously the case since $\frac{n}{2} < n$ and $\frac{n + 1}{2} < n$ for any $n \ge 2$
For $$ S(n) = \begin{cases} \frac{n}{2}, & \text{if $n$ is even} \\ n + k & \text{if $n$ is odd} \end{cases} $$
With your huge odd increment $k$, two steps give $\frac{n + k}{2}$ which is less than $n$ if $n > k$. So the sequence shrinks until $n \le k$, and remains $\le k$. Since there is a finite number of values $n \le k$ the sequence must repeat.
On the other hand $n \ge \frac{k}{2}$ after each step so it’s not going to reach $n = 1$ or any $n < \frac{k}{2}$ ever.