I'm having trouble finding an efficient algorithm for the next problem: Given a convex polygon of size N (when N > 4), find a quadrilateral which is inclosed in the polygon with a maximal area
You can solve it in O(N^4) by choosing 4 points on the polygon and calculating the area (and finding the max area one) but I'm looking for a more efficient solution