Math and Logic Puzzles Flashcards

1
Q

Prime Number Law

A

All positive integers can be decomposed into a product of primes

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

Divisibility

A

In order for a number x to divide a number y (x\y), all primes in x’s prime factorization must be in y’all prime factorization.

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

Greatest Common Divisor of x and y

A

The greatest positive integer d such that d is a divisor or both x and y.

It is the product of x and y’s primes, but to the power of the lowest power between the two numbers.

Example: 6 = 21 * 31 and 8=23 becomes 21 * 3**0 = 2.

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

Least Common Multiplier of x and y

A

The smallest positive integer that is divisible by both x and y.

It is the product of the primes of x and y but with the largest power used.

Example 6 = 21 * 31 and 8=23 is 23 * 3**1 = 24

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

gcd * lcd of x and y

A

This becomes x * y. The key concept to understand is that gcd deals with the min prime power while the lcd deals with the max prime power. Together, they will touch both of x’s and y’s primes.

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

Check for Primality: Naive

A

Check for divisibility from 2 through n-1 of the number.

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

Check for Primality: Naive w/small improvement

A

Only check numbers from 2 to sqrt(n). For every number a that divides n evenly, there is a complement b. If a > sqrt(n) then b < sqrt(n). Therefore, we’ve already checked if b divides n evenly.

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

Sieve of Eratosthenes

A

Produces a list of primes from 2 to max. It works by recognizing that all non-prime numbers are divisible by a prime number. Start with a list of numbers up through value max. First, cross off all numbers divisible by 2. The next prime will be the next number in the list not crossed off. Cross off all numbers divisible by this prime. Continue until you reach the max number or last remaining non-crossed off number.

There are a number of optimizations that can be added. For example, using a list of odd numbers will reduce space usage by half.

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

Probably of A and B

A

The probability of landing at the intersection of A and B (A upside down U B)

P(A and B) = P(B given A) P(A) = P(A given B) P(B)

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

Bayes’ Theorem

A

P(A given B) = P(B given A) P(A) / P(B).

This is b/c P(A and B) can be expressed in terms of P(A) or P(B).

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

Probability of A or B

A

Probability of landing in A or B. It’s the probability of landing in one plus the the probability of landing in the other, minus the probability of landing in both.

P(A or B) = P(A) + P(B) - P(A and B)

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

Independence

A

If A and B are independent (that is, one happening tells you nothing about the other happening), then P(A and B) = P(A) P(B) b/c P(B given A) = P(B).

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

Mutually Exclusivity

A

If A and B are mutually exclusive (that is, if one happens, then the other cannot happen), then P(A or B) = P(A) + P(B) b/c P(A and B) = 0

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

If an events are independent, can they be mutually exclusive and vice versa?

A

No unless one or both events have zero probability. If events are mutually exclusive, one happening means the other cannot. If they are independent, one happening has no effect on the other happening.

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

Worst Case Shifting

A

Balance the worst case. If an early decision results in a skewing of the worst case, we can sometimes change the decision to balance out the worst case. Think of the 9 ball problem, where one is heavier then the rest. Do it in 2 steps instead of 3.

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