Here we review the method of proof by induction from CMPSCI 250. Please answer the questions during the discussion period.
int gcd (int a, int b)
{ //assumes a > b >= 0
if (b == 0) return a;
else return gcd (b, a%b);}
Last modified 10 September 2003