Introduction to Sets

CharliePark·2020년 9월 1일
0

TIL

목록 보기
18/67

Definition of Set

 

def : A set is a collections of things that are referred to as the elements of the set

A = {1, 2, 4, 5, a, ... }

A : name of set (Capital Letter)

{ } : braces (set brackets)

1, 2, 4, 5, a : elements (Small Letter)

... : ellipsis

 

if A={a,b,c}A = \{a, b, c\}

aAa \in A

a is in set A

dAd \notin A

d is not in set A

 

 

Number Sets

 

N\mathbb{N} : Natural Numbers
{1,2,3,4,}\{1, 2, 3, 4, \cdots\}

Z\mathbb{Z} : Integers
{,2,1,0,1,2,}\{\cdots, -2, -1, 0, 1, 2, \cdots\}

Q\mathbb{Q} : Rational Numbers
e.g. 42, 35e.g.\ \frac{4}{2}, \ -\frac{3}{5}

Qˉ\bar{\mathbb{Q}} : Irrational Numbers
e.g. π,e,2e.g.\ \pi, e, \sqrt{2}

R\mathbb{R} : Real numbers = both Rational and Irrational Numbers

I\mathbb{I} : Imaginary Numbers
e.g. i=1e.g.\ i = \sqrt{-1}

C\mathbb{C} : Complex Numbers = combination of Real and Imaginary number (in the form of a+bia + bi)
e.g. 3+4ie.g.\ -3 + 4i

 

 

Set Equality

When are two sets equal?

Axiom of Extension : a set is determined by what its elements are - not the order in which they might be listed or the fact that some elements might be listed more than once

 

set doesn't care about order and duplication of elements at all

 

 

Set Builder Notation

(조건 제시법)

A={1,4,7,}A = \{1, 4, 7, \cdots\}

is the same with

{xN  x=3k2,kN}\{x \in \mathbb{N}\ \vert\ x = 3k - 2, k \in \mathbb{N} \}

0개의 댓글