8 9 10 11 12
# File 'lib/math_symbols/core_ext/enumerable.rb', line 8 def ∏ inject 1 do |acc, x| yield(x) * acc end end
2 3 4 5 6
# File 'lib/math_symbols/core_ext/enumerable.rb', line 2 def ∑ inject 0 do |acc, x| yield(x) + acc end end