# File lib/more/facets/math/linsolve.rb, line 6
  def self.linsolve(a, b, c = 0.0)
    a == 0 ? nil : (c - b) / a
  end