Assuming a $n\times n$ square grid, what is the most number of squares that can be filled in such that there are no completed rows, columns, or diagonals?
Is there a formula to calculate this?
Real world example:
Given a Bingo sheet, what is the most spots you can mark and still not win a bingo?
It stands to reason that since $N$ is finite, there much reach a point where it is impossible to fill any additional positions such that you would not complete a row, column or diagonal.
Problem is, how do we calculate or predict this number?
Hint:
Flip the problem around: what's the smallest number of empty squares you need to have an empty square in every row, column, and diagonal? Can you find a simple, symmetric configuration to do it with $n$ of them when $n$ is odd? Is it possible to use fewer?
What if $n$ is even? If $n$ is even and greater than $2$, how can you modify a simple odd solution to give an even one?
Expansion:
Consider the case where you want all the little diagonals too. Certainly it's sufficient to blank out the top row and both left and right columns for $3n-2$ blanks. Is this optimal? For $3\times 3$, it certainly is. For larger boards, it's not clear to me. Things are again different if the board is pasted over a torus. I'm sure these questions have all been studied, but I don't know the answers.