달력

5

« 2024/5 »

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31

visual studio 설치 설정


Hello world


:
Posted by youjin.A
2015. 9. 8. 23:29

1. Set 전자공학이론/이산수학2015. 9. 8. 23:29

    는 Definition


set

an unordered collection of object.

A = {1, 3, 5, 7}

B = { n | n is a prime number} which we read as 'the set of all n such that n is a prime number'.

Two sets X and Y equal if ((x∈X -> x∈Y) ^ (x∈Y -> x∈X)).

cadinality, denoted by |X|, is the number of elements in a set X.(size)


subset

We write X⊆Y to mean that any member of X is also in Y, and say that X is a subset.

X is proper subset if X ⊆ Y and X≠Y. 


Power set

The set of all subsets of X is called its power set P(X). Thus

P(X) =  { Y | Y⊆X}


partition

A partition S on a set X is a familly {A1, A2, ... , An} of subsets of X, such that

S = {A| (A⊆X) ^ (Aj∩Ak = ø. for every j, k) ^ ( A1∪A2∪ ... ∪ An = X)


operation

①union

X∪Y = { x| x∈X or x∈Y}

② intersection

X∩Y = { x| x∈X and x∈Y}

Two sets X and Y are disjoint if X∩Y = ø.

A collection of sets S is said to be pairwise disjoint if whenever X and Y are distinct sets in S, X and Y are disjoint. 

③ difference

X - Y = { x| x∈X and x∉Y}

④ complement

X^ ̄ = U - X

⑤ Other Notation

Let S = {A1, A2, A3, ... , An}

∪S = { x|x∈X for some X∈S} = A1∪A2∪ ... ∪An

∩S = { x|x∈X for all X∈S} = A1∩A2∩ ... ∩An 

pairwise disjoint의 예) S = { { 1, 4, 5}, {2, 6}, {3}, {7, 8} }


Properties of set operations



문제

'전자공학이론 > 이산수학' 카테고리의 다른 글

6. Proofs  (0) 2015.10.17
5. Proposition  (0) 2015.10.17
4. function  (0) 2015.10.17
3. Relation  (0) 2015.10.17
2. Sequence  (0) 2015.10.16
:
Posted by youjin.A
2015. 9. 7. 23:12

라플라스 변환 전자공학이론/수학2015. 9. 7. 23:12






다음 파일은 RLC회로의 미분방정식을 라플라스 변환과 역변환을 이용하여 푸는 문제들이다.

라플라스변환 회로 문제.hwp


'전자공학이론 > 수학' 카테고리의 다른 글

복소수와 페이저  (0) 2016.02.06
미분법  (0) 2016.02.06
벡터 해석(벡터 대수의 기본 법칙)  (0) 2016.02.06
연립 방정식 푸는 법  (0) 2016.02.06
상수 계수를 가진 1차, 2차 선형 미분방정식  (0) 2015.10.19
:
Posted by youjin.A