[Math] Prove that the smallest factor of an integer is prime.

prime numbersproof-writing

The question is as follows: Prove that the smallest factor m > 1 of any given integer n > 1 is prime.

Here's what I'm thinking, you can divide any number by one of the following numbers: 2, 3, 5, 7. I can't think of a non-prime number that cannot be divided by at least one of these numbers without remainder.

I feel that this is enough proof in my head but I don't know how to express this proof formally. Where do I begin?

Best Answer

An assigment like this is usually best approached by taking a factor of $n$ and show that if it is not prime, then it is not the smallest factor of $n$. By showing this, you will show that any factor that is the smallest factor must be prime.

Therefore, take any factor $k$ of $n$, this means $k|n$. If $k$ is not prime, then $k=ab$ for some $1<a,b<k$. Because $a|n$ (why?) and $a<k$, this means that there exists a factor of $n$ which is smaller than $k$, so $k$ is not the smallest factor of $n$.

Related Question