1 - Sets - 1.1, 3.1

ucla | MATH 61 | 2022-09-23T11:05


Table of Contents

Recall

  1. Sets are a collection of unique elements
    1. cardinality is the quantity of a set
  2. We can operate on sets using
    1. unions/intersections
    2. differences/complements
    3. collections/partitions
    4. products
  3. We can describe set correlations as
    1. injective, surjective, bijective
  4. Functions we use
    1. mapping/transformations, modulus, floor/ceiling, composition

Notes

Core Definitions - 1.1

  • sets
    • collection of objects called elements (elts) or members
    • if few element
      • A=1,2,3
    • many elements
      • B=1,2,3,
    • conditional
      • C=2,4,6,8,=xZ | x is an even integer
  • symbols
    • $\mathbb{Z}={xx\space\text{is an integer}}$
    • $\mathbb{Q}={xx\space\text{is a rational number}}$
    • $\mathbb{R}={xx\space\text{is a real number}}$
  • infinite/finite
    • if x has infinite elements, x is infinite else finite
  • cardinality
    • the number of unique elements in x written |x|
  • empty set
    • if x contains no elements, denote empty set as ϕ
  • equal sets
    • if each set contains the same elements
    • prove equality by showing “if xX then xY and if yY then yX
    • prove inequality by showing some xX where xY
  • subset
    • if each element of X is also an element of Y, X is a subset of Y, denoted XYelse XY
  • proper subset
    • if XY and XY then XY
  • power set
    • the set of all subsets of X denoted P(X)
    • if X=1,2 then P(X)=ϕ,1,2,1,2
  • universal set
    • the usual larger set in which all sets are contained denoted U

Set Operations - 1.1

  • union
    • XY=z | zX or zY
  • intersection
    • XY=z | zX and zY
    • if XY=ϕ then X and Y are disjoint
  • difference
    • XY=z | zX and zY
  • complement
    • X¯=xU | xX=UX
  • collection
    • set of sets denoted denoted
    • iAi=xAi for some i
    • jAj=xAj for each j
  • partition
    • a collection S=Ai is a partition of set X if for each xX there is some i for which xAi and each Ai,Aj are disjoint
  • cartesian product
    • $X\times Y={(x,y)x\in X,y\in Y}$

Functions - 3.1

  • function
    • assignment of an element of Y (codomain) to each of X (domain)
    • f:XY and f(x)
    • the range is ${y\in Yy=f(x)\space\text{for some} x\in X}$
  • modulus
    • x mod y is the remainder from dividing x by y
  • floor
    • round down to nearest integer denoted x
  • ceiling
    • round up to nearest integer denoted x
  • injective (one-to-one)
    • f:XY is injective if:
    • for each x1,x2X if f(x1)=f(x2) then x1=x2
  • surjective (onto)
    • f:XY is surjective if:
    • for each yY there exists some xXwhere f(x)=y
  • bijective (invertible)
    • f:XY is bijective if:
    • f is injective and surjective, then:
    • f1 is the inverse of f:XY where if f(x)=y then f1(y)=x denoted f1:YX
  • composition
    • for f:XY,g:YZ:
    • gf=g(f) such that gf(x)=g(f(x))=g(y)=z

Lecture

📌

**SUMMARY
**In Math 61, we explore sets - a mathematical object used to store elements; elements can be of any type including other sets which are called subsets
We explore manipulating sets using set operations and functions to describe or transform sets