Fraction divide(Fraction otherParsed) { return Fraction((numerator * otherParsed.denominator), denominator: (denominator * otherParsed.numerator)); }