https://github.com/kozhaakhmet/math-models
Casually solving math problems with some programming languages.
https://github.com/kozhaakhmet/math-models
math mathematical-programming
Last synced: about 2 months ago
JSON representation
Casually solving math problems with some programming languages.
- Host: GitHub
- URL: https://github.com/kozhaakhmet/math-models
- Owner: KozhaAkhmet
- License: mit
- Created: 2023-03-15T19:28:06.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-04-01T08:27:36.000Z (about 3 years ago)
- Last Synced: 2025-12-27T01:59:17.248Z (5 months ago)
- Topics: math, mathematical-programming
- Language: Python
- Homepage:
- Size: 166 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This repository includes math examples with solutions in some programming languages.
## Rules are:
- Only use standard libraries.
- You can implement own function/library and use it as part of the solution.
## Current Directory Tree:
```
.
├── Cramer
├── Determinant
│ ├── cpp
│ │ ├── DeterminantSarrus.cpp
│ │ ├── DeterminantSarrus.h
│ │ └── main.py
│ └── py
│ ├── DeterminantSarrus.py
│ └── main.py
└── Euler
├── cpp
│ ├── Euler.cpp
│ ├── Euler.h
│ ├── main.cpp
│ └── output
└── py
├── Euler.py
└── main.py
```