Math Flashcards

1
Q

what is the sum of all consecutive numbers from 1 to n?

A

n(n+1)/2

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

what is the sum of all consecutive numbers from 0 to n-1?

A

n(n-1)/2

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

define combination

A

a counting technique for number of ways to pick certain items from a set to expand into a larger set where ordering of the items per item in the larger set matters.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

define permutation

A

a counting technique for number of ways to pick certain items from a set to expand into a larger set where ordering of the items per item in the larger set matters.

a good way to remember is that a “combination lock” is a MISNOMER. it should be a permutation lock because order matters!

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

combination formula without repetition

A

nCr = n!/(r!(n-r)!)

e.g. a lottery ticket!

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

permutation formula without repetitions

A

n! / (n-k)!

just multiply the number of choices at each instance

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

permutation formula with repetitions

A

n^k

just the number of spaces available is k

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

combination formula WITH repetition

A

i don’t think there’s a general formula

see here: https://www.mathsisfun.com/combinatorics/combinations-permutations.html

e.g. coins in your pocket (5,5,5,10,10,10)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly