6

While reading about Euler's totient function, I came across this question:

Prove that for a fixed $n$, the equation $\phi (x)=n$ has only a finite number of solutions.

I have thought a lot about it but could not arrive at a proof. I know that $\phi(m_1m_2)=\phi(m_1)\phi(m_2)$ (for $m_1,m_2$ co-prime), but it doesn't seem to help. Any hints/ideas on how to tackle this problem?

Note: I dont think this is a duplicate of Euler Totient Issues, as that question doesn't prove the result. It just clarifies the OP's misinterpretation of another result.

Apurv
  • 3,363
  • 2
  • 26
  • 47

1 Answers1

7

If $p$ is a prime divisor of $x$ and $x=p^k\cdot n$ where $p$ does not divide $n$, then

$$\phi(x)=p^{k-1}(p-1)\phi(n)$$

This is because the Euler totient function is "multiplicative", as you note: $\gcd(a,b)=1\implies \phi(ab)=\phi(a)\phi(b)$.

Therefore, $\phi(x)\ge p-1$ and $\phi(x)>p^{k-1}$ for any prime divisor of $x$.

Think now how large $x$ can get. If there are too many prime divisors of $x$, $p-1$ gets larger than the given value of $\phi(x)$. If the powers of the primes get too large, $p^{k-1}$ gets larger than the given value of $\phi(x)$.

Now formalize that argument.

Rory Daulton
  • 32,288