Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chimipupu/math_dev
数学をPythonで遊んでみる🥳
https://github.com/chimipupu/math_dev
Last synced: about 1 month ago
JSON representation
数学をPythonで遊んでみる🥳
- Host: GitHub
- URL: https://github.com/chimipupu/math_dev
- Owner: Chimipupu
- License: mit
- Created: 2024-11-07T13:25:57.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-07T13:55:19.000Z (about 2 months ago)
- Last Synced: 2024-11-07T14:36:12.402Z (about 2 months ago)
- Language: Python
- Size: 35.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 数学をPythonで遊ぶ📚
数学をPythonで遊んでみる🥳## 遊んだ数学
## 幾何学📚
- ✅三平方の定理
- 🔗[pythagorean_theorem.py](/src/pythagorean_theorem/pythagorean_theorem.py)```math
a^2 + b^2 = c^2
```## 代数学📚
- ✅オイラーの公式、等式
- 🔗[euler_formula.py](/src/euler_formula/euler_formula.py)```math
e^{i\theta} = \cos\theta + i\sin\theta
``````math
e^{i\pi} + 1 = 0
```- ✅黄金比
- 🔗[golden_ratio.py](/src/golden_ratio/golden_ratio.py)```math
\phi = \frac{1 + \sqrt{5}}{2} \approx 1.6180339887
```## 実行結果
🔗[euler_formula.py](/src/euler_formula/euler_formula.py)
****
🔗[pythagorean_theorem.py](/src/pythagorean_theorem/pythagorean_theorem.py)