Returns the reciprocal of this BigRational.
The reciprocal has the numerator and denominator swapped.
DivisionByZeroException If the numerator is zero.
public function reciprocal() : BigRational { return new BigRational($this->denominator, $this->numerator, true); }