3

I was wondering whether the following statement is true, and if so, how to prove it:

for all $n\in\mathbb{N}$, there exist prime numbers $p$ and $q$ such that $p\equiv1$ (mod $n$) and $q\equiv-1$ (mod $n$)

Feels like it should be true and that it should be fairly easy to prove, but I don't have any idea how. Could someone please shine some light on this for me?

t-tough
  • 378

1 Answers1

-1

Comment: You can construct such primes; tank an arbitrary number like n= 7 we can have:

$p=2\times7-1=13$$p=13\equiv -1 \mod (2)$

$q=6\times 7+1=43$$q=43 \equiv 1 \mod 7$

In fact we must have:

$p=k\cdot n+1$

$q=t\cdot n-1$

From second relation we have:

$n=\frac{q+1}t$

Plugging this in first relation we get:

$p=\frac k t (q+1)+1=\frac kt q+\frac kt +1$

Let $\frac kt=a$ then:

$p=a q + a+1$

This equation has infinite solutions for p, q for certain value of a, among them primes for p and q. The condition is $k>t ; t|k$.

sirous
  • 10,751