{"id":23545109,"url":"https://github.com/ramsyana/math-papers-with-code","last_synced_at":"2026-04-29T16:02:58.923Z","repository":{"id":269785182,"uuid":"908456307","full_name":"ramsyana/Math-Papers-with-Code","owner":"ramsyana","description":"A collection of implementations of mathematical algorithms and concepts from various academic papers in multiple programming languages.","archived":false,"fork":false,"pushed_at":"2025-01-06T02:28:13.000Z","size":87,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-06T03:24:23.216Z","etag":null,"topics":["academic-project","c","math","paper","python","zig"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ramsyana.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-12-26T05:52:59.000Z","updated_at":"2025-01-06T02:28:17.000Z","dependencies_parsed_at":"2024-12-26T06:39:29.722Z","dependency_job_id":null,"html_url":"https://github.com/ramsyana/Math-Papers-with-Code","commit_stats":null,"previous_names":["ramsyana/math-papers-with-code"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ramsyana%2FMath-Papers-with-Code","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ramsyana%2FMath-Papers-with-Code/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ramsyana%2FMath-Papers-with-Code/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ramsyana%2FMath-Papers-with-Code/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ramsyana","download_url":"https://codeload.github.com/ramsyana/Math-Papers-with-Code/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239272523,"owners_count":19611346,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["academic-project","c","math","paper","python","zig"],"created_at":"2024-12-26T08:14:54.139Z","updated_at":"2025-10-19T09:02:12.084Z","avatar_url":"https://github.com/ramsyana.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Math Papers with Code\n\nA collection of implementations of mathematical algorithms and concepts from various academic papers in multiple programming languages.\n\n## Implemented Papers\n\n### Current Implementations\n\n| Paper Title | Author(s) | arXiv | Implementations | Status | Directory |\n|------------|-----------|--------|-----------------|---------|-----------|\n| Relative Sizes of Iterated Sumsets | Noah Kravitz | [2412.18598](https://arxiv.org/pdf/2412.18598) | ![Python](https://img.shields.io/badge/Python-3776AB?style=flat\u0026logo=python\u0026logoColor=white) | ✅ Complete | `papers/iterated-sumsets/` |\n| A Remark on an Explicit Formula for the Sums of Powers of Integers | José L. Cereceda | [2503.14508v2](https://arxiv.org/pdf/2503.14508v2) | ![Python](https://img.shields.io/badge/Python-3776AB?style=flat\u0026logo=python\u0026logoColor=white) | ✅ Complete | `papers/stirling-numbers-power-sums/` |\n| The Neveu-Schwarz Group and Schwarz's Extended Super Mumford Form | Katherine A. Maxwell \u0026 Alexander A. Voronov | [2412.18585](https://arxiv.org/pdf/2412.18585) | ![Python](https://img.shields.io/badge/Python-3776AB?style=flat\u0026logo=python\u0026logoColor=white) | ⏸️ On Hold | `papers/super-mumford/` |\n| Derivative Polynomials and Infinite Series for Squigonometric Functions | Bart S. Van Lith | [2503.19624](https://arxiv.org/abs/2503.19624) | ![Python](https://img.shields.io/badge/Python-3776AB?style=flat\u0026logo=python\u0026logoColor=white) | ✅ Complete | `papers/squigonometry/` |\n| Inverse Source Problems for a Multidimensional Time-Fractional Wave Equation | D.K. Durdiev | [2503.17404v1](https://arxiv.org/abs/2503.17404v1) | ![Python](https://img.shields.io/badge/Python-3776AB?style=flat\u0026logo=python\u0026logoColor=white) | ✅ Complete | `papers/frac-wave-inverse-problems/` |\n\n### Implementation Status Legend\n\n| Status | Description |\n|--------|-------------|\n| ✅ Complete | Implementation finished and tested |\n| 🚧 In Progress | Currently being implemented |\n| 📝 Planned | On roadmap for implementation |\n| ⏸️ On Hold | Implementation paused |\n\n### Coming Soon\n\nFuture papers will be added to this collection. Suggestions for new implementations are welcome through issues or pull requests.\n\n## Repository Structure\n\nEach paper implementation is organized in its own directory with its implementation:\n\n```\n.\n├── README.md\n├── papers/\n│   ├── iterated-sumsets/\n│   │   ├── README.md\n│   │   └── python/\n│   │       ├── iterated_sumsets.py\n│   │       └── tests/\n│   ├── super-mumford/\n│   │   ├── README.md\n│   │   └── python/\n│   │       ├── core/\n│   │       │   ├── __init__.py\n│   │       │   ├── laurent_series.py\n│   │       │   ├── matrix_ops.py\n│   │       │   └── vector_spaces.py\n│   │       ├── geometry/\n│   │       │   ├── __init__.py\n│   │       │   ├── grassmannian.py\n│   │       │   └── line_bundles.py\n│   │       ├── groups/\n│   │       │   ├── __init__.py\n│   │       │   ├── heisenberg.py\n│   │       │   ├── neveu_schwarz.py\n│   │       │   └── witt.py\n│   │       ├── tests/\n│   │       │   ├── __init__.py\n│   │       │   ├── test_laurent_series.py\n│   │       │   ├── test_matrix_ops.py\n│   │       │   └── test_vector_spaces.py\n│   │       ├── utils/\n│   │       │   ├── __init__.py\n│   │       │   └── validation.py\n│   │       ├── README.md\n│   │       └── pyproject.toml\n│   └── future-papers/\n│       ├── README.md\n│       └── python/\n└── common/\n    ├── testing/\n    └── benchmarks/\n```\n\n## Using the Implementations\n\nEach paper implementation includes its own README with specific instructions. For Python implementations:\n\n```bash\n# Example for Super Mumford project\ncd papers/super-mumford/python\npip install -r requirements.txt\npython -m pytest tests/\n```\n\n## Contributing\n\nContributions are welcome! To contribute:\n\n1. Select a mathematics paper to implement\n2. Create a new directory under `papers/`\n3. Implement the paper's concepts\n4. Include:\n   - README.md with paper details\n   - Source code\n   - Tests (if applicable)\n   - Docker support (if applicable)\n   - Documentation (if applicable)\n   - Performance benchmarks (optional)\n\nPlease see CONTRIBUTING.md for detailed guidelines.\n\n## Paper Implementation Guidelines\n\nEach paper implementation should:\n\n1. **Documentation**\n   - Include link to original paper\n   - Explain key concepts\n   - Provide usage examples\n   - Document any assumptions or limitations\n\n2. **Code Structure**\n   - Clear organization\n   - Well-commented code\n   - Tests\n   - Docker support (where applicable)\n\n3. **Performance**\n   - Efficient implementations\n   - Benchmarking (optional)\n   - Optimization notes\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Acknowledgments\n\n- All original paper authors\n- Contributors to the implementations\n- Open source community\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Framsyana%2Fmath-papers-with-code","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Framsyana%2Fmath-papers-with-code","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Framsyana%2Fmath-papers-with-code/lists"}