The dataset viewer is not available for this dataset.
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
Equational Theories Selected Problems
Update (April 27, 2026)
This dataset was updated on April 27, 2026.
Main changes:
- added the released Stage 1 final evaluation subsets:
evaluation_normal,evaluation_hard,evaluation_extra_hard, andevaluation_order5 - added metadata files for the new evaluation subsets
- updated the README and metadata to reflect the current released subsets
Update (March 24, 2026)
This dataset was updated on March 24, 2026.
Main changes:
- added
eq1_idandeq2_idto all released subsets - added the
hard3subset - updated the README to reflect the current released subsets
This dataset contains selected problem subsets for the Mathematics Distillation Challenge: Equational Theories, including public training subsets and released Stage 1 evaluation subsets.
This dataset is intended for Stage 1 of the Mathematics Distillation Challenge: Equational Theories competition.
Competition page:
The full raw implication dataset contains 4694 laws, which yields 4694 * (4694 - 1) = 22,028,942 ordered implications.
The full raw implications table can be downloaded from the Equational Theories Project implications page by selecting Download raw implications table:
The full list of all 4694 equations is available here:
Because the full raw dataset is very large, the competition organizers selected public subsets to make testing and experimentation more practical for participants.
Subsets
normal: 1000 selected problems, chosen programmatically, with 500 ground-truthTRUElabels and 500 ground-truthFALSElabelshard: 200 selected problems co-curated by human mathematicians and AI, with 74 ground-truthTRUElabels and 126 ground-truthFALSElabelshard1: a deduplicated version of the 200-problemhardsubset, containing 69 unique problems total, with 24 ground-truthTRUElabels and 45 ground-truthFALSElabelshard2: 200 selected problems co-curated by human mathematicians and AI, with 100 ground-truthTRUElabels and 100 ground-truthFALSElabelshard3: 400 selected problems with 195 ground-truthTRUElabels and 205 ground-truthFALSElabelsevaluation_normal: 200 Stage 1 final evaluation problems, with 100 ground-truthTRUElabels and 100 ground-truthFALSElabelsevaluation_hard: 200 Stage 1 final evaluation problems, with 100 ground-truthTRUElabels and 100 ground-truthFALSElabelsevaluation_extra_hard: 200 Stage 1 final evaluation problems, with 100 ground-truthTRUElabels and 100 ground-truthFALSElabelsevaluation_order5: 200 order-5 evaluation problems, with 100 ground-truthTRUElabels and 100 ground-truthFALSElabels
All subsets are exposed as the train split in this repository. The evaluation_* subsets are released Stage 1 evaluation subsets.
Data Schema
Each record has the following fields:
id: stable identifier such asnormal_0001,hard_0001,hard3_0001, orevaluation_normal_0001index: 1-based index within the subsetdifficulty: subset difficulty label such asnormal,hard,extra_hard, ororder5_normaleq1_id: 1-based equation identifier forequation1; for the order-4-and-below subsets, this refers to the full 4694-law equation listeq2_id: 1-based equation identifier forequation2; for the order-4-and-below subsets, this refers to the full 4694-law equation listequation1: Equation 1equation2: Equation 2answer: whether Equation 1 implies Equation 2 over all magmas
Subset Metadata
Subset-level metadata for the official released subsets is stored under metadata/.
Each metadata file contains:
subset_name: subset identifiersource: release source, such asofficialcurators: list of named curators, if provideddifficulty: subset difficulty labelproblem_count: total number of problems in the subsettrue_count: number of ground-truthTRUElabelsfalse_count: number of ground-truthFALSElabelsselection_method: high-level selection method such asprogrammatic,human, orhuman_aiderived_from: parent subset name if the subset is derived from another subsetnotes: optional explanatory notes
Records in hard1, hard2, and hard3 use subset-specific IDs and keep difficulty: hard.
Records in evaluation_order5 use order-5 equation identifiers.
Usage
from datasets import load_dataset
normal = load_dataset(
"SAIRfoundation/equational-theories-selected-problems",
"normal",
split="train",
)
hard = load_dataset(
"SAIRfoundation/equational-theories-selected-problems",
"hard",
split="train",
)
hard1 = load_dataset(
"SAIRfoundation/equational-theories-selected-problems",
"hard1",
split="train",
)
hard2 = load_dataset(
"SAIRfoundation/equational-theories-selected-problems",
"hard2",
split="train",
)
hard3 = load_dataset(
"SAIRfoundation/equational-theories-selected-problems",
"hard3",
split="train",
)
evaluation_normal = load_dataset(
"SAIRfoundation/equational-theories-selected-problems",
"evaluation_normal",
split="train",
)
evaluation_hard = load_dataset(
"SAIRfoundation/equational-theories-selected-problems",
"evaluation_hard",
split="train",
)
evaluation_extra_hard = load_dataset(
"SAIRfoundation/equational-theories-selected-problems",
"evaluation_extra_hard",
split="train",
)
evaluation_order5 = load_dataset(
"SAIRfoundation/equational-theories-selected-problems",
"evaluation_order5",
split="train",
)
Files
data/normal.jsonldata/hard.jsonldata/hard1.jsonldata/hard2.jsonldata/hard3.jsonldata/evaluation_normal.jsonldata/evaluation_hard.jsonldata/evaluation_extra_hard.jsonldata/evaluation_order5.jsonlmetadata/normal.jsonmetadata/hard.jsonmetadata/hard1.jsonmetadata/hard2.jsonmetadata/hard3.jsonmetadata/evaluation_normal.jsonmetadata/evaluation_hard.jsonmetadata/evaluation_extra_hard.jsonmetadata/evaluation_order5.json
- Downloads last month
- 78