I have been thinking a lot about prime gaps.
It seemed to me that it is much easier to reason about reduced residue systems which can then be used to reason back to prime gaps.
Below is an example of thinking about prime gaps through reasoning about reduced residue systems. Instead of reasoning about $p_{n+1} - p_{n}$, I find it much easier to think about $c_{n,i+1} - c_{n,i}$.
Let:
- $p_n$ be the $n$th prime
- $c_{n,i}$ be the $i$th element in the ordered list of integers relatively prime to $p_n$ so that $c_{n,1} = 1$ and $c_{n,p_n-1} = p_n-1$ and $c_{n,p_n} = p_n+1$
- $D_n(x)$ be defined for $x > n$ to be the least $j-i$ where:
- $j > i$
- $p_x | c_{n,j}$
- $p_x | c_{n,i}$
- $G_n(x,m)$ be defined for $x > n, m \ge 2$ to be the least $j - i$ where:
- $j > i$
- $p_x | c_{n,j}$
- $p_x | c_{n,i}$
- $c_{n,j} - c_{n,i}$ is a multiple of $m$
From this perspective, I was wondering if the following propositions are straight forward to show when reasoning with reduced residue systems.
Would the following assumptions be correct for all $n > 0$?
If $a > b$, then $D_n(a) \ge D_n(b)$
If $s > t$, then $G_n(a,s) \ge G_n(a,t)$
These seem obvious to me but I wanted to confirm since often there are edge cases that serve as counter examples to broad generalizations about primes.
I was working on arguments to confirm each assumption but I found the argument more complicated than I expected. Would there be a simple argument to confirm each assumption?
I did find a way to complete the above argument but I need to spend more time validating it to make sure that it does not contain a mistake.
Edit: I have added context for the question to address the concern that had been raised. Hopefully, my answer addresses the concern raised.