"이항계수의 반전공식"의 두 판 사이의 차이
		
		
		
		
		
		둘러보기로 가기
		검색하러 가기
		
				
		
		
	
Pythagoras0 (토론 | 기여)  잔글 (찾아 바꾸기 – “<h5>” 문자열을 “==” 문자열로)  | 
				|||
| 7번째 줄: | 7번째 줄: | ||
| − | + | ==개요</h5>  | |
* <math>k=0,1,\cdots, n</math> 에 대하여, <math>a_0,\cdots,a_n</math> 과 <math>b_0,\cdots,b_n</math> 이 다음 관계를 만족시킨다고 하자.<br><math>a_k=\sum_{i=0}^{k}{k\choose i}b_i</math><br> 그러면<br><math>b_k=\sum_{i=0}^{k}(-1)^{k-i}{k\choose i}a_i</math> 가 성립한다.<br>  | * <math>k=0,1,\cdots, n</math> 에 대하여, <math>a_0,\cdots,a_n</math> 과 <math>b_0,\cdots,b_n</math> 이 다음 관계를 만족시킨다고 하자.<br><math>a_k=\sum_{i=0}^{k}{k\choose i}b_i</math><br> 그러면<br><math>b_k=\sum_{i=0}^{k}(-1)^{k-i}{k\choose i}a_i</math> 가 성립한다.<br>  | ||
| 35번째 줄: | 35번째 줄: | ||
| − | + | ==역사</h5>  | |
| 46번째 줄: | 46번째 줄: | ||
| − | + | ==메모</h5>  | |
*   <br>  | *   <br>  | ||
| 58번째 줄: | 58번째 줄: | ||
| − | + | ==관련된 항목들</h5>  | |
* [[삼각행렬]]  | * [[삼각행렬]]  | ||
| 81번째 줄: | 81번째 줄: | ||
| − | + | ==매스매티카 파일 및 계산 리소스</h5>  | |
* https://docs.google.com/leaf?id=0B8XXo8Tve1cxZTg3MWIwNjctODhiNi00ZGVmLTkyYmQtNWVjZmY4NTE0ODMx&sort=name&layout=list&num=50  | * https://docs.google.com/leaf?id=0B8XXo8Tve1cxZTg3MWIwNjctODhiNi00ZGVmLTkyYmQtNWVjZmY4NTE0ODMx&sort=name&layout=list&num=50  | ||
| 94번째 줄: | 94번째 줄: | ||
| − | + | ==사전 형태의 자료</h5>  | |
* http://ko.wikipedia.org/wiki/  | * http://ko.wikipedia.org/wiki/  | ||
| 106번째 줄: | 106번째 줄: | ||
| − | + | ==리뷰논문, 에세이, 강의노트</h5>  | |
| 114번째 줄: | 114번째 줄: | ||
| − | + | ==관련논문</h5>  | |
* http://www.jstor.org/action/doBasicSearch?Query=  | * http://www.jstor.org/action/doBasicSearch?Query=  | ||
| 124번째 줄: | 124번째 줄: | ||
| − | + | ==관련도서</h5>  | |
*  도서내검색<br>  | *  도서내검색<br>  | ||
** http://books.google.com/books?q=  | ** http://books.google.com/books?q=  | ||
** http://book.daum.net/search/contentSearch.do?query=  | ** http://book.daum.net/search/contentSearch.do?query=  | ||
2012년 11월 1일 (목) 02:15 판
이 항목의 수학노트 원문주소
==개요
- \(k=0,1,\cdots, n\) 에 대하여, \(a_0,\cdots,a_n\) 과 \(b_0,\cdots,b_n\) 이 다음 관계를 만족시킨다고 하자.
\(a_k=\sum_{i=0}^{k}{k\choose i}b_i\)
그러면
\(b_k=\sum_{i=0}^{k}(-1)^{k-i}{k\choose i}a_i\) 가 성립한다. - 원소의 개수가 n인 집합 E의 부분집합들이 이루는 poset 에 대해 뫼비우스 반전공식 을 적용한 것으로 이해할 수 있다
- 이 때 뫼비우스 함수는 \(\mu(S,T)=(-1)^{\left|T\setminus S\right|}\) 으로 주어진다
 
 - 이 때 뫼비우스 함수는 \(\mu(S,T)=(-1)^{\left|T\setminus S\right|}\) 으로 주어진다
 
행렬을 통한 이해
- n=5 인 경우
\(\left( \begin{array}{cccccc} 1 & 0 & 0 & 0 & 0 & 0 \\ 1 & 1 & 0 & 0 & 0 & 0 \\ 1 & 2 & 1 & 0 & 0 & 0 \\ 1 & 3 & 3 & 1 & 0 & 0 \\ 1 & 4 & 6 & 4 & 1 & 0 \\ 1 & 5 & 10 & 10 & 5 & 1 \end{array} \right)\) 의 역행렬은
\(\left( \begin{array}{cccccc} 1 & 0 & 0 & 0 & 0 & 0 \\ -1 & 1 & 0 & 0 & 0 & 0 \\ 1 & -2 & 1 & 0 & 0 & 0 \\ -1 & 3 & -3 & 1 & 0 & 0 \\ 1 & -4 & 6 & -4 & 1 & 0 \\ -1 & 5 & -10 & 10 & -5 & 1 \end{array} \right)\) 이다. 
\(\sum_{k=m}^n (-1)^{k-m} \binom{k}{m} \binom{n}{k} = \delta_{mn}\)
==역사
==메모
- http://math.stackexchange.com/questions/55659/combinatorial-interpretation-of-binomial-inversion
 - http://math.stackexchange.com/questions/4175/beautiful-identity-sum-k-mn-1k-m-binomkm-binomnk-delta
 - Math Overflow http://mathoverflow.net/search?q=
 
==관련된 항목들
수학용어번역
- 단어사전
 - 발음사전 http://www.forvo.com/search/
 - 대한수학회 수학 학술 용어집
 - 한국통계학회 통계학 용어 온라인 대조표
 - 남·북한수학용어비교
 - 대한수학회 수학용어한글화 게시판
 
==매스매티카 파일 및 계산 리소스
- https://docs.google.com/leaf?id=0B8XXo8Tve1cxZTg3MWIwNjctODhiNi00ZGVmLTkyYmQtNWVjZmY4NTE0ODMx&sort=name&layout=list&num=50
 - http://www.wolframalpha.com/input/?i=
 - http://functions.wolfram.com/
 - NIST Digital Library of Mathematical Functions
 - Abramowitz and Stegun Handbook of mathematical functions
 - The On-Line Encyclopedia of Integer Sequences
 - Numbers, constants and computation
 - 매스매티카 파일 목록
 
==사전 형태의 자료
- http://ko.wikipedia.org/wiki/
 - http://en.wikipedia.org/wiki/
 - The Online Encyclopaedia of Mathematics
 - NIST Digital Library of Mathematical Functions
 - The World of Mathematical Equations
 
==리뷰논문, 에세이, 강의노트
==관련논문
==관련도서