{"id":19984123,"url":"https://github.com/arya2004/turing-machine-calculator-simulator","last_synced_at":"2025-10-05T19:58:23.203Z","repository":{"id":170124452,"uuid":"646238462","full_name":"arya2004/turing-machine-calculator-simulator","owner":"arya2004","description":"Simulation of Basic Calculator through the Turing Machine","archived":false,"fork":false,"pushed_at":"2025-10-03T05:50:32.000Z","size":389,"stargazers_count":3,"open_issues_count":6,"forks_count":4,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-03T07:22:31.386Z","etag":null,"topics":["c","hacktober","hacktoberfest","hacktoberfest-accepted","hacktoberfest-starter","hacktoberfest2025","turing-machine","turing-machine-simulator"],"latest_commit_sha":null,"homepage":"","language":"C","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/arya2004.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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,"zenodo":null}},"created_at":"2023-05-27T18:23:56.000Z","updated_at":"2025-10-03T05:50:59.000Z","dependencies_parsed_at":"2024-06-09T15:26:11.587Z","dependency_job_id":"2ad60a61-63a9-4b1b-b67c-291c6fe80657","html_url":"https://github.com/arya2004/turing-machine-calculator-simulator","commit_stats":null,"previous_names":["arya2004/calculator","arya2004/turing-machine-calculator-simulator"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/arya2004/turing-machine-calculator-simulator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arya2004%2Fturing-machine-calculator-simulator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arya2004%2Fturing-machine-calculator-simulator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arya2004%2Fturing-machine-calculator-simulator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arya2004%2Fturing-machine-calculator-simulator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/arya2004","download_url":"https://codeload.github.com/arya2004/turing-machine-calculator-simulator/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arya2004%2Fturing-machine-calculator-simulator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278510917,"owners_count":25998997,"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","status":"online","status_checked_at":"2025-10-05T02:00:06.059Z","response_time":54,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["c","hacktober","hacktoberfest","hacktoberfest-accepted","hacktoberfest-starter","hacktoberfest2025","turing-machine","turing-machine-simulator"],"created_at":"2024-11-13T04:17:36.774Z","updated_at":"2025-10-05T19:58:23.178Z","avatar_url":"https://github.com/arya2004.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Turing Machine Calculator Simulation\n\nThis repository contains a collection of header files for simulating a basic calculator using a Turing machine. The calculator supports addition, subtraction, multiplication, division, and factorial operations. The simulation is based on the principles and theory described in the paper [Construction of Basic Calculator through Turing Machine](https://www.ijetajournal.org/volume-2/issue-6/IJETA-V2I6P1.pdf).\n\n## Table of Contents\n\n- [Introduction](#introduction)\n- [Usage](#usage)\n- [Getting Started](#getting-started)\n- [Supported Operations](#supported-operations)\n- [Contributing](#contributing)\n- [License](#license)\n- [Acknowledgements](#acknowledgements)\n\n## Introduction\n\nThe Turing machine is a theoretical computing device that manipulates symbols on an infinite tape based on a set of rules. This repository implements a Turing machine simulation of a basic calculator capable of performing addition, subtraction, multiplication, division, and factorial calculations.\n\nThe simulation aims to provide an understanding of how a Turing machine can be designed and programmed to perform arithmetic operations. It follows the principles outlined in the referenced paper, allowing developers to explore and experiment with the underlying concepts.\n\n## Usage\n\nTo use the Turing machine calculator simulation, follow these steps:\n\n1. Clone the repository to your local machine.\n   ```shell\n   git clone https://github.com/arya2004/turing-machine-calculator-simulator.git\n   ```\n2. Copy the required header files from the repository to your project directory.\n3. Include the desired header file(s) in your C program.\n4. Follow the instructions provided in the referenced paper to implement and execute the desired arithmetic operation.\n\n## Getting Started\n\nTo understand the concepts and theory behind the Turing machine calculator simulation, it is recommended to read the paper [Simulation of Basic Calculator through Turing Machine](https://www.ijetajournal.org/volume-2/issue-6/IJETA-V2I6P1.pdf). The paper provides detailed information on the design and implementation of the Turing machine, as well as the rules and configurations required for each supported operation.\n\n## Supported Operations\n\nThe Turing machine calculator simulation supports the following arithmetic operations:\n\n- Addition (+)\n- Subtraction (-)\n- Multiplication (*)\n- Division (/)\n- Factorial (!)\n\nEach operation has its own header file, which contains the necessary definitions, rules, and configurations for simulating the operation using a Turing machine.\n\n## Contributing\n\nContributions to this repository are welcome. If you have any improvements or additional operations to contribute, please follow these steps:\n\n1. Fork the repository.\n2. Create a new branch for your feature or improvement.\n3. Implement your changes and test them thoroughly.\n4. Commit and push your changes to your forked repository.\n5. Submit a pull request detailing your changes and their benefits.\n\n## License\n\nThis repository is licensed under the [MIT License](LICENSE). Feel free to use the code provided here in your own projects.\n\n## Acknowledgements\n\nWe would like to acknowledge the authors of the referenced paper, [Construction of Basic Calculator through Turing Machine: A Review](https://www.ijetajournal.org/volume-2/issue-6/IJETA-V2I6P1.pdf), and the Youtube video [Factorial Turing machine:  Computing 4!](https://www.youtube.com/watch?v=j7cCKXe1NcY), for their valuable research and insights into implementing a calculator using a Turing machine.\n\nIf you have any questions or suggestions for improvement, please don't hesitate to open an issue or reach out to the project maintainers.\n\nHappy calculating!\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farya2004%2Fturing-machine-calculator-simulator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farya2004%2Fturing-machine-calculator-simulator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farya2004%2Fturing-machine-calculator-simulator/lists"}