Mathematical Induction
Strong Induction
ex) Fundamental Theorem of Arithmetic
all integer can be written as product of primes

Recursion
basis step: specify the value at zero
recursive step: find value at smaller integers(문제를 쪼갬)
ex) String
basis: empty string lambda
recursive: w,x in SIGMA→ wx in SIGMA

ex) Well-formed fomulae
ex) Rooted Trees
ex) Full Binary Tree
ex) factorial
ex) GCD
ex) binary search
ex) merge sort
