Opened 4 years ago
Last modified 4 years ago
#22607 new enhancement
Add reduce_trig() to applied "full simplify" methods
Reported by: | rws | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | sage-7.6 |
Component: | calculus | Keywords: | |
Cc: | Merged in: | ||
Authors: | Reviewers: | ||
Report Upstream: | N/A | Work issues: | |
Branch: | Commit: | ||
Dependencies: | Stopgaps: |
Description
sage: sqrt(-2*sin(1/2*arctan(x))^2 + 1).simplify_full() sqrt(-2*sin(1/2*arctan(x))^2 + 1) sage: _.reduce_trig() (x^2 + 1)^(-1/4)
Note: See
TracTickets for help on using
tickets.
Does this cause any of the problems with branches encountered with
canonicalize_radical
after the long discussion with that? Any problems with domains?