Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/chimipupu/math_dev

数学をPythonで遊んでみる🥳
https://github.com/chimipupu/math_dev

Last synced: about 1 month ago
JSON representation

数学をPythonで遊んでみる🥳

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)


三平方の定理