# File lib/standard/facets/math/beta.rb, line 5
  def self.beta(x, y)
    exp(lgamma(x) + lgamma(y) - lgamma(x+y))
  end