Changes between Initial Version and Version 2 of Ticket #21067
- Timestamp:
- 07/21/16 08:27:23 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #21067
-
Property
Status
changed from
new
toneeds_review
-
Property
Authors
changed from
to
Ralf Stephan
-
Property
Summary
changed from
Symbolic factor() should do integer factorisation of integers/rationals
toSymbolic factor_li8st() should do integer factorisation of integers/rationals
-
Property
Branch
changed from
to
u/rws/symbolic_factor___should_do_integer_factorisation_of_integers_rationals
-
Property
Commit
changed from
to
ac3d7cb0574701f2f5d94fa1e3b34239237674cd
-
Property
Status
changed from
-
Ticket #21067 – Description
initial v2 1 Let symbolic `factor ()` do integer factorisation if given an integer or fraction.1 Let symbolic `factor_list()` do integer factorisation if given an integer or fraction. 2 2 {{{ 3 sage: SR(50).factor ()4 50 5 sage: SR( 100/49).factor()6 100/49 3 sage: SR(50).factor_list() 4 [(50, 1)] 5 sage: SR(49/100).factor_list() 6 [(49/100, 1)] 7 7 }}} 8 8