Let $f : ℕ → P(ℕ)$ be given by $f(n) = {k*n | k ∈ ℕ}$. (P(ℕ) is the power set of the set A.)
Is f injective?
The answer to this question goes like this:
$f(n) = (n,2n,3n,4n,5n...)$
$min({ n,2n,3n,...})$ is $n$, as $n<2n<3n<....$
Suppose $f(m)=f(n)$. Then
${ (m,2m,3m,...)}={ (n,2n,3n,...)}$
smallest element of $( m,2m,3m,...)$ = smallest element of $(n,2n,3n,...)$, $m=n$.
My question is why do we focus on the smallest element of the set?