Created
July 23, 2013 05:17
-
-
Save jdan/6060024 to your computer and use it in GitHub Desktop.
Continued fractions with ruby
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require './fraction' | |
# Returns an array representing the elements in the continued | |
# fraction expansion of a given fraction | |
def continued_fraction q | |
# Base case | |
# return the numeration if we are a whole number | |
return [q.numer] if q.denom == 1 | |
# Get leading digit | |
# the largest integer that fits inside the fraction | |
head = q.to_i | |
# The recursive step is to return the continued fraction | |
# representation of the inverse of the remaining fraction | |
# after subtracting head | |
tail = continued_fraction (q - head).inv | |
# The result is the head and tail combined | |
return [head] + tail | |
end | |
# Reopening the Array class to display the appropriate | |
# continued fraction syntax by override to_s | |
# [a0; a1, a2, ..., an] | |
class Array | |
def to_s | |
'[' + self.first.to_s + '; ' + self[1..-1].join(', ') + ']' | |
end | |
end | |
puts (continued_fraction Fraction.new(649, 200)).to_s # => [3; 4, 12, 4] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# rational.rb | |
# by Jordan Scales (http://jordanscales.com) | |
# 27 May 2013 | |
class Fraction | |
include Comparable | |
attr_reader :numer, :denom | |
alias :numerator :numer | |
alias :denominator :denom | |
def initialize(numer = 1, denom = 1) | |
# only integer arguments | |
@numer = numer.to_i | |
@denom = denom.to_i | |
# handle denominator of 0 | |
if @denom == 0 | |
raise ZeroDivisionError | |
# handle negatives | |
elsif @denom < 0 | |
# let the numerator show the negative sign | |
@numer *= -1 | |
@denom *= -1 | |
end | |
reduce! | |
end | |
# math functions | |
# adds a given fraction | |
def + other | |
other = Fraction.new(other) if other.instance_of? Fixnum | |
Fraction.new(@numer * other.denom + other.numer * @denom, @denom * other.denom) | |
end | |
# subtracts a given function | |
def - other | |
other = Fraction.new(other) if other.instance_of? Fixnum | |
Fraction.new(@numer * other.denom - other.numer * @denom, @denom * other.denom) | |
end | |
# multiplies a given fraction | |
def * other | |
other = Fraction.new(other) if other.instance_of? Fixnum | |
Fraction.new(@numer * other.numer, @denom * other.denom) | |
end | |
# divides a given fraction | |
def / other | |
other = Fraction.new(other) if other.instance_of? Fixnum | |
self * other.inv | |
end | |
# returns a new fraction, equivalent to its inverse | |
def inv | |
Fraction.new(@denom, @numer) | |
end | |
# inverts a given fraction (persistent) | |
def inv! | |
@numer, @denom = @denom, @numer | |
self | |
end | |
# comparator | |
def <=> other | |
@numer * other.denom <=> other.numer * @denom | |
end | |
# to float | |
def to_f | |
@numer.to_f / @denom | |
end | |
# to integer (integer divison) | |
def to_i | |
@numer / @denom | |
end | |
# display | |
def to_s | |
"#{@numer} / #{@denom}" | |
end | |
private | |
def gcd(a, b) | |
a = a.abs | |
b = b.abs | |
return b if a == 0 | |
return a if b == 0 | |
if a == 1 || b == 1 | |
1 | |
elsif a == b | |
a | |
elsif a > b | |
gcd(a-b, b) | |
else | |
gcd(a, b-a) | |
end | |
end | |
# reduces a fraction (persistent) | |
def reduce! | |
g = gcd(@numer, @denom) | |
@numer /= g | |
@denom /= g | |
self | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment