1. For integers a and b,if ab is odd, then a and b are odd.
2. If xy=(x +y)^2 / 4 ,then x=y. prove the following 2 statements, state the method used and explain all necessary steps.
3.Suppose that factorial is the Python function defined below. Use this function to give a
proof by induction of the statement: For all n ∈ N, factorial(n)= n!. def factorial(n):
if n==0:
return 1
elif n==1:
return 1
else:
return factorial(n-1)∗n