Changes between Version 2 and Version 4 of Ticket #18787
- Timestamp:
- 06/25/15 12:23:13 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #18787
-
Property
Summary
changed from
Bug with matrice products over Symbolic Ring with modular integers
toBug with products of symbolic variables with modular integers
-
Property
Summary
changed from
-
Ticket #18787 – Description
v2 v4 2 2 3 3 {{{ 4 sage: _ = var('A,B ,C,D')5 sage: ( B + 3*D)*Zmod(9)(6)6 0* D4 sage: _ = var('A,B') 5 sage: (A + 3*B)*Zmod(9)(6) 6 0*B 7 7 }}} 8 9 while the result should be `6*A`.