https://github.com/dansoftowner/binomial-distribution
Binomial expansion calculator
https://github.com/dansoftowner/binomial-distribution
binomial maths
Last synced: 11 months ago
JSON representation
Binomial expansion calculator
- Host: GitHub
- URL: https://github.com/dansoftowner/binomial-distribution
- Owner: Dansoftowner
- Created: 2022-06-14T16:58:20.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-06-17T18:23:28.000Z (over 3 years ago)
- Last Synced: 2025-02-06T04:11:59.079Z (about 1 year ago)
- Topics: binomial, maths
- Language: Java
- Homepage:
- Size: 70.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Binomial expansion calculator
Simple application that implements the [Binomial theorem](https://en.wikipedia.org/wiki/Binomial_theorem)
mathematical pattern.
## Run CLI App
```
gradlew :cli:run -q --console=plain
```
### Character encoding problems
Since the app uses special unicode characters for displaying the exponent numbers, your terminal might not display them
correctly if wrong charset is used.
In the Windows Command Prompt, you can set your charset to UTF-8 with this:
```
chcp 65001
```