Take a set of N points where no group of points with more than two points can be co-linear. The points also lie in the plane. What is the minimum amount of straight lines it takes to bound each point into a separate region so that no two points share the same region? Does the position of the points matter given that they are not co-linear?
Note: 1. Lines may intersect each other but may not intersect any of the N points 2. Define "Bound" to mean each point is in separate region and that region has a finite area.
For example: two points can be bounded by drawing a triangle around both points them drawing one line to separate the triangle into two halves.
As a partial answer: we can always use about $\frac34n$ lines. (We need $\frac34n -1$ when $n$ is divisible by $4$, but slightly more or fewer in other cases.) This assumes we don't care whether the regions are finite or infinite; as mentioned in the comments, if you want all regions to be finite, we can just use $3$ more lines at the beginning to draw a really really big triangle around all $n$ points.
First, we can divide the $n$ points into $\frac12n$ pairs with about $\frac12n$ lines. Without loss of generality, assume the points have distinct $x$-coordinates $x_1, x_2, \dots, x_n$. Then we can draw vertical lines at $x$-coordinates $\frac{x_2+x_3}{2}$, $\frac{x_4+x_5}{2}$, and so on, separating the two leftmost points from the next two from the next two and so on. The result is a picture like this one:
Now take these pairs two at a time. The key is that we can separate two pairs of points with one line. If we need to separate $A$ from $B$, and $C$ from $D$, draw a line through the midpoint of $AB$ and the midpoint of $CD$. For example, to separate the two leftmost pairs of points, we can draw the following line:
(In this case, the line happens to also separate the third pair of points, but that's not guaranteed in general.)
Since there are $\frac12n$ pairs that need to be separated, this can be done with $\frac14n$ more lines, for a total of about $\frac34n$.
In the best case, we can use $O(\sqrt n)$ lines, since $k$ lines in general position form $O(k^2)$ regions. But I don't know when that is achievable.