--- license: cc-by-4.0 language: - en pretty_name: Unsolved Math Clean tags: - mathematics - open-problems - research - benchmark - reasoning - latex - clean task_categories: - question-answering - text-generation size_categories: - 1K RACER IS OP
**8,626 curated open research problems** in mathematics and CS โ€” including 122 Millennium Prize Problems โ€” deduplicated, schema-flattened, and packaged as proper parquet configs with an eval-only benchmark view. > **A reasoning frontier dataset:** every problem here is *actually unsolved or partially solved* โ€” ideal for honest capability probing instead of contaminated benchmarks. Clean derivative of [ulamai/UnsolvedMath](https://huggingface.co/datasets/ulamai/UnsolvedMath) (8,785 problems). License unchanged: **CC-BY-4.0**. ## ๐Ÿงน Quality Pipeline | Step | Removed | Reason | |------|--------:|--------| | Raw input | 8,785 | Nested JSON | | **Duplicate titles** | 153 | Same problem listed twice | | **Empty statements** | 6 | No problem body | | **Final clean** | **8,626** | Flattened schema, deterministic splits | ## ๐Ÿ“Š Composition By status: | Status | Problems | |--------|---------:| | Open | 4,354 | | Partially solved | 3,580 | | Solved | 692 | By difficulty: | Level | Problems | |-------|---------:| | L1: Tractable | 908 | | L2: Intermediate | 516 | | L3: Advanced | 6,143 | | L4: Expert | 937 | | L5: Millennium Prize | 122 | ## ๐Ÿ“ฆ Configs | Config | Rows | Description | |--------|-----:|-------------| | `problems` *(default)* | 8,626 | Full metadata: statement, background, status, difficulty, category, provenance | | `open_problems_eval` | 4,354 | Open problems only โ€” benchmark/eval view | | `research_prompts` | 8,626 | Instruction-formatted: "analyze this open problem, discuss partial results and obstacles" | ## ๐ŸŽฏ Usage ```python from datasets import load_dataset ds = load_dataset("saidutta69/unsolved-math-clean", "problems", split="train") # Honest eval: only truly open problems ev = load_dataset("saidutta69/unsolved-math-clean", "open_problems_eval") # Research-style SFT prompts rp = load_dataset("saidutta69/unsolved-math-clean", "research_prompts") print(rp["train"][0]["instruction"][:300]) ``` ## โš ๏ธ Notes - These are **unsolved problems** โ€” there are no reference answers. Use for capability probing, calibration of hedging behavior, and research discussion; not for accuracy scoring. - LaTeX notation preserved verbatim. - Millennium-level problems are intentionally near-impossible; expect models to fail honestly. ## ๐Ÿ“œ Citation ```bibtex @misc{unsolved-math-clean, author = {Sai Dutta Abhishek Dash (clean); original by ulamai}, title = {Unsolved Math โ€” Clean}, year = {2026}, publisher = {Hugging Face}, howpublished = {\url{https://huggingface.co/datasets/saidutta69/unsolved-math-clean}} } ```