Changes between Version 2 and Version 8 of Ticket #12588
- Timestamp:
- Oct 11, 2014, 7:27:39 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #12588
- Property Cc Karl-Dieter Crisman added
-
Property
Summary
changed from
abs(pi*i) bug (wrong result)
toabs(pi*I) should return pu
-
Property
Milestone
changed from
sage-5.11
tosage-6.4
-
Ticket #12588 – Description
v2 v8 2 2 {{{ 3 3 sage: abs(pi*I) 4 I*pi 4 abs(I*pi) 5 5 }}} 6 which is wrong. The result should be {{{pi}}}. 7 8 This was reported by Clemens Heuberger in [http://groups.google.com/group/sage-support/browse_thread/thread/28bbd04a78dadb57/01168722573ff736 sage-support]. 6 The result should be simply {{{pi}}}.