Divide two rational numbers
#!/usr/bin/env ruby require 'rational' require 'mathn' rat = Rational(25/100) # => 1/4 -- lowest terms rat / 2 # => 1/8 -- divide