Binomial Theorem
Binomial Theorem (이항정리)는
- (a+b)n 형태의 이항식을
- a 와 b의 항들로 이루어진 합으로 전개하는 방법을 설명하는 Theorem.
공식 (Formula)
Binomial Theorem 는 다음과 같이 표현:
(a + b)^n = \sum_{k=0}^n \binom{n}{k} a^{n-k} b^k
여기서:
- n: 양의 정수 또는 0 (지수),
- \binom{n}{k}: Binomial Coefficient(이항계수)로 n 개 중 k 개를 선택하는 방법의 수:
\binom{n}{k} = \frac{n!}{k!(n-k)!}
2024.02.04 - [.../Math] - [math] Factorial(계승), Permutation (순열) & Combination (조합)
[math] Factorial(계승), Permutation (순열) & Combination (조합)
경우의 수를 세는 방법의 기본Factorial, Permutation and CombinationFactorial (계승)서로 다른 물건들을 모두 순서를 주어 나열할 수 있는 모든 경우의 수. n! = n\times(n-1)\times(n-2)\times\cdots\times1 Factorial func
dsaint31.tistory.com
Key Points
- Binomial Coefficient (이항계수):
- \binom{n}{k} 는 전개된 각 항의 계수.
- Exponent Pattern (지수 패턴):
- a 의 지수는 n 에서 시작하여 0 으로 감소.
- b 의 지수는 0 에서 시작하여 n 으로 증가.
- Number of Terms (항의 개수):
- 전개된 Term 은 총 n+1 개.
예제
1. (a + b)^2 :
\begin{aligned}(a + b)^2 &= \binom{2}{0}a^2b^0 + \binom{2}{1}a^1b^1 + \binom{2}{2}a^0b^2 &= a^2 + 2ab + b^2\end{aligned}
2. (x + 1)^3 :
\begin{aligned}(x + 1)^3 &= \binom{3}{0}x^3 + \binom{3}{1}x^2(1) + \binom{3}{2}x(1^2) + \binom{3}{3}(1^3) &= x^3 + 3x^2 + 3x + 1\end{aligned}
같이보면 좋은 자료들
2023.03.14 - [.../Math] - [Math] Binomial Distribution (이항분포)
[Math] Binomial Distribution (이항분포)
Binomial Distribution (이항분포) 1. 정의 1이 나올 확률(or 성공확률)이 p이고, 0이 나올 확률(or 실패확률)이 1-p인 Bernoulli trial을 N번 반복하는 경우의 성공횟수를 Random Variable X라고 할 경우,
dsaint31.tistory.com
'... > Math' 카테고리의 다른 글
[Math] Laplace Distribution (1) | 2025.01.13 |
---|---|
[Math] Extremum Point, Inflection Point, Saddle Point, Convex and Concave. (0) | 2025.01.05 |
[Math] Exponential Moving Average (EMA) (0) | 2024.11.22 |
[Math] Basis (0) | 2024.10.28 |
[Math] Inner Product (or Hermitian Inner Product, 내적) (5) | 2024.10.28 |