Changes between Initial Version and Version 1 of Ticket #23738
- Timestamp:
- 08/28/17 19:46:05 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #23738 – Description
initial v1 1 In this example: 1 An issue found by Victor Spitzer: Sage fails to simplify 2 2 {{{ 3 3 sage: f = log(sqrt(2) - 1) + log(sqrt(2) + 1) 4 4 sage: f.simplify_full() 5 5 log(sqrt(2) + 1) + log(sqrt(2) - 1) 6 }}} 7 without help. Doing 8 {{{ 6 9 sage: f.simplify_real().simplify_log() 7 10 0 8 11 }}} 9 it would be nice if `simplify_{log,full})` detected by themselves that `simplify_real()` is applicable.12 works, but it would be nice if `simplify_{log,full})` detected by themselves that `simplify_real()` is applicable in this case.