As an Amazon Associate I earn from qualifying purchases.
Functions - Discrete Mathematics
2.101 Introduction to functions
See references 1, 2
Definition:
A function is a relation between a set of inputs A and a set of outputs B.
Each input maps to exactly one output.
Multiple items in A can map to a single item in B.
Example of a function:
- each item A has an output in B
- 65 has no output
- 62 has 2 outputs
Read as: function f maps A to B.
$$ x \in A: x \rightarrow f(x) = y \ \ \ (y \in B) $$
Definition of domain:
A is the set of inputs and is called the domain of f.
We write:
We write:
$$ D_f = A $$
Definition of co-domain:
B is the set of outputs and is called the co-domain of f.
We write:
$$ coD_f = B $$We write:
y is called the image of x,
whereas x is called the pre-image of y.
We write:
$$ f(x) = y $$
Definition of range:
R is the subset of B and a set of all outputs (images) and is called the range of f.
The range of a function is the set of all images.
The range of a function is a subset of its corresponding co-domain.
We write:
$$ R_f \subseteq coD_f $$Example:
A = {0, 1, 2, 3, 4, ...}
B = {0, 1, 2, 3, 4, ...}
$ x \rightarrow 2x+1 $$ D_f = A $
$ coD_f = B $
R = {1, 3, 5, 7, 9, ...}
f(0) = 1
f(1) = 3
Image of x, f(x) = y
Exercise:
$ f: Z \rightarrow Z \ with \ f(x) = |x| $ // integers, absolute value of x
$ D_f = Z $
$ coD_f = Z $
$ R_f = Z \{0\} = \{0, 1, 2, 3, ...\} $
f(-1) = f(1) = 1, hence pre-images of 1 = {-1, 1}
Exercise
$ g: R \rightarrow R \ with \ g(x) = x^2 + 1$
$ D_g = R $ // real numbers
$ coD_g = R $
- any number squared is positive
- +1 makes for bigger than 1
g(-2) = g(2) = 5 hence, pre-images of 5 = {-2, 2}
Plotting Functions
see reference #3
Linear Functions
$$ f(x) = ax + b $$
- straight line function
- passes through the point (0, b)
- a is the gradient
$$ f: R \rightarrow R \ with f(x) = ax + b $$
- if gradient a > 0 then the function is increasing
- $ x_1 < x_2 $ then $ f(x_1) < f(x_2) $
Quadratic Functions
$$ f(x) = ax^2 + bx = c $$
- where a, b, and c are the numbers and a $ \neq $ 0
Exponential Function
$$ f(x) = b^x \ where \ b > 0 \ and \ b \neq 1 $$
- variable b is called the base of the function
- Domain $ ]-\infty, \infty[ $
- Range $ ]0, \infty[ $
- Horizontal asymptote y= 0
Exponential decay function
Laws of Exponents
$ b^x \cdot b^y = b^{x+y} $
$ \frac{b^x}{b^y} = b^{x-y} $
$ (b^x)^y = b^{xy} $
$ (ab)^x = a^x \cdot b^x $
$ (\frac{a}{b})^x = \frac{a^x}{b^x} $Natural Logarithm function
see reference 4
2.106 Injective and surjective functions
see reference 5
Injective (one-to-one) Functions
- one-to-one function
- Let $ f: A \rightarrow B $ be a function
- Definition: f is said to be an injective (one-to-one) function if and only if:
- for all $ a,b \in A $, if $ a \neq b $ then $ f(a) \neq f(b) $
Surjective (onto) functions
Resources
- https://www.coursera.org/learn/uol-discrete-mathematics/lecture/dEASs/2-101-introduction
- https://www.coursera.org/learn/uol-discrete-mathematics/lecture/dEASs/2-101-introduction
- https://www.coursera.org/learn/uol-discrete-mathematics/lecture/LJ9wV/2-104-plotting-functions
- https://www.youtube.com/watch?v=8qs6QxGCIQU
- https://www.coursera.org/learn/uol-discrete-mathematics/lecture/XyWA9/2-106-injective-and-surjective-functions
find similar posts:
Discrete Mathematics,
funcitons
Munkres Assignment - Hungarian Algorithm
Hungarian Algorithm
The following videos show how, but not why:
Resources
- https://en.wikipedia.org/wiki/Hungarian_algorithm
- https://www.youtube.com/watch?v=cQ5MsiGaDY8
- https://www.youtube.com/watch?v=FCaD34z--bY
- https://www.youtube.com/watch?v=eXiUYlEb__k
- https://www.youtube.com/watch?v=cVBzMXYc4ss
find similar posts:
graph theory,
Hungarian algorithm,
munkres
master of many trades
Interesting spin on the old saying:
Jack of all trades, a master of none,I prefer better than a master of one.
Non-integer numbers conversion - Computational Mathematics CM1015
Non-integer numbers conversion
Example:
$ 17.375_{10} = 1*10^1 + 7*10^0 + 3*10^{-1} + 7*10^{-2} + 5*10^{-3} = $
$ = 10 + 7 + \frac{3}{10} + \frac{7}{100} + \frac{5}{1000} $
How do you convert decimal fractions to binary?
You convert the whole integer numbers separately:
$ 17_{10} = 10001_2 $
Then you convert fractional part 0.375_{10}:
Multiply by 2, see if you have a whole number 1:
0.375*2 = 0.75 = 0 + 0.75
0.75*2 = 1.5 = 1 + 0.5 Multiply the remainder of 0.75
0.5 *2 = 1.0 = 1 + 0. STOP
$ 0.375_{10} = 0. \color{red} {011}_2 $
$ 17.375_{10} = 10001. \color{red} {011}_2 $
How to convert a binary fractional number to a base 10 number?
$ 10001. \color{red} {011}_2 = 1*2^4 + 0*2^3 + 0*2^2 + 0*2^1 + 1*2^0 + \color{red} { 0*2^{-1} + 1*2^{-2} + 1*2^{-3} }$
$ 10001. \color{red} {011}_2 = 1*16+ 0*8 \ + 0*4 \ + 0*2 \ + 1*1 + \color{red} { 0* \frac{1}{2} + 1*\frac{1}{4} + 1*\frac{1}{8} }$
$ 10001. \color{red} {011}_2 = 16 + 1 + \color{red} { \frac{0}{2} + \frac{1}{4} + 1*\frac{1}{8} }$
$ 10001. \color{red} {011}_2 = 17 + \color{red} { \frac{3}{8} } $
$ 10001. \color{red} {011}_2 = 17. \color{red} { 375}_{10} $
In general:
$$ A_n A_{n-1} A_{n-2} ... A_0 . C_{-1} C_{-2} ... C_{-k} $$
for base b, and position n and k,
In decimal units corresponds to:
$$ A_n * b^n + A_{n-1} * b^{n-1} + ... + A_0 * b^0 + C_{-1} * b^{-1} + C_{-2} * b^{-2} + ... + C_{-k} * b^{-k} $$
see reference 2
Convert the decimal number 11.625 into binary
$ 11 \color{red} {.625}_{10} $
$ 11_{10} = 1011_2 $
$ \color{red} {.625}_{10} = $
Multiply by 2 and carry over the remainder:
2*0.625 = 1.25 = 1 + 0.25
2*0.250 = 0.50 = 0 + 0.50
2*0.500 = 1.00 = 1 + 0.00 // STOP
What is the decimal number 0.03125 in binary?
$ 0.03125_{10} = ? $ in binary
Multiply by 2 and carry over the remainder:
2 * 0.03125 = 0.0625 = 0 + 0.0625
2 * 0.06250 = 0.1250 = 0 + 0.1250
2 * 0.12500 = 0.2500 = 0 + 0.2500
2 * 0.25000 = 0.5000 = 0 + 0.5000
2 * 0.50000 = 1.0000 = 1 + 0.0000 // STOP
$ 0.03125_{10} = 0.00001_2 $
Operations with binary numbers
See reference 3Addition of binary numbers
$ 101_2 + 111_2 = ? $
$ 1110 $ \\ carry-over numbers
$ 0101_2 + $
$ 0111_2 = $
$ \overline{1100}_2 $
$ 1110 $ \\ carry-over numbers
$ 0101_2 + $
$ 0111_2 = $
$ \overline{1100}_2 $
double-check in decimal: 5 + 7 = 12
Q.E.D.
Subtraction of binary numbers
$ 110 - $ \\ 6 decimal
$ 101 = $ \\ 5 decimal
$ \overline{0 0 1}_2 $ \\ 1 decimal
$ \overline{0 0 1}_2 $ \\ 1 decimal
Multiplication of binary numbers
0*0 = 0
1*1 = 1
1*0 = 1
Exercise:
1111 * 11 = 101101
15 * 3 = 45
Division of binary numbers
Number bases webinar video
See reference 4
"The only time you are getting better is when you are stuck.- So, embrace being stuck! "
Extra video: numbers 1
See reference 5
- prime numbers
- highest known prime number $ 2^{77232917} - 1$
- exponentials
- $ x^0 = 1 $
- $ x^1 = x $
- $ x^2 = x * x $
- $ x^{-1} = \frac{1}{x} $
- $ x^{-2} = \frac{1}{x*x} = \frac{1}{x^2} $
- $ x^{-n} = \frac{1}{x^n} $
Extra video: numbers 2
- see reference 6
- base ten fractional
- what is the lowest base you can have
- base 2
- conversion exercises
see reference 7
See reference 8
References
- https://www.coursera.org/learn/uol-cm1015-computational-mathematics/lecture/wrj47/non-integer-numbers-conversion
- https://www.coursera.org/learn/uol-cm1015-computational-mathematics/quiz/QW8GL/topic-1-lesson-3
- https://www.coursera.org/learn/uol-cm1015-computational-mathematics/lecture/0qco4/operations-with-binary-numbers
- https://www.coursera.org/learn/uol-cm1015-computational-mathematics/lecture/y71es/number-bases-webinar-video
- https://www.coursera.org/learn/uol-cm1015-computational-mathematics/lecture/K02pr/extra-video-numbers-1
- https://www.coursera.org/learn/uol-cm1015-computational-mathematics/lecture/lHwNt/extra-video-numbers-2
- https://docs.google.com/spreadsheets/d/19zWX5qNcfVwG37VUSi0aeCMfNSOwhq1MMNtdwguyk5k/edit#gid=0
- https://calculator.name/baseconvert/quinary/decimal/1212
find similar posts:
binary,
CM1015,
Computational Mathematics,
Non-integer
Non-integer numbers conversion - Computational mathematics - UoL
Non-integer numbers conversion
$ 17.375_{10} = 1 \cdot 10^1 + 7 \cdot 10^0 + 3 \cdot 10^{-1} + 7 \cdot 10^{-2} + 5 \cdot 10^{-3} \\
= 10 + 7 + \frac{3}{10} + \frac{7}{100} + \frac{5}{1000} $
= 10 + 7 + \frac{3}{10} + \frac{7}{100} + \frac{5}{1000} $
Choosing between MacOS iMovie (free) and Final Cut Pro ($299)
Choosing between MacOS iMovie (free) and Final Cut Pro ($299)
find similar posts:
Final Cut Pro,
GoPro,
iMovie,
video post-processing
Set Theory - Discrete Mathematics
Set Theory - Introduction to discrete mathematics
the fundamental concept of sets, functions, logic, graphs, trees, relations,
combinatorics, mathematical induction, and recursive relations.
Syllabus
Webinar
Review before the midterm and final exam!
What is the definition of Sets?
A set is a collection of distinct items. Sets are used to study a relation between object members in a particular domain. [reference 1]
collection of objects.
Mathematicians use, the term is set to refer to a well-defined, unordered, collection of any kind of object, duplicates are allowed.
The empty set is a set that contains nothing.
Examples
vowels V = {a,e,i,o,u}
Definition:
$$ A \subseteq B \iff x \in A \ \implies \ x \in B $$
$$ \therefore N \subseteq Z \subseteq Q \subseteq \mathbb{R} $$
$ S_4 = \{ \frac{1}{2}, \frac{1}{4}, \frac{1}{6}, \frac{1}{8}, \frac{1}{10} \} \implies $$ S_4 = \{ \frac{1}{2*1}, \frac{1}{2*2}, \frac{1}{2*3}, \frac{1}{2*4} , \frac{1}{2*5} \} \implies $
given a set S={1, 2, 3},
Given a set A, if |A| = n, find |P(P(P(A)))| :
$ 2^2 = 4 $
$ 2^3 = 8 $
$ 2^4 = 16 $
$ 2^5 = 32 $
$ 2^6 = 64 $
$ 2^7 = 128 $
$ 2^8 = 256 $
$ 2^9 = 512 $
$ 2^{10} = 1,024 $
Example:
$ A \cap \overline{ \overline{A} \cup \overline{B}} = A \cap \{2\} = \{1, 2\} \cap \{2\} = \{2\} $
$ \{2\} = A \cap B $
Exercise:
Given two sets A and B,
$$ \overline{ \overline{ A} \cup \overline{ B} } = A \cap B $$
$ A - \overline{B} = \{1, 2 \} - \{ 1, 4 \} = {4} = \overline{ A \cup B}$
Tip: Q.E.D. QUOD ERAT DEMONSTRANDUM means "Which was to be demonstrated."
Exercise
Given three sets A, B, and C, prove that:
Discrete Mathematics with Applications
Thomas Koshy
pp.70-71, 71-73, and 78-86.
Please also complete the following exercises:
pp.93, exercises 5–14, 27-32, and 57-60.
empty set E = {} = $ \emptyset $ or $ \varnothing $
Set notation
- an element of a set
- belongs in $ \in $
- not belong in $ \notin $
- the cardinality of a set
- Definition: Given a set S, the cardinality of S is the number of elements contained in S. We write the cardinality of S as |S|.
- Given V = {a,e,i,o,u}; |V| = 5
- |E| = |{}| = $ | \emptyset | $ = $ | \varnothing | $ = 0
Subset
- A is a subset of B if every element of A also belongs to B.
- A is also an element of B. $ A \subseteq B $
- subset \subset
- not subset equal $ \not \subseteq$
- subset not equal $ \subsetneqq $
- subset not equal $ \subsetneq $
- if V = {a,e,i,o,u} AND W={u,w}$ \implies W \subsetneq V $
for any x of A
A is a subset of B if and only if any x belonging to A implies that x also belongs to B.
An empty set is a subset of ANY set A
Empty = {} = $ \emptyset $ or $ \varnothing $
$ \varnothing \subseteq A $
$ \varnothing \subseteq \varnothing $
Any set is a subset of itself:
$ S \subseteq S $
- Special sets
- N all natural numbers N = {1,2,3,..., \infty}
- Z all integers $ \mathbb{Z} $ = {..., -3,-2,-1,0, 1,2,...}
- The notation $ \mathbb{Z} $ for the set of integers comes from the German word Zahlen, which means "numbers".
- positive integers < 4 = {2}
- Q all rational numbers such as a/b where $ b \neq 0$
- $ Q = \{ \frac{n}{m} | n,m \in \mathbb{R} \ and \ m \ne 0 \} $
- R or $ \mathbb{R} $ all real numbers
In mathematics, a real number $ \mathbb{R} $ is a value of a continuous quantity that can represent a distance along a line (or alternatively, a quantity that can be represented as an infinite decimal expansion). [reference 2]
The listing method and rule of inclusion
- Set representation
- Listing method
- list all elements of the set
- V = {a,e,i,o,u}
- Set builder notation
- example $ Even = \{ 2n | n \in \mathbb{R} \} $
- example $ Odd = \{ 2n+1 | n \in \mathbb{R} \} $
- Q all rational numbers = $ Q = \{ \frac{n}{m} | n,m \in \mathbb{R} \ and \ m \ne 0 \} $
Examples
$ S_1 = \{ 3n | x \in \mathbb{N} \ and \ n < 6 \} \implies $
$ S_1 = \{ 3*1, 3*2, 3*3, 3*4, 3*5 \} \implies $
$ S_1 = \{ 3, 6, 9, 12, 14 \} $
$ S_2 = \{ 2^n | n \in \mathbb{Z} \ and \ 0 \le n \le 4 \} \implies $
$ S_2 = \{ 2^0, 2^1, 2^2, 2^3, 2^4 \} \implies $
$ S_2 = \{ 1, 2, 4, 8, 16 \} $
Important:
$ S_3 = \{ 2^{-n} | n \in \mathbb{Z} \ and \ 0 \le n < 5 \} \implies $
$ S_3 = \{ 2^0, 2^{-1}, 2^{-2}, 2^{-3}, 2^{-4} \} \implies $
$ S_3 = \{ 1, \frac{1}{2}, \frac{1}{4}, \frac{1}{8}, \frac{1}{16} \} $
$ S_4 = \{ \frac{1}{2}, \frac{1}{4}, \frac{1}{6}, \frac{1}{8}, \frac{1}{10} \} \implies $
$ S_3 = \{ \frac{1}{2*N} | n \in \mathbb{Z} \ and \ 1 \le n \le 5 \} $
The powerset of a set
A = {1, 2, 3, 4, 5, 6, 7, 8, 9}
B = {
{1, 2, 3, 4}
{5, 6,}
{1, 2, 3, 4}
{5, 6,}
{7, 8, 9}
}
X = {1, 2, 3, 4}
$ X \subseteq A, \ but \ X \in B $
$ X \subseteq A, \ but \ X \in B $
Read: X is a subset of A, but it is an element of B.
Set S is not an element of S:
$ S = \{1\} \notin S $An empty set is not an element of the empty set:
$ \varnothing \notin \{\} $
An empty set is a subset of the empty set:
$ \{\} = \varnothing \subseteq \varnothing $
- The power set of the set
- definition:
- Given a set S, the powerset of S, written P(S),
is the set containing ALL the subsets of S. - Given S = {1, 2, 3}
- all subsets:
- {}
- {1}, {2},{3}
- {1,2},{1,3},{2,3}
- {1,2,3}
- then P(S)={{},{1}, {2},{3},{1,2},{1,3},{2,3},{1,2,3}}
Cardinality
see reference #3
- then P(S) = $ 2^{|S|} $
- P(S)={{},{1}, {2},{3},{1,2},{1,3},{2,3},{1,2,3}}
- |P(S)| = 2^{|S|} = $ 2^3 = 8 $
- $ |P(A)| = 2^{|A|} = 2^n $
- $ |P(P(A))| = 2^{|P(A)|} = 2^{2^n} $
- $ |P(P(P(A)))| = 2^{|P(P(A))|} = 2^{2^{2^{n}}} $
Powers of 2
$ 2^0 = 1 $
$ 2^1 = 2 $$ 2^2 = 4 $
$ 2^3 = 8 $
$ 2^4 = 16 $
$ 2^5 = 32 $
$ 2^6 = 64 $
$ 2^7 = 128 $
$ 2^8 = 256 $
$ 2^9 = 512 $
$ 2^{10} = 1,024 $
$ 2^{11} = 2,048 $
$ 2^{12} = 4,096 $
$ 2^{13} = 8,192 $
$ 2^{14} = 16,384 $
$ 2^{15} = 32,768 $
$ 2^{16} = 65,536 $
$ 2^{17} = 131,072 $
$ 2^{18} = 262,144 $
$ 2^{19} = 524,288 $
$ 2^{20} = 1,048,576 $
Definition:
Given two sets A and B,
the intersection of A and B, written $ A \cap B $,
contains all the elements in both A and B.
Given two sets A and B,
the set difference, written $ A - B $,
contains all the elements that are in A, but not in B.
Equivalently, two disjoint sets are sets whose intersection is the empty set.
For example,
$ 2^{12} = 4,096 $
$ 2^{13} = 8,192 $
$ 2^{14} = 16,384 $
$ 2^{15} = 32,768 $
$ 2^{16} = 65,536 $
$ 2^{17} = 131,072 $
$ 2^{18} = 262,144 $
$ 2^{19} = 524,288 $
$ 2^{20} = 1,048,576 $
Example:
Given a set A with 12 elements( |A| ).
What is the number of elements (cardinality) in a powerset P(A)?
n = 12
$ |P(A)| = 2^{|A|} = 2^n = 2^{12} = 4096 $
Set Operations
Disjointed Sets (nothing in common)
Definition:
Two sets are disjointed if the intersection is zero.
$$ A \cap B = \varnothing $$
Set Union (all together)
Definition:
Given two sets A and B,
the union of A and B, written $ A \cup B $,
contains all the elements in either A or B.
Given two sets A and B,
the union of A and B, written $ A \cup B $,
contains all the elements in either A or B.
$$ A \cup B = \{x | x \in A \ or \ x \in B \} $$
A = {1, 3, 5}
B = {3, 4, 6}
$ A \cup B $ = {1, 2, 3, 4, 5, 6}
Set Intersection (common)
Given two sets A and B,
the intersection of A and B, written $ A \cap B $,
contains all the elements in both A and B.
$$ A \cap B = \{ x | x \in A \ and \ x \in B \} $$
A = {1, 2, 3}
B = { 3, 5, 6}
$ A \cap B $ = {3}
Set Difference (one but not the other)
Definition:Given two sets A and B,
the set difference, written $ A - B $,
contains all the elements that are in A, but not in B.
$$ A - B = \{ x | x \in A \ and \ x \notin B \} $$
A = {1, 2, 3}
B = { 3, 5, 6}
$ A \cap B $ = {1, 2}
LaTeX \setminus == "$ \setminus $"
Symmetric difference (owned separately)
Definition:
Given two sets A and B,
the symmetric difference, written $ A \oplus B $,
Given two sets A and B,
the symmetric difference, written $ A \oplus B $,
contains all the elements that are in A or in B, but not in both.
$$ A \oplus B = \{ x | ( x \in A \ or \ x \in B ) \ and \ x \notin A \cap B \} $$
$$ A \oplus B = ( A \cup B ) - ( A \cap B ) $$
A = {1, 2, 3}
B = { 3, 5, 6}
$ A \cap B $ = {3}
$ A - B $ = {1, 2}
$ B - A $ = {5, 6}
$ A \oplus B $ = (A-B) + (B-A)
$ A \oplus B $ = {1, 2, 5, 6}
LaTeX symbol substitutes for symmetric difference (see reference 4):
- A \oplus B == "$ A \oplus B $"
- A \triangle B == "$ A \triangle B $"
- A \Theta B == "$ A \Theta B $"
- A \triangledown B == "$ A \triangledown B $"
Membership Table
Disjoint Sets
See reference 5.
In mathematics, two sets are said to be disjoint sets if they have no element in common. Equivalently, two disjoint sets are sets whose intersection is the empty set.
For example,
A = {1, 2, 3} and
B = {4, 5, 6} are disjoint sets,
$ A \cup B = \{\} = \varnothing $while {1, 2, 3} and {3, 4, 5} are not disjoint.
The representation of a set using Venn diagrams
See reference 6.
The universal set is marked as U.
The set A is a subset of U, or $ A \subseteq U $.
The complement of a set A, written $ \complement{A} \ or \ \bar{A} \ or \ \overline{A} $,
contains all the elements in the universal set U, but not in set A.
$$ \complement{A} = \overline{A} = U-A $$
$$ \overline{A} \cup A = U $$
$$ \overline{A} \cap A = \varnothing $$
Example:
U = {1, 2, 3, 4, 5, 6, 7, ...} positive integers
A = {2, 4, 6, 8, ...} positive even integers
then,
$ \overline{A} = \{1, 3, 5, 7, 9, ... \}$ positive odd numbers
U = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
A = {1, 2, 3, 4, 5}
B = {4, 5, 6, 7, 8, 9, 10}
$ A \cap B $ = {4, 5}
$ \overline{A \cap B} $ = {1, 2, 3, 6, 7, 8, 9, 10}
Example:
U = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
A = {1, 2, 3, 4, 5}
B = {4, 5, 6, 7}
C = {3, 5, 7, 8}
$ D = B \cup C $ = {4, 5, 6, 7, 3, 5, 7, 8} = {3, 4, 5, 6, 7, 8 }
$ A \cap D $ = {3, 4, 5}
$ \overline{A \cap (B \cup C)} $ = $ \overline{A \cap D} $
= {1, 2, 3, 4, 5, 6, 7, 8, 9, 10} - {3, 4, 5} =
= {1, 2, 6, 7, 8, 9, 10}
tip: Use LaTeX \overline{A} = $ \overline{A} $ = long \bar{A} = $ \bar{A} $
Augustus De Morgan's laws
See reference 7.
Definition:
The union of the sets is equal to the intersection of their complements.
$$ \overline{A \cup B} = \bar{A} \cap \bar{B} $$
Definition:
The complement of the intersection of two sets A and B
is equal to the union of their complements.
$$ \overline{ A \cap B } = \bar{A} \cup \bar{B} $$Exercise:
U = {1, 2, 3, 4}
A = {1, 2}
B = {2, 3}
$ \overline{A} $ = {3, 4}
$ \overline{B} $ = {1, 4}
$ \overline{A} \cup \overline{B} $ = {1, 3, 4}
Compliment of the union of compliments:
$ \overline{ \overline{A} \cup \overline{B} } $ = {2}
Intersection, or $ A \cap B $ = {2}
ergo:
$$ \overline{ \overline{A} \cup \overline{ B} } = A \cap B $$
Exercise:
U = {1, 2, 3, 4}
A = {1, 2}
B = {2, 3}
$$ A \cap \overline{ \overline{A} \cup \overline{B}} = ? $$
$ \overline{A} $ = {3, 4}
$ \overline{B} $ = {1, 4}
$ \overline{A} \cup \overline{B} $ = {1, 3, 4}
$ \overline{ \overline{A} \cup \overline{B}} = \{2\} $
$ A \cap \overline{ \overline{A} \cup \overline{B}} = A \cap \{2\} = \{1, 2\} \cap \{2\} = \{2\} $
$ \{2\} = A \cap B $
ergo:
$$ A \cap \overline{ \overline{A} \cup \overline{B}} = A \cap B $$
Exercise:
Given two sets A and B,
What is the complement of the union of their complements?
$$ \overline{ \overline{ A} \cup \overline{ B} } = A \cap B $$
Proof with Vann diagram:
$ \overline{ \overline{ A} \cup \overline{ B} } = ? $
$ \overline{A} = \{3, 4\} $
$ \overline{B} = \{1, 4\} $
$ \overline{ A} \cup \overline{ B} = \{1, 3, 4 \} $
$ \overline{ \{1, 3, 4 \} } = \{2 \}$
$ \overline{ \overline{ A} \cup \overline{ B} } = \{2\} = A \cap B $
$ A - \overline{B} = \{1, 2 \} - \{ 1, 4 \} = {4} = \overline{ A \cup B}$
Exercise:
Set difference of set differences
$$ \overline{ (A-B) - (B-C) } = ? $$
Venn diagram proof:
$ (A-B) = \{1, 3 \} $
$ (B-C) = \{2, 5 \} $
$ \{1, 3 \} - \{2, 5 \} = \{1, 3 \}$
$ \overline{ (A-B) - (B-C) } = \overline{ \{1, 3 \} } = $
Laws of sets: Commutative, associative, and distributives
See reference 8.
Commutative
Definition:
order does not affect the outcome.
order does not affect the outcome.
Commutative:
- addition 2+3 = 3+2
- multiplication 2*3 = 3*2
- union $ A \cup B = B \cup A $
- intersection $ A \cap B = B \cap A $
- symmetric difference $ A \oplus B = B \oplus A $
Not commutative:
- Subtraction $ 3-1 \neq 1-3 $
- Set difference $ A-B \neq B-A $
Associativity
Definition:
concerns the grouping of elements in an operation.
concerns the grouping of elements in an operation.
Associative:
- addition (a+b)+c = a +(b+c)
- multiplication (a*b)*c = a *(b*c)
- union $ (A \cup B) \cup C = A \cup (B \cup C) $
- intersection $ (A \cap B) \cap C = A \cap (B \cap C) $
- symmetric difference $ (A \oplus B) \oplus C = A \oplus (B \oplus C) $
Not associative
- set difference $ (A - B) - C \neq A - (B - C) $
Distributivity
Definition:
multiplying a sum is equal to multiplying each number and adding the sum
$$ a(b+c) = ac + ac $$
3*(2+5) = 3*2 + 3*5 = 21
$$ A \cup (B \cap C) = (A \cup B) \cap (A \cup C) $$
$$ A \cap (B \cup C) = (A \cap B) \cup (A \cap C) $$
Using set identities to simplify expressions
Prove
$$ \overline{(A \cap B) \cup \overline{B}} = B \cap \overline{A}$$
$ \ \ \ \ \overline{(A \cap B) \cup \overline{B}} = $
$ = \overline{ (A \cap B )} \cap \overline{\overline{B}} $ - De Morgan's law
$ = \overline{ (A \cap B )} \cap B $
$ = ( \overline{A} \cup \overline{B} ) \cap B $ - De Morgan's law
$ = B \cap (\overline{A} \cup \overline{B}) $ - commutative
$ = (B \cap \overline{A}) \cup (B \cap \overline{B}) $ - distributive
$ = (B \cap \overline{A}) \cup \ \varnothing $
$ = B \cap \overline{A} $
Exercise
$ A \cap ( B \cap \overline{A} ) = $
$ = (A \cap B) \cap ( A \cap \overline{A} ) $
$ = (A \cap B) \cap \varnothing = \varnothing $ !
OR
$ A \cap ( B \cap \overline{A} ) = $
$ = A \cap B \cap \overline{A} = $
$ = B \cap A \cap \overline{A} = $
$ = B \cap \varnothing = \varnothing $ !
Exercise
$ \overline{ \overline{A \cup B} \cup \overline{A} } $
$ \overline{A \cup B } = \{4\} $ - Vann diagram
$ \overline{ \{4\} \cup \overline{A} } = $
$ \overline{ \{4\} \cup \{3, 4\} } = \{3, 4 \} = \overline{A} $ !
Exercise
$ \overline{ (A - B) - (B-C) } $
Exercise:
$ \overline{ \overline{A \cup B} \cup \overline{B} } $
$ \overline{A \cup B} = \{ 4 \} $
$ \overline{B} = \{1, 4 \} $
$ \overline{A \cup B} \cup \overline{B} = \{ 1, 4 \} = \overline{B} $
$ \overline{ \overline{A \cup B} \cup \overline{B} } = B = \{2, 3 \} $ !
Exercise:
$ \overline{ A \cup \overline{B} \cup C } \cap \overline{B} $
$ U = \{ 1, 2, 3, 4, 5, 6, 7, 8 \} $
$ \overline{B} = \{ 1, 3, 7, 8 \} $
$ A = \{ 1, 2, 3, 4 \} $
$ C = \{ 3, 4, 6, 7 \} $
$ \overline{ \{ 1, 2, 3, 4 \} \cup \{ 1, 3, 7, 8 \} \cup \{ 3, 4, 6, 7 \}} \cap \{ 1, 3, 7, 8 \} $
$ \overline{ \{ 1, 2, 3, 4, 6, 7, 8 \} } \cap \{ 1, 3, 7, 8 \} $
$ \{ 5, 6 \} \cap \{ 1, 3, 7, 8 \} = \varnothing $Exercise:
$ A \cup ( B \cup \overline{A}) = $
$ A \cup B \cup \overline{A} = $
$ B \cup A \cup \overline{A} = $
$ B \cup \varnothing = B$
Q.E.D.
Partition of a set
See reference 9.
Definition:
A partition of set A,
is a set of subsets $ A_i $ of A such that:
all the subsets $ A_i $ are disjointed,
all the subsets $ A_i $ are disjointed,
and the union of all subsets $ A_i $ is equal to A.
Exercise
Hint: Use the inclusion-exclusion principle (IEP):
$ | A \cup B | = | A | + | B | - | A \cap B | $
The formula expresses the fact that the sum of the sizes of the two sets may be too large since some elements may be counted twice. The double-counted elements are those in the intersection of the two sets and the count is corrected by subtracting the size of the intersection.
https://en.wikipedia.org/wiki/Inclusion%E2%80%93exclusion_principle
$ | A \cup B | = | A | + | B | - | A \cap B | $
The formula expresses the fact that the sum of the sizes of the two sets may be too large since some elements may be counted twice. The double-counted elements are those in the intersection of the two sets and the count is corrected by subtracting the size of the intersection.
https://en.wikipedia.org/wiki/Inclusion%E2%80%93exclusion_principle
Given three sets A, B, and C, prove that:
I could not find the use for associativity of the union, so I just show it here:
$ | C \cup (A \cup B) | = | A\cup B \cup C | = $
$ | C \cup (A \cup B) | = | A\cup B \cup C | = $
1. Using IEP, split above:
$ = | A\cup B | + | C | - | (A \cup B) \cap C | = $
2. Using IEP, split $ | A\cup B | $ above:
$ | A \cup B | = | A | + | B | - | A \cap B | $
3. Combine the two terms:
$ = | A | + | B | - | A \cap B | + | C | - | (A \cup B) \cap C | = $
4. Use associativity of addition for arranging the terms:
$ = \color{green}{ | A | + | B | + | C | - | A \cap B | } - | (A \cup B) \cap C | = $5. Using distributivity of the intersection, split the last union:
$ | (A \cup B) \cap C | = | ( A \cap C ) \cup ( A \cap B) | $
6. Using IEP, split the term
$ = | ( A \cap C ) \cup ( A \cap B) | = | A \cap C | + | A \cap B | - | A \cap C) | \cap | A \cap B |$
7. Combine the terms
$ = \color{green}{ | A | + | B | + | C | - | A \cap B | - | A \cap C | + | A \cap B | } - | A \cap C | \cap | A \cap B | $
8. Using commutativity of the intersection law (clearly proven by Vann diagram):
$ | A \cap C | \cap | A \cap B | = | A \cap B \cap C | $
9. Combining the terms:
$ = \color{green}{| A | + | B | + | C | - | A \cap B | - | A \cap C | + | A \cap B | - | A \cap B \cap C | } $
Q.E.D.
Visual proof of the same:
$ | A\cup B \cup C | = $ using IEP, see Venn diagram below for reference
$ = | A | + | B | + | C | $ - accounts for all sets, but double counts subsets 2, 3, 6 and triple counts subset 4resulting in:
$ = | S_1 | + | S_2 | + | S_2 | + | S_3 | + | S_3 | + | S_4 | + | S_4 | + | S_4 | + | S_6 | + | S_6 | $
to correct that:
$ - | A \cap B | $ remove one double counted subsets 2, 4
$ - | A \cap C | $ remove one double counted subsets 3, 4
$ - | B \cap C | $ remove one double counted subsets 6, 4
but at this point, we removed all three $ S_4 $ so we have to add:
$ + | A \cap B \cap C |$ intersection of all set resulting in subset 4
$ = | A | + | B | + | C | - | A \cap B | - | A \cap C | - | B\cap C | + | A \cap B \cap C | $
E.Q.D.
Exercise:
Given A (even numbers) and B (odd numbers) which are subsets to the universal Integer set U,
$$ U = \{x: x \in \mathbb{Z} \ and \ 0 \leq x < 20 \} $$Therefore:
$ U = \{0, 1, 2, 3, ..., 18, 19 \} $
$ A = \{0, 2, 4, 6, 8, 10, 12, 14, 16, 18 \} $ assuming even numbers include zero 0
$ B = \{1, 3, 5, 7, 9, 11, 13, 15, 17, 19 \} $
$ A\cup B = U $ $ A\cap B = \varnothing $ empty set
$ \overline{B} = A $
Use the listing method to list the elements of the following sets:
$ A \cap \overline{B} = \{0, 2, 4, ..., 16, 18 \} \cap \{ 0, 2, 4, ..., 16, 18 \} = A = \{ 0, 2, 4, ..., 16, 18 \} $$ \overline{A \cap B} = \overline{ \varnothing } = \overline{ \{\} } = U = \{0, 1, 2, 3, ..., 18, 19 \} $
Use the listing method to list the elements of the following sets:
$ A \cap \overline{B} = \{0, 2, 4, ..., 16, 18 \} \cap \{ 0, 2, 4, ..., 16, 18 \} = A = \{ 0, 2, 4, ..., 16, 18 \} $
$ \overline{A \cup B } = \overline{ U } = \overline{\{0, 1, 2, 3, ..., 18, 19 \}} = \{\} = \varnothing $
$ \overline{A \oplus B} = U - (A \cup B) + ( A \cap B) = \{\} = \varnothing $
Peer reviews
Read Book
Discrete Mathematics with Applications
Thomas Koshy
https://ebookcentral.proquest.com/lib/londonww/detail.action?docID=294091#
pp.70-71, 71-73, and 78-86.
Please also complete the following exercises:
pp.93, exercises 5–14, 27-32, and 57-60.
Review Problem Sheet
TODO: review and documentCartesian Product of A and B
Summative Quiz
TODO
Webinar
https://www.coursera.org/learn/uol-discrete-mathematics/lecture/B7F94/webinar
References
- https://en.wikipedia.org/wiki/Set_(mathematics)
- https://en.wikipedia.org/wiki/Real_number
- https://en.wikipedia.org/wiki/Cardinality
- https://proofwiki.org/wiki/Symbols:Set_Theory/Symmetric_Difference
- https://en.wikipedia.org/wiki/Disjoint_sets
- https://en.wikipedia.org/wiki/Venn_diagram
- https://en.wikipedia.org/wiki/De_Morgan%27s_laws
- https://www.coursera.org/learn/uol-discrete-mathematics/lecture/QEPbf/1-205-laws-of-sets-commutative-associative-and-distributives
- https://www.coursera.org/learn/uol-discrete-mathematics/lecture/FuScz/1-207-partition-of-a-set
- Discrete Mathematics with Applications - Thomas Koshy
find similar posts:
discrete math,
intersection,
set theory,
supersets,
symmetric difference,
union
Subscribe to:
Posts (Atom)
My favorite quotations..
“A man should be able to change a diaper, plan an invasion, butcher a hog, conn a ship, design a building, write a sonnet, balance accounts, build a wall, set a bone, comfort the dying, take orders, give orders, cooperate, act alone, solve equations, analyze a new problem, pitch manure, program a computer, cook a tasty meal, fight efficiently, die gallantly. Specialization is for insects.” by Robert A. Heinlein
"We are but habits and memories we chose to carry along." ~ Uki D. Lucas
Recommended pages
Popular Recent Articles
-
O'REILLY 201 0011 031 10110100180 000110111 01100041 001100010010000 5011011001010 1101110011 000100000 00000 10 1000012 Escaping the Bu...
-
I have noticed a very unsettling statistic on my blog. This prompted a fascinating question about AI, blogs' future, and maybe even the...
-
Installation of Java on Pi is easy, you can ssh to your Pi remotely and just execute: pi@raspberrypi ~ $ sudo apt-get update && su...
-
Epiphany is one of these interesting words that can mean so much. For me it means the crossroad where I chose the road less travelled. The r...
-
I progressively cut my hair shorter and shorter. Now, I just came back from the swimming pool with Lili, so it is a mess.
-
Done working with your Beagle? You don't want to to just yank on the cord, you can shutdown your BBB in couple ways: 1) press "powe...
-
In this tutorial we will discuss upgrading Maven on Mac OS X. While trying building with Maven I was getting errors related to version numbe...
-
Unix time date format is used in many applications, including Yahoo finance. using Dates, Printf unix_date = @sprintf("%.0f", Date...
-
Creating HTML anchor tab for email with subject: <a href="mailto:YourName@me.com?subject=Hi" >email link </a>