Section 23.1 The Moebius Function
ยถSubsection 23.1.1 Mรถbius mu
ยถLet's define the function which gives the numerator associated with denominator n in the products above.Definition 23.1.1. Moebius mu.
Let N=2โ 3โ 5โฏq be the product of the first few primes, up to q. Then we define ฮผ(d) as follows:
The product is over prime factors of N but the sum is over all factors of N.
Example 23.1.2.
Using the example in the chapter introduction,
implies that ฮผ(2)=โ1=ฮผ(3) while ฮผ(6)=1=ฮผ(1).
Subsection 23.1.2 A formula
ยถBefore describing this function further, let's think more about the product โp<N(1โ1p).First, as the comment at the end of the last subsection points out, it seems to create denominators with each prime factor to just the first power. We couldn't get a square or cube of any given p in the denominator.
Similarly, the numerators really can only be products of 1 and โ1. For a moment, think about why there are no other numerators available.
Finally, the number of prime factors in the denominator should be the same as the number of times โ1 is part of the product in the numerator.
Proposition 23.1.3.
If n=pe11pe22โฏpekk then a nice formula for ฮผ(n) is
Proof.
See above.
Subsection 23.1.3 Another definition
ยถThe ฮผ function is so important that we will want several more approaches as well. It is a mark of an important concept that there are ways to define it from many directions. One important way that ฮผ is often defined is via a recurrence relation. That is, one definesProposition 23.1.4. Recursive definition of ฮผ.
We can define ฮผ by setting ฮผ(1)=1 and
Proof.
Let's rewrite the sum \(\sum_{d\mid n}\mu(d)=0\) by trying to omit the \(\mu(d)\) that equal zero. If we do this, the sum reduces to the long, but correct,
Now let's set up a little notation. First, let's borrow from Definition 23.3.3 the notation \(\omega(d)\) for the number of distinct prime divisors of a divisor \(d\) of \(n\text{.}\) Next, for convenience we will write \(k=\omega(n)\) for the number of (again, distinct) prime divisors of \(n\) itself.
Then the crazy sum \(\sum_{d\mid n}\mu(d)\) becomes easier to write:
If at this point you are asking yourself why I bothered introducing \(k\text{,}\) you may want to think about that briefly while reading the next formula:
Note that \((k-\omega(d))+\omega(d)=k\text{.}\)
The rationale for all this manipulation is that we can think of each of the divisors \(d\) that have no square factors (the ones in question) as having \(\omega(d)\) of the prime factors of \(n\) picked, and the other \(k-\omega(d)\) factors omitted. So, in some sense, for each \(d\) we are really picking a subset of the primes dividing \(n\text{,}\) of size \(\omega(d)\text{,}\) and then multiplying by \(1\) for each prime picked and \(-1\) for each one not picked.
But if instead we consider just picking a subset of \(\{1,2,\ldots,k\}\) and assigning \(\pm 1\text{,}\) that would be the same thing, with the difference that we know this is the same as the result of expanding
So the sum is
This finishes the proof.
Sage note 23.1.5. Check your work again.
Remember, we can always check calculations like this with our computational assistant.
xxxxxxxxxx
moebius(30) + moebius(15) + moebius(10) + moebius(6) + moebius(5) + moebius(3) + moebius(2) + moebius(1)
Fact 23.1.6.
The function ฮผ is multiplicative.
Proof.
We will postpone a formal proof of this to a much bigger theorem, from which this result (Corollary 23.4.15) will fall โfor freeโ.
xxxxxxxxxx
print(gcd(111,41))
print(moebius(111)*moebius(41)==moebius(41*111))