1

I'm really stuck on the following question. I understand logically why this makes sense, and I've read a few proofs on this site of the multiplicative property of Euler's Totient, but those all seem beyond the scope of my class. Is there a simple proof to address the following question?

Suppose a number m is the product of two distinct primes, p and q. prove that the Euler totient of m is equal to (p-1)(q-1). For instance, the Euler totient of 35 (which is 5 * 7) is equal to 4*6, or 24. But remember that when you prove a theory you need to write it in terms of variables rather than numbers. (hint: you might want to check additive or multiplicative properties of totient function)

dibdub
  • 173

2 Answers2

2

In the case when $m=pq$ with $p,q$ distinct primes, it might be easiest to use the inclusion-exclusion principle. There are $pq$ integers from 1 to $pq$, with $q$ of them being multiples of $p$, $p$ of them multiples of $q$, and one being a multiple of both $p$ and $q$. Therefore $$ \phi(pq)=pq-q-p+1=(p-1)(q-1)$$

carmichael561
  • 54,793
1

Consider the meaning of $\phi$

$\phi(n)$ means the number of set $\{x\ |\ (x,n)=1, 1 \le x \lt n\}$.

Then consider $\phi(pq)$, only $\{p,2*p,3*p,...,(q-1)*p,q,2*q,...,(p-1)*q\}$ is factor of $pq$, total p-1+q-1.

So $\phi(pq)=pq-1-(p-1+q-1)=(p-1)(q-1)$

delta
  • 732