https://github.com/adielbm/raycast-simplify
Raycast Extension to simplify fractions, and convert between decimal and fractions.
https://github.com/adielbm/raycast-simplify
raycast-extension
Last synced: 12 months ago
JSON representation
Raycast Extension to simplify fractions, and convert between decimal and fractions.
- Host: GitHub
- URL: https://github.com/adielbm/raycast-simplify
- Owner: adielBm
- Created: 2025-04-04T14:27:32.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-04T14:39:16.000Z (about 1 year ago)
- Last Synced: 2025-05-19T01:13:04.583Z (about 1 year ago)
- Topics: raycast-extension
- Language: TypeScript
- Homepage:
- Size: 2.77 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
Raycast Extension to simplify fractions, and convert between decimal and fractions.

## Examples
```r
# Simplify Fractions
2/4 => Simplified: 1/2; Finite Decimal: 0.5; Scientific: 5.0e-1
4/6 => Simplified: 2/3; Repeating Decimal: 0.(6), period: 1; Scientific: 6.666666666666667e-1
10/4 => Simplified: 5/2; Finite Decimal: 2.5; Mixed: 2+1/2; Scientific: 2.5e0
# Decimal to Fraction
1.9 => 19/10
1.5 => 3/2
0.3 => 3/10
0.(3) => 1/3
0.(6) => 2/3
0.6... => 2/3
0.6666666 => 3333333/5000000
0.9999... => 1
0.(9) => 1
0.9999 => 9999/10000
```