0% found this document useful (0 votes)
11 views

Lecture 11

The document discusses modular arithmetic and its properties. Modular arithmetic involves taking integers modulo a positive integer. It defines congruence and discusses properties such as if a ≡ b (mod m) and c ≡ d (mod m), then a + c ≡ b + d (mod m) and ac ≡ bd (mod m). It also provides examples of proving statements about integers modulo a value.

Uploaded by

bhd150208
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
11 views

Lecture 11

The document discusses modular arithmetic and its properties. Modular arithmetic involves taking integers modulo a positive integer. It defines congruence and discusses properties such as if a ≡ b (mod m) and c ≡ d (mod m), then a + c ≡ b + d (mod m) and ac ≡ bd (mod m). It also provides examples of proving statements about integers modulo a value.

Uploaded by

bhd150208
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 7

Review: Division Theorem

CSE Let a be an integer and d a positive integer.

311 Then there are unique integers q and r, with


0 ≤ r < d, such that a = dq + r.

q = a div d r = a mod d

Foundations of
Computing I
Fall 2014

Review: Modular Arithmetic Review: Divisibility

Let a and b be integers, and m be a positive integer. Integers a, b, with a ≠ 0, we say that a divides b if
We say a is congruent to b modulo m if m divides a – b. there is an integer k such that b = ka. The notation
We use the notation a ≡ b (mod m) to indicate that a is a | b denotes “a divides b.”
congruent to b modulo m.
CSE 311: Foundations of Computing Modular Arithmetic: A Property
Let a and b be integers, and let m be a positive
Fall 2013
integer. Then a ≡ b (mod m) if and only if
Lecture 11: Modular arithmetic and applications a mod m = b mod m.

Modular Arithmetic: A Property Modular Arithmetic: Another Property


Let a and b be integers, and let m be a positive
integer. Then a ≡ b (mod m) if and only if Let m be a positive integer. If a ≡ b (mod m) and
a mod m = b mod m. c ≡ d (mod m), then a + c ≡ b + d (mod m)
Proof: Suppose that a ≡ b (mod m).
By definition: a ≡ b (mod m) implies m | (a – b) which by definition
implies that a – b = km for some integer k.
Therefore a=b+km. Taking both sides modulo m we get
a mod m=(b+km) mod m = b mod m.
Suppose that a mod m = b mod m.
By the division theorem, a = mq + (a mod m) and
b = ms + (b mod m) for some integers q, s.
a – b = (mq + (a mod m)) – (ms + (b mod m))
= m(q – s) + (a mod m – b mod m)
= m(q – s) since a mod m = b mod m
Therefore m |(a-b) and so a ≡ b (mod m).
Modular Arithmetic: Another Property Modular Arithmetic: Another-nother Property

Let m be a positive integer. If a ≡ b (mod m) and Let m be a positive integer. If a ≡ b (mod m) and
c ≡ d (mod m), then a + c ≡ b + d (mod m) c ≡ d (mod m), then ac ≡ bd (mod m)

Suppose a ≡ b (mod m) and c ≡ d (mod m). Unrolling definitions


gives us some integer k such that
a – b = km, and some integer j such that c – d = jm.

Adding the equations together gives us


(a + c) – (b + d) = m(k + j). Now, re-applying the definition of
mod gives us a + c ≡ b + d (mod m).

Modular Arithmetic: Another-nother Property Example

Let m be a positive integer. If a ≡ b (mod m) and Let n be an integer.


c ≡ d (mod m), then ac ≡ bd (mod m) Prove that n2 ≡ 0 (mod 4) or n2 ≡ 1 (mod 4)

Suppose a ≡ b (mod m) and c ≡ d (mod m). Unrolling definitions


gives us some integer k such that
a – b = km, and some integer j such that c – d = jm.

Then, a = km + b and c = jm + d. Multiplying both together gives


us ac = (km + b)(jm + d) = kjm2 + kmd + jmb + bd.

Re-arranging gives us ac – bd = m(kjm + kd + jb). Using the


