Let us assume
, and we are to find a prime factor of it.
Although not necessarily the most efficient method, one way is to
try out all integer greater than or equal to 2 until we find one
that is a factor. This requires the explanation of the ``mod''
operator.
is the remainder of
. In other
words,
,
and etc.
Given this operator, we can now explain how we can find a prime factor of 15: