nlile commited on
Commit
deec2ac
·
verified ·
1 Parent(s): 634eeec

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +59 -0
README.md CHANGED
@@ -27,3 +27,62 @@ dataset_info:
27
  download_size: 56526
28
  dataset_size: 142410
29
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  download_size: 56526
28
  dataset_size: 142410
29
  ---
30
+
31
+ # Math Twenty Four (24s Game) Dataset
32
+
33
+ A comprehensive dataset for the classic math twenty four game (also known as the 4 numbers game / 24s game / Game of 24). This dataset of mathematical reasoning challenges was collected from 4nums.com, featuring over 1,300 unique puzzles of the Game of 24, with difficulty metrics derived from over 6.4 million human solution attempts since 2012.
34
+
35
+ In each puzzle, players must use exactly four numbers and basic arithmetic operations (+, -, ×, /) to construct an expression that evaluates to 24. For example, given the numbers "4 9 10 13", one valid solution is "(10 - 4) × (13 - 9) = 24".
36
+
37
+ ## Dataset Summary
38
+
39
+ This dataset contains 1,362 unique combinations of 24 numbers puzzles, specifically:
40
+
41
+ - Complete set of math puzzles using 4 numbers to make 24
42
+ - Performance data from over 6.4 million puzzle attempts (<3 4nums.com)
43
+ - Difficulty ratings based on real player solve times
44
+ - Multiple solution variations for each solvable puzzle
45
+ - Comprehensive coverage of all possible number combinations from playing cards (1-13)
46
+
47
+ ## Dataset Structure
48
+
49
+ Each entry in the dataset represents a unique math twenty four puzzle:
50
+
51
+ ```python
52
+ {
53
+ "numbers": [n1, n2, n3, n4], # Four numbers to make 24
54
+ "solutions": ["expr1", "expr2",...], # Valid mathematical expressions
55
+ "solvable": bool, # Whether 24 can be made
56
+ "amt": float, # Adjusted Median Time (seconds)
57
+ "solved_rate": float, # Success rate for the 24s game
58
+ "mean_time": float, # Average solve time
59
+ "std_time": float # Standard deviation of solve times
60
+ }
61
+ ```
62
+
63
+ ## Performance Metrics
64
+
65
+ Our 24 numbers game dataset includes comprehensive performance metrics from millions of puzzle attempts:
66
+
67
+ - AMT (Adjusted Median Time): Time at which survival rate crosses 50%
68
+ - Solved rate: Percentage of players who successfully solved the puzzle
69
+ - 1-sigma mean/std: Statistics for central 68% of solve times
70
+
71
+ ## Game Rules & Constraints
72
+
73
+ The math twenty four puzzle rules are simple:
74
+
75
+ - Use exactly 4 numbers from 1-13 (representing playing cards A-K)
76
+ - Basic arithmetic operations only (+, -, ×, /)
77
+ - Each number must be used exactly once
78
+ - The final result must equal 24
79
+ - All intermediate calculations must be valid
80
+
81
+ ## Example Puzzles
82
+
83
+ Here are some example puzzles with varying difficulty levels:
84
+
85
+ - Easy: `{1, 1, 1, 8}` with solution `"(1 + 1 + 1) × 8"`
86
+ - Medium: `{4, 4, 10, 10}` with solution `"(10 × 10 - 4) / 4"`
87
+ - Hard: `{3, 3, 8, 8}` with solution `"8/(3 - 8/3)"`
88
+ - Unsolvable: `{1, 5, 11, 13}`