/** * Returns the quotient and remainder of the division of the numerator by the denominator. * * @return BigInteger[] */ public function quotientAndRemainder() { return $this->numerator->quotientAndRemainder($this->denominator); }