Problem
The square function (sqr (x) = x^2 ) can be defined recursively by thinking about how (x + 1)^2 can be defined in terms of x^2 (and x). First come up with a recursive definition of the square function. Then provide a recursive method that computes the function and trace its execution.