Problem
1. Using recursion, find the largest element in an array.
2. Using recursion, compute the sum of all values in an array.
3. Using recursion, compute the area of a polygon. Cut off a triangle and use the fact that a triangle with corners (x1, y1), (x2, y2), (x3, y3) has area |x1y2 + x2y3 + x3y1 - y1x2 - y2x3 - y3x1| / 2