There is a proposed calendar on the syllabus, but here I will record what we actually get through in each class.
All text assignments must be written up neatly or be typed, and must be in complete sentences. Remember that 10% of your exam grade is based on the quality of your work.
All text assignments must be written up neatly or be typed, and must be in complete sentences. Remember that 10% of your exam grade is based on the quality of your work.
All text assignments must be written up neatly or be typed, and must be in complete sentences. Remember that 10% of your exam grade is based on the quality of your work.
# Written in Python
# Empty collection of equivalence classes
EC={}
# Build equivalence classes
for i in range(3):
for j in range(3):
for k in range(3):
for l in range(3):
# New element
temp_lst=[i,j,k,l]
# Assign to equivalence class based on sum
EC[sum(temp_lst)]=EC.get(sum(temp_lst),[])+[temp_lst]
# Display equivalence classes
for key in EC: print(key,":\t",EC[key])
All text assignments must be written up neatly or be typed, and must be in complete sentences. Remember that 10% of your exam grade is based on the quality of your work.
All text assignments must be written up neatly or be typed, and must be in complete sentences. Poor quality work can result in up to a 10% penalty.
The final exam for this class is at 2pm on Monday December 9th.
If you are doing this extra credit here is a quick reference sheet with symbols and such: Quick Reference
If you are having problems typing up a document and would like feedback you can share a link to it by following the directions here: https://www.overleaf.com/learn/how-to/Sharing_a_project; send me the link to view but not edit. You can see a full playlist of video lessons here: Technical Typesetting with \(LaTeX\) Playlist
Complete this packet on Writing Up Mathematics. This assignment needs to be typed.
\(\mathbb{N}\), \(\mathbb{Z}\), \(\mathbb{Q}\), \(\mathbb{R}\), rational number, irrational number, set notation, set roster notation, modus ponens, modus tollens, De Morgan’s Law, negation, distribution, commutative law, associative law, \(\forall\), \(\exists\), converse, inverse, contrapositive, conjunction, disjunction, set, subset, Cartesian product, relation, function, sequences, series, summation, summation notation \[\sum_{i=0}^n a_i=a_0+a_1+\cdots+a_n,\] product notation \[\prod_{i=0}^n a_i=a_0\times a_1\times \cdots\times a_n,\] geometric sum \[\sum_{i=0}^n a\, r^i=a+ar+ar^2+\cdots+ar^n=a\, \frac{(r^{n+1}-1)}{r-1},\] union, intersection, set difference, set complement, power set – \(\mathscr{P}(x)\), reflexive, symmetric, transitive, anti-symmetric, function, one-to-one, onto, inverses, composition, addition principle, multiplication principle, possibilities tree, combinations, factorial, permutations, binomial coefficients, multinomial coefficients, graph, walk, circuit, Euler circuit, path, tree, trail, binary tree, Hamilton circuit, closed walk, … etc.