Metadata-Version: 2.1
Name: brational
Version: 1.1.2
Summary: A SageMath package to beautifully format a class of rational functions.
Home-page: https://joshmaglione.com/BRational/
Author: Joshua Maglione
Author-email: joshmaglione@gmail.com
Project-URL: Bug Tracker, https://github.com/joshmaglione/brational/issues
Keywords: SageMath,rational functions,generating series,formatting
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

# BRational
A SageMath package to beautifully format a class of rational functions.

Version: 1.1.2

[Documentation](https://joshmaglione.com/BRational/)

---

The default expression for 

$$\dfrac{1 + 26T + 66T^2 + 26T^3 + T^4}{(1 - T)^5}$$

in SageMath is 
```python
(-T^4 - 26*T^3 - 66*T^2 - 26*T - 1)/(T^5 - 5*T^4 + 10*T^3 - 10*T^2 + 5*T - 1)
```

Using `brational`, the default is 

```python
(1 + 26*T + 66*T^2 + 26*T^3 + T^4)/(1 - T)^5
```
