What is the maximum number of mines in a Minesweeper board?

  • Thread starter Thread starter weevil
  • Start date Start date
  • Tags Tags
    Derive
AI Thread Summary
The discussion focuses on determining the maximum number of mines that can be placed on a Minesweeper board based on its dimensions. The user has gathered data from the Windows 7 version of the game, showing specific maximum mine counts for various row and column combinations. They seek to derive a mathematical equation to generalize these findings, acknowledging that Minesweeper requires empty cells on each board. The conversation highlights the challenge of reverse engineering the game's constraints and the need for a more precise understanding of the maximum mine limits. Ultimately, the goal is to create a more accurate algorithm for the game.
weevil
Messages
3
Reaction score
0
I'm programming a minesweeper game, and I'm trying to come up with an equation to determine the maximum number of mines a board can have dependent on the amount of rows and columns given. I pulled some numbers from the Windows 7 version, but I'm not sure how to derive an equation from them.

I'll list a few and maybe someone could point me in the right direction? Sorry if this is in the wrong forum, I'm lost enough in mathematics that I don't even know what branch this falls under :P

Row | Col | Windows Max No. of Mines
9 x 9 = 67
10 x 9 = 76
11 x 9 = 84
12 x 9 = 93

9 x 10 = 76
10 x 10 = 85
11 x 10 = 95
12 x 10 = 104

9 x 11 = 84
10 x 11 = 94
11 x 11 = 105
12 x 11 = 115

9 x 12 = 93
10 x 12 = 104
11 x 12 = 115
12 x 12 = 126

9 x 13 = 101
10 x 13 = 113
11 x 13 = 125
12 x 13 = 138

9 x 14 = 109
10 x 14 = 123
11 x 14 = 136
12 x 14 = 149

I found a crappy approximation as Row * Col - .9 * (14 + Col - 9 + Row - 9)
where any floating point number in the solution is truncated due to being
stored in an integer data type. It's serving for now but I'd like to understand how to analyze something like this for curiosities sake.
 
Mathematics news on Phys.org
Please explain what do you mean by "maximum number of mines" - what are constraints? Sounds to me like - if we assume each field can hold exactly one mine - maximum number of mines is just width*height of the board.
 
Borek said:
Please explain what do you mean by "maximum number of mines" - what are constraints? Sounds to me like - if we assume each field can hold exactly one mine - maximum number of mines is just width*height of the board.

Minesweeper needs empty cells on each new board. Windows gives a maximum number of mines you can have on any given board size, those are the numbers I gave above.
 
So basically you are trying to reverse engineer Minesweeper, and numbers you listed were checked experimentally?
 
Borek said:
So basically you are trying to reverse engineer Minesweeper, and numbers you listed were checked experimentally?

More or less :) The custom board size dialog gave those numbers as upper limits.
 
Insights auto threads is broken atm, so I'm manually creating these for new Insight articles. In Dirac’s Principles of Quantum Mechanics published in 1930 he introduced a “convenient notation” he referred to as a “delta function” which he treated as a continuum analog to the discrete Kronecker delta. The Kronecker delta is simply the indexed components of the identity operator in matrix algebra Source: https://www.physicsforums.com/insights/what-exactly-is-diracs-delta-function/ by...
Suppose ,instead of the usual x,y coordinate system with an I basis vector along the x -axis and a corresponding j basis vector along the y-axis we instead have a different pair of basis vectors ,call them e and f along their respective axes. I have seen that this is an important subject in maths My question is what physical applications does such a model apply to? I am asking here because I have devoted quite a lot of time in the past to understanding convectors and the dual...
Back
Top