Have seen answer to this question. still don't understand..
Totient sum is defined: q = Sum(Totient (d) ); sum on all d : d|q
More specific; The proof has these steps:
1. If d is a divider of q so is q/d.
2. If GCD([n1, n2, ..], q) = [d d, .., d] then
GCD([n1, n2, ..]/d, q/d) = [1, 1,.. 1];
3. Sum{ Totient(d) } = Sum{Totient(q/d) } = q;
The sum is over all the set d - dividers of q
1, 2, above are fairly simple. However i failed to understand why 2. implies 3
The set {n}/d - that is to say, the set {n} divided by its GCD d - is co-prime to q/n. It is the complete set (other wise it implies that {n} is not complete). By definition, totient(q/d) counts the number of co-primes to q/d
Since 1:q are partitioned into non overlapped groups the sum(totient({q/d) ) = q.