MAT102 Tutorial W7

1. What are Equivalence Classes (in Modular Arithmetic)?

2. Examples of Equivalence Classes

3. Why [2][3] = [0] (mod 6)?

Now we can address your specific example. Your class was likely working modulo 6. The notation [2][3] = [0] (mod 6) means this:

  1. Representatives: [2] and [3] represent the equivalence classes of integers congruent to 2 and 3 (mod 6), respectively. We're picking representatives from these classes.

  2. Multiplication: When we multiply equivalence classes, we multiply representatives of those classes. So, [2][3] means we're taking 2 (from [2]) and 3 (from [3]) and multiplying them: 2 * 3 = 6.

  3. Resulting Equivalence Class: The result of the multiplication (6) then determines the resulting equivalence class. Since 6 ≡ 0 (mod 6) (because 6 leaves a remainder of 0 when divided by 6), the product belongs to the equivalence class [0] (mod 6).

Crucial Point: It's not saying that 2 * 3 = 0 in the usual sense. It's saying that the product of any number from the equivalence class [2] (mod 6) and any number from the equivalence class [3] (mod 6) will always fall into the equivalence class [0] (mod 6).

Example to solidify:

In Summary

Equivalence classes in modular arithmetic group numbers based on their remainders. When you perform operations on equivalence classes, you're performing operations on representatives of those classes, and the result is another equivalence class determined by the remainder of the result. The notation might look strange at first, but it's a powerful way to work with remainders. The key is to remember that [a] is not just the number a, it's a whole set of numbers.