B Consecutive integers, each relatively prime to some k

  • B
  • Thread starter Thread starter r731
  • Start date Start date
  • Tags Tags
    Integers Prime
r731
Messages
40
Reaction score
6
Hello,

Say I have some integer n in some interval such that,
gcd(n, k) = gcd(n + 1, k) = 1, for some composite odd integer k >= 9
I want to know if such n exists in that interval. To know that one exists suffices.

I have tried to think in terms of modular arithmetic where for all primes in k, the smaller of which is "embedded" inside the larger one: e.g. given two primes 5 and 13, the latter determines the outer "clock" while, beginning from zero, number 5 puts marks on that clock (which uses arithmetic modulo 13). For some obvious reasons, this got really complicated...

I'm not sure either whether writing out a linear combination for each gcd will lead somewhere.

I'm not expecting a full solution. I just need some guidance (or to know whether this is solvable at all).
Thanks.
 
Mathematics news on Phys.org
gcd(k,k+1)=1 for all k∈ℤ. Start with n=k+1 and try to find a k such that gcd(k,k+2)=1

Edit: Sorry, I think I misread your post. Are you looking for a specific example, or are you looking for a general test?
 
r731 said:
Say I have some integer n in some interval such that,
gcd(n, k) = gcd(n + 1, k) = 1, for some composite odd integer k >= 9
I want to know if such n exists in that interval. To know that one exists suffices.
The question is unclear. What is the interval you are asking about, and what role does it play in the question?

Certainly we can find integers n and k that satisfy your equation, for instance:

n=5, k=91=13x7 gives gcd(5,91)=gcd(6,91)=1
 
Here is an example:

Show that,
gcd(x, 5005) = gcd(x + 1, 5005) = 1 is true for some x,
where 2085 < x < 2110 and 5005 = 5*7*11*13

(Numbers 2085 and 2110 are not totally arbitrary.)

I need to show that it's true, in a general way. I'm not looking for a method "similar" to the sieve of Eratosthenes; not an algorithm, where the output of which is examined for each input. It's easy to prove the above example by using a program, but that method is not general.

Hopefully I made it more clear...
 
It is not true in general. For instance there is no x such that
gcd(x, 105) = gcd(x + 1, 105) = 1
and
13 < x < 16.

To get a provable proposition, you will need to introduce some constraints on what the bounds of the interval may be. You said that the bounds in your example were not totally arbitrary. Are you able to work out a rule for what sorts of bounds you wish to consider?
 
Insights auto threads is broken atm, so I'm manually creating these for new Insight articles. In Dirac’s Principles of Quantum Mechanics published in 1930 he introduced a “convenient notation” he referred to as a “delta function” which he treated as a continuum analog to the discrete Kronecker delta. The Kronecker delta is simply the indexed components of the identity operator in matrix algebra Source: https://www.physicsforums.com/insights/what-exactly-is-diracs-delta-function/ by...
Fermat's Last Theorem has long been one of the most famous mathematical problems, and is now one of the most famous theorems. It simply states that the equation $$ a^n+b^n=c^n $$ has no solutions with positive integers if ##n>2.## It was named after Pierre de Fermat (1607-1665). The problem itself stems from the book Arithmetica by Diophantus of Alexandria. It gained popularity because Fermat noted in his copy "Cubum autem in duos cubos, aut quadratoquadratum in duos quadratoquadratos, et...
I'm interested to know whether the equation $$1 = 2 - \frac{1}{2 - \frac{1}{2 - \cdots}}$$ is true or not. It can be shown easily that if the continued fraction converges, it cannot converge to anything else than 1. It seems that if the continued fraction converges, the convergence is very slow. The apparent slowness of the convergence makes it difficult to estimate the presence of true convergence numerically. At the moment I don't know whether this converges or not.
Back
Top