Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

simplify_log() does not #21574

Open
rwst opened this issue Sep 23, 2016 · 0 comments
Open

simplify_log() does not #21574

rwst opened this issue Sep 23, 2016 · 0 comments

Comments

@rwst
Copy link

rwst commented Sep 23, 2016

sage: log(8)/log(2)
log(8)/log(2)
sage: _.simplify_log()
log(8)/log(2)
sage: log(8,16)
log(8)/log(16)
sage: _.simplify_full()
log(8)/log(16)
sage: _.simplify_log()
log(8)/log(16)
sage: log(x^3)/log(x)
log(x^3)/log(x)
sage: _.simplify_log()
log(x^3)/log(x)
sage: log(8)/log(2)
log(8)/log(2)
sage: _.simplify_log('all')
log(8^(1/log(2)))

Of course these simple cases should be handled, even if the description of simplify_log defines specific defaults of behaviour. At least simplify_full() should do it by calling some helper.

Component: symbolics

Issue created by migration from https://trac.sagemath.org/ticket/21574

@rwst rwst added this to the sage-7.4 milestone Sep 23, 2016
@mkoeppe mkoeppe removed this from the sage-7.4 milestone Dec 29, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants