2

Is there a way to know how much time it would take to solve a jigsaw puzzle if I already solve this same puzzle with a different number of pieces while timing myself?

Example of a landscape puzzle: (number of pieces) time to solve mm:ss

  • (24) 00:50
  • (54) 01:58
  • (96) 04:51
  • (150) 09:07
  • (384) 45:16

If the same puzzle was available in a 1000 pieces format, how long would it take me?

Also, is there a minimum number of puzzle of different size I need to complete to get a formula?

The image can greatly impact the time it will take to solve it too. If I am solving a puzzle with 2/3 of the image being a gradient sky and an image of a person, the gradient sky would take almost the same time as the person in a smaller puzzle size, but would take considerably longer the more pieces there are.

pikarie
  • 23

3 Answers3

2

As you mention in the last paragraph, the time depends on the content, so there is no univocal relation between the number of pieces and the time.

Your data points are fairly well fitted by a linear law, and very well by a quadratic one. But we have no reason to believe that the time is super-linear, as you essentially build local aggregates of pieces and the time to locate one is roughly constant (or a slowly growing function of the total counts).

If you really want to find a statistically meaningful model, with a measure of the spread, you will have to solve hundreds of puzzles, and the result will depend on the operator.

  • Would it be beneficial to also estimate a difficulty level for the puzzle (1 easy, 10 really hard and long to solve) while gathering the other data (time to solve, number of pieces for a given puzzle)? – pikarie Apr 07 '20 at 18:14
0

The "blind guess-and-check" puzzle solving strategy takes quadratic time, so assuming your strategy is no worse than that, quadratic regression should work well.

Karl
  • 11,446
-1

enter image description here

Best Guess given only the data provided (y axis in minutes, x axis in number of pieces). Red shows your actual data, and blue shows Mathematica's best guess. It is a quadratic function, if you care to know.

mm8511
  • 871
  • I don't know much about mathematics. Your answer is really what I was looking for! Is there a way that I can reproduce it on my own? Are you using an online tool to enter the data in your example? I would like to gather new data per puzzle and get an estimation in time it would take to solve it at a different difficulty. – pikarie Apr 07 '20 at 18:15
  • 1
    Such an extrapolation is completely unreliable. –  Apr 07 '20 at 19:40
  • Never made the claim that it was "reliable." Though, I challenge you to provide a better guess based on five data points. – mm8511 Apr 11 '20 at 18:33