https://github.com/abhrankan-chakrabarti/almost-isosceles-pythagorean-triples
This repository contains `AIPT_generator.py`, an algorithm for generating almost isosceles Pythagorean triples. Starting from (3, 4, 5), it uses a specific method to calculate triples. Explore the README for details on installation, usage, and contribution.
https://github.com/abhrankan-chakrabarti/almost-isosceles-pythagorean-triples
algorithm math number-theory pythagorean-triples
Last synced: 4 months ago
JSON representation
This repository contains `AIPT_generator.py`, an algorithm for generating almost isosceles Pythagorean triples. Starting from (3, 4, 5), it uses a specific method to calculate triples. Explore the README for details on installation, usage, and contribution.
- Host: GitHub
- URL: https://github.com/abhrankan-chakrabarti/almost-isosceles-pythagorean-triples
- Owner: Abhrankan-Chakrabarti
- License: mit
- Created: 2024-05-10T16:23:48.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-11T02:16:08.000Z (over 1 year ago)
- Last Synced: 2025-05-21T16:15:13.417Z (5 months ago)
- Topics: algorithm, math, number-theory, pythagorean-triples
- Language: Python
- Homepage: https://abhrankan-chakrabarti.github.io/almost-isosceles-pythagorean-triples/
- Size: 7.81 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Almost Isosceles Pythagorean Triples Optimizer
This repository contains an optimization algorithm for generating almost isosceles Pythagorean triples, starting from the triple (3, 4, 5). The algorithm, implemented in `AIPT_generator.py`, uses a specific method to update the values of x and y, which are then used to calculate the triples.
## Installation
To use the optimizer, simply clone the repository to your local machine and run the `AIPT_generator.py` script.
```bash
git clone https://github.com/Abhrankan-Chakrabarti/almost-isosceles-pythagorean-triples.git
cd almost-isosceles-pythagorean-triples
python AIPT_generator.py
```## Usage
The optimizer allows you to specify the number of triples to generate. Simply run the script and enter the desired number when prompted. The script will then generate and display the almost isosceles Pythagorean triples.
## Contributing
If you have ideas for improving the optimizer or want to report a bug, feel free to open an issue or submit a pull request.
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.