Ask Your Question
1

Modular Help

asked 14 years ago

valgal210 gravatar image

Quick question. I know that the number of units + number of zero divisors + 1 = n for Z mod n. When n is the product of three distinct primes, how can I make the coding so Sage will return the number of zero divisors. I'm at a standstill and would appreciate any help. Thanks :]

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
2

answered 14 years ago

Mike Hansen gravatar image

This seems more like a homework question than something about Sage. Sage won't be able to give you a formula for the number of zero divisors of Z mod (pqr) (although one exists); you need some more theoretical knowledge for that. However, here is a naive function which counts the number of zero divisors of Z mod n:

def number_of_zero_divisors(n):
    zero_divisors = 0
    for i in range(1, n):
        for j in range(1, n):
            if (i*j) % n == 0:
                zero_divisors += 1
                break
    return zero_divisors

Here is some sample output:

sage: number_of_zero_divisors(2*3*5)
21
sage: number_of_zero_divisors(5*7*11)
144
Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 14 years ago

Seen: 413 times

Last updated: Dec 10 '10