Math Background



Topics



EXPONENTIATION





Exponentiation: Definition



Up Arrow: A Digression



Exponentiation: Properties of Powers



Buzz Numbers



LOGORITHMS





Logarithm: Definition



Examples



Logarithm: More Background



Properties of Logarithms



Examples of Properties



More Properties of Logarithms



Notation: Lg, Log, and Ln



Logarithm Intuition

Another way to think about logarithms.

Properties of Logarithms Revisited



Approximations



Logarithms and Negative Powers



Does the Base Matter - All Logs are the Same



More Examples of Powers and Logs



Natural Log



COMBINATORICS - MOSTLY SKIP





Permutations



SKIP THE REST



Combinations



Subsets



Summations





Important Summation Formula


  1. $\displaystyle \sum_{i=l}^{h}1 = \underbrace{1 + 1 + \dots + 1}_{u-l+1 \text{ times}} = h-l+1$
  2. $\displaystyle \sum_{i=1}^{n}i = 1 + 2 + \dots + n = \frac{n(n+1)}{2} \approx \frac{n^2}{2}$
  3. $\displaystyle \sum_{i=1}^{n}i^2 = 1 + 4 + \dots + n^2 = \frac{n(n+1)(2n+1)}{6} \approx \frac{n^3}{3}$
  4. $\displaystyle \sum_{i=1}^{n}i^k = 1 + 2^k + \dots + n^k \approx \frac{n^{k+1}}{k+1}$
  5. $\displaystyle \sum_{i=0}^{n}a^i = 1 + a + a^2 + \dots + a^n = \frac{a^{n+1}-1}{a-1} $ (a ≠ 1)
  6. $\displaystyle \sum_{i=1}^{n}i2^i = 1\times 2 + 2\times 2^2 + \dots + n 2^n = (n-1)2^{n+1}+2 $
  7. $\displaystyle \sum_{i=1}^{n}1/i = 1/1 + 1/2 + \dots + 1/n ≈ \ln n + \gamma $, where $\gamma = 0.5722\dots$ (Euler's constant)
  8. $\displaystyle \sum_{i=1}^{n}\textrm{lg }i \approx n \lg n$

  9. Most important: 1, 2, 5
  10. Next most important: 4, 7, 8


Manipulating Summation Formula


  1. $\displaystyle \sum_{i=1}^{n}ca_i = c\sum_{i=1}^{n}a_i $
  2. $\displaystyle \sum_{i=1}^{n}(a_i \pm b_i) = \sum_{i=1}^{n}a_i \pm \sum_{i=1}^{n}b_i $
  3. $\displaystyle \sum_{i=l}^{u}a_i = \sum_{i=l}^{m}a_i + \sum_{i=m+1}^{u}a_i $
  4. $\displaystyle \sum_{i=l}^{u}(a_i - a_{i-1}) = a_u - a_{l-1}$


Approximation of a Sum by a Definite Integral



See the text (Appendix A)



Floor and Ceiling Functions





Floor



Ceiling



Properties of Floor and Ceiling

  1. $x - 1 \lt \lfloor x \rfloor \le x \le \lceil x \rceil \lt x + 1 $
  2. $\lfloor x + n \rfloor = \lfloor x \rfloor + n $ for real x and integer n
  3. $\lfloor n/2 \rfloor + \lceil n/2 \rceil = n $
  4. $\lceil \lg(n+1) \rceil = \lfloor \lg n \rfloor + 1 $

  5. Any positive number n can be halved (integer division) ⌊lg n⌋ times before reaching 1


Miscellaneous





Notation for Powers [NIB]



Postive and Non-negative



Theorems and Lemmas



Conventions



Inductive Proofs (ie Mathematical Induction) - SKIP





Inductive Proofs (ie Mathematical Induction)



Basis, Induction Hypothesis, Inductive Step



Induction Example



Induction: Final Points