I want to simplify log(8)/log(2)
I know that
log(8)/log(2) = log(2^3)/log(2) = 3*log(2)/log(2) = 3
it is possible in Maxima but not works for me:
Maxima 5.41.0 http://maxima.sourceforge.net
using Lisp GNU Common Lisp (GCL) GCL 2.6.12
Distributed under the GNU Public License. See the file COPYING.
Dedicated to the memory of William Schelter.
The function bug_report() provides bug reporting information.
(%i1) log(8)/log(2);
log(8)
(%o1) ------
log(2)
(%i2) logexpand;
(%o2) true
(%i3) log(2^3)/log(2);
(%o3) log(8)
------
log(2)
(%i4) logexpand;
(%o4) true
I use:
round(float(log(8)/log(2));
but I think that it is not the best solution ( I work with integers)
Questions:
- How to do it ?
- Why it works in Maxima doc, but not in my Maxima ?