definition of mod gives us ac ≡ bd (mod m).
Example Example
Let n be an integer. Let n be an integer.
Prove that n2 ≡ 0 (mod 4) or n2 ≡ 1 (mod 4) Prove that n2 ≡ 0 (mod 4) or n2 ≡ 1 (mod 4)
Let’s start by looking at a small example:
Let’s start by looking at a small example: Case 1 (n is even):
02 = 0 ≡ 0 (mod 4)
02 = 0 ≡ 0 (mod 4) Suppose n ≡ 0 (mod 2). 12 = 1 ≡ 1 (mod 4)
12 = 1 ≡ 1 (mod 4) Then, n = 2k for some integer k. 22 = 4 ≡ 0 (mod 4)
22 = 4 ≡ 0 (mod 4) So, n2 = (2k)2 = 4k2. So, by 32 = 9 ≡ 1 (mod 4)
32 = 9 ≡ 1 (mod 4) definition of congruence, 42 = 16 ≡ 0 (mod 4)
42 = 16 ≡ 0 (mod 4)
n2 ≡ 0 (mod 4).
It looks like It looks like
n ≡ 0 (mod 2) → n2 ≡ 0 (mod 4), and Case 2 (n is odd): n ≡ 0 (mod 2) → n2 ≡ 0 (mod 4), and
n ≡ 1 (mod 2) → n2 ≡ 1 (mod 4). Suppose n ≡ 1 (mod 2). n ≡ 1 (mod 2) → n2 ≡ 1 (mod 4).
Then, n = 2k + 1 for some integer k.
So, n2 = (2k + 1)2 = 4k2 + 4k + 1 = 4(k2 + k) + 1. So,
by definition of congruence, n2 ≡ 1 (mod 4).

n-bit Unsigned Integer Representation Sign-Magnitude Integer Representation

• Represent integer x as sum of powers of 2: n-bit signed integers


If = ∑ 2 where each bi ∈ {0,1} Suppose −2 < <2
then representation is bn-1...b2 b1 b0 First bit as the sign, n-1 bits for the value

99 = 64 + 32 + 2 + 1
99 = 64 + 32 + 2 + 1 18 = 16 + 2
18 = 16 + 2
For n = 8:
• For n = 8: 99: 0110 0011
99: 0110 0011 -18: 1001 0010
18: 0001 0010
Any problems with this representation?
Two’s Complement Representation Sign-Magnitude vs. Two’s Complement
n bit signed integers, first bit will still be the sign bit -7 -6 -5 -4 -3 -2 -1 0 1 2 3 4 5 6 7

1111 1110 1101 1100 1011 1010 1001 0000 0001 0010 0011 0100 0101 0110 0111
Suppose 0 ≤ < 2 ,
is represented by the binary representation of Sign-Magnitude
Suppose 0 ≤ ≤ 2 ,
− is represented by the binary representation of 2 −

Key property: Twos complement representation of any number y


is equivalent to y mod 2n so arithmetic works mod 2n -8 -7 -6 -5 -4 -3 -2 -1 0 1 2 3 4 5 6 7

1000 1001 1010 1011 1100 1101 1110 1111 0000 0001 0010 0011 0100 0101 0110 0111

99 = 64 + 32 + 2 + 1 Two’s complement
18 = 16 + 2

For n = 8:
99: 0110 0011
-18: 1110 1110

Two’s Complement Representation Basic Applications of mod

• For 0 < ≤ 2 , − is represented by the • Hashing


binary representation of 2 − • Pseudo random number generation
• Simple cipher

• To compute this: Flip the bits of then add 1:


– All 1’s string is 2 − 1, so
Flip the bits of ≡ replace by 2 − 1 −
Hashing Pseudo-Random Number Generation

Scenario: Linear Congruential method


Map a small number of data values from a large
" = + # mod $
domain 0, 1, … , − 1 ...
...into a small set of locations 0,1, … , − 1 so
one can quickly check if some value is present Choose random , , #, $ and produce
• hash = mod for a prime close to a long sequence of ’s
– or hash =( + ) mod
• Depends on all of the bits of the data
– helps avoid collisions due to similar values
– need to manage them if they occur

Simple Ciphers modular exponentiation mod 7

• Caesar cipher, A = 1, B = 2, . . . X 1 2 3 4 5 6 a a1 a2 a3 a4 a5 a6
– HELLO WORLD 1 1
2 2
• Shift cipher 3 3
– f(p) = (p + k) mod 26 4 4
– f-1(p) = (p – k) mod 26 5 5
6 6
• More general
– f(p) = (ap + b) mod 26
modular exponentiation mod 7 modular exponentiation mod 7

X 1 2 3 4 5 6 a a1 a2 a3 a4 a5 a6 X 1 2 3 4 5 6 a a1 a2 a3 a4 a5 a6
1 1 2 3 4 5 6 1 1 1 2 3 4 5 6 1 1 1 1 1 1 1
2 2 4 6 1 3 5 2 2 2 4 6 1 3 5 2 2 4 1 2 4 1
3 3 6 2 5 1 4 3 3 3 6 2 5 1 4 3 3 2 6 4 5 1
4 4 1 5 2 6 3 4 4 4 1 5 2 6 3 4 4 2 1 4 2 1
5 5 3 1 6 4 2 5 5 5 3 1 6 4 2 5 5 4 6 2 3 1
6 6 5 4 3 2 1 6 6 6 5 4 3 2 1 6 6 1 6 1 6 1

You might also like