Skip to content

Instantly share code, notes, and snippets.

@markusbuchholz
Created August 28, 2021 20:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save markusbuchholz/926e08f08eb31abb9cfc49aee0dbd01e to your computer and use it in GitHub Desktop.
Save markusbuchholz/926e08f08eb31abb9cfc49aee0dbd01e to your computer and use it in GitHub Desktop.
##############
$$\large B(t) = \sum_{i=0}^{n} \binom{n}{i}(1-t)^{n-i}t^{i}P_{i} $$
$$\large \text {where, parameter t:}$$
$$\large 0\leq t\leq 1 $$
#############
$$\large \binom{n}{k} = \frac{n!}{k!(n-k)!} = \prod_{i=1}^{k}\frac{n+1-i}{i} $$
#############
$$\large B(t) = (1-t)^3P_{0} + 3(1-t)^2tP_{1} + 3(1-t)^2t^2P_{2} + t^3P_{3} $$
#############
$$\large B(t) = (1-t)^5P_{0} + 5t(1-t)^4P_{1} + 10t^2(1-t)^3P_{2} + 10t^3(1-t)^2P_{3} + 5t^4(1-t)^4P_{4} + t^5P_{5} $$
#############
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment