The context: I want to show how prime factorisation patterns repeat along the number line. I've taken three consecutive integers, the first containing 2^3, the second 3^2, the third 5^1. Taking respective multiples p, q, r, this gives me a set of equations and a set of conditions, namely neither 2 nor 3 nor 5 can divide any of them. I've also found that p, q, r must all end in a '1'. What's the most efficient way to search for a solution set other than (1, 1, 1)?,
Asked
Active
Viewed 56 times
1 Answers
-1
If $9|(8p+1)$ then you can prove that $ 8p\equiv -1(mod9)$ so $p\equiv 1 (mod9)$.
Similarly if $10|(9q+1)$ then try and prove that $q\equiv 1(mod 10)$.
If $10|(8p+2)$ $\implies 5|(4p+1)$ then $p\equiv 1(mod 5)$. Since 9, 5 are coprime, you can write that $p\equiv 1(mod 45)$. Hence, $$p=45x+1, q=40x+1, r=36x+1$$ form a solution for natural x. I derived q and r via $q=\frac{8p+1}{9}$ and $r=\frac{9q+1}{10}$.

insipidintegrator
- 6,642
-
Incorrect. Easier: by a shift it immediately reduces to an $,\rm lcm$ - see my prior comment on the question. – Bill Dubuque Jun 25 '22 at 09:56
-
@BillDubuque which part is wrong exactly? I haven’t done number theory for about two years so this answer was kind of a guess. Can you please point out the line which I should correct? – insipidintegrator Jun 25 '22 at 11:10
-
Your $nx$'s should be half that, e.g. $,p = 45x+1,$ for the general solution. Maybe you took the moduli product instead of their lcm. – Bill Dubuque Jun 25 '22 at 11:31
-
-
You didn't $\color{#c00}{\rm cancel\ 2}$ here: $,10\mid 8p!+!2!!!\overset{\large \color{#c00}{\div 2!}}\iff 5\mid 4p!+!1\iff p\equiv 1\pmod{!5},,$ so your claimed solution $,p\equiv 1\pmod{!10},$ is missing the solutions $,p\equiv 6\pmod{!10},,$ e.g. $,p=6.\ \ $ – Bill Dubuque Jun 25 '22 at 13:42
-
$$\begin{align} &1+8p = 9q, = 10r-1\[.2em] \iff &\ \ \ \ \ \ \ 8\bar p = 9\bar q = 10\bar r =: ,m\[.2em] \iff &\ \ 8,9,10\mid m\[.2em] \iff &\ \ m = 360n,,\ {\rm by,\ lcm}(8,9,10)=360\[.2em] \iff &\ \ (\bar p,\bar q,\bar r) = (45n,40n,36n) \end{align}\qquad\qquad$$
– Bill Dubuque Jun 25 '22 at 09:30