From: "phasis68 (Heesob Park)" Date: 2013-06-25T22:13:08+09:00 Subject: [ruby-core:55649] [ruby-trunk - Bug #6862] BigMath.exp negative exponent Issue #6862 has been updated by phasis68 (Heesob Park). This issue was solved with changeset r41623. BTW, my patch is same to Garth Snyder's and it is 11 months old. ---------------------------------------- Bug #6862: BigMath.exp negative exponent https://bugs.ruby-lang.org/issues/6862#change-40133 Author: karatedog (F��ldes L��szl��) Status: Assigned Priority: Normal Assignee: mrkn (Kenta Murata) Category: Target version: next minor ruby -v: ruby 1.9.3p260 (2012-08-09 revision 36669) [i686-linux] Backport: Ruby 1.9.3 BigMath.exp accepts Fixnum for exponent but silently treats negative exponents as positive: 1.9.3p260 :009 > BigMath.exp(3, 10) => # 1.9.3p260 :010 > BigMath.exp(-3, 10) => # Converting the exponent parameter to BigDecimal solves the problem: 1.9.3p260 :011 > BigMath.exp(BigDecimal(-3), 10) => # -- http://bugs.ruby-lang.org/