From: Andrew Duncan Date: 2010-06-08T04:01:24+09:00 Subject: Complex numbers contradiction? This looks correct: >> Complex(1,1)**-1 => Complex(Rational(1, 2), Rational(-1, 2)) But this does not; should be same answer: >> 1/Complex(1,1) => Complex(0, -1) A similar try gives same (wrong) answer: >> Complex(1,0) / Complex(1,1) => Complex(0, -1) What am I missing? Thanks! Andrew -- Posted via http://www.ruby-forum.com/.