Skip to content

A collection of combinatorics problems and solutions along with simulations to proove them

Notifications You must be signed in to change notification settings

brianSalk/Daily-Problems

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Daily Problems

Answers, explainations and code for each of the daily problems on my youtube channel

Click here to see the prerequisits for most of these puzzles

Things you should be familiar with before attempting these problems

Addition Rule: Count number of ways that mutually exclusive events can happen.

Expample: How many ways can I order one of $3$ sandwiches or one of $2$ soups? $3+2$

Product Rule: Count number of ways the simultainious events can happen

Example: How many ways can I order one of $3$ sandwiches and one of $2$ soups? $3 \cdot 2$

Inclusion-Exclusion principle: Subtract elements that have been counted multiple times.

Example: How many ways can a die land on an odd number or a number less than $3$? $3 + 2 - 1$

Factoials: $n!$

Example: $5! = 5 \cdot 4 \cdot 3 \cdot 2$

Permutations: $\prescript{n}{}{P}_r$

Example: $\prescript{5}{}{P}_3 = 5 \cdot 4 \cdot 3 = \dfrac{5!}{(5-3-1)!}$

Binomial Theorem: ${ n \choose r }$

Example: ${ 5 \choose 3} = \dfrac{5!}{(5-3-1)! \cdot 3!}$



Sigma notation: $$\sum_{i=1}^{n}i$$

Example: $$\sum_{i=1}^{5} i = 1 + 2 + 3 + 4 + 5 = 15$$

Problem List

2 3 hello permutations

About

A collection of combinatorics problems and solutions along with simulations to proove them

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published