The denominator is incorrect in the rational division routines:
https://github.com/cmpute/dashu/blob/da5723435b13552bec2e95053e9beea82a8fe571/rational/src/div.rs#L100C1-L116C2
I believe it should be:
RBig(Repr {
numerator: a / &g,
denominator: b * (i / g),
})
The denominator is incorrect in the rational division routines:
https://github.com/cmpute/dashu/blob/da5723435b13552bec2e95053e9beea82a8fe571/rational/src/div.rs#L100C1-L116C2
I believe it should be: