2

I think I am missing something very obvious here, but I've got the following question:

Be $k,m,n \in \mathbb{Z}$ with $n \ge m$, $n > k$, $n \mid k \cdot m$ and $m \nmid n$

Does this imply $k \mid n$?

swizzor
  • 53

3 Answers3

2

No. For a counterexample, you can take $k = 6, m = 10$, and $n = 15$.

It is possible you are misremembering the following similar statement.

If $a \mid bc$ and $\gcd(a,b) = 1$, then $a \mid c$. This is stated and proved on MSE elsewhere.

0

Having a computer helps with this sort of problems.

The following code checks if the conjecture holds for $1\leq n,k,m\leq \max$

int main(){
        int MAX=10;
        for(int n=1;n<=MAX;n++){
                for(int k=1;k < n;k++){
                        for(int m=1;m<=n;m++){
                                if( (m*k)%n==0 && n%m != 0 && n%k!=0){
                                        printf("n = %d, k =  %d, m =  %d is a counterexample \n",n,k,m);
                                }
                        }
                }
        }
} 

The output is:

$n = 9, k = 6, m = 6$ is a counterexample

Asinomás
  • 105,651
-1

the statement shows us that $k*m = r*n$ for some $r$. if $gcd(k,r) = d$, $d > 1$and $d$ doesn't divide $n$, then clearly $k$ doesn't divide $n$

Robert S
  • 1,144