I have a maxima script that generates terms where after logcontract is run I get an expression with many terms of the type
log((A^n)/(B^n))
where both A and B are non trivial expressions
how can I get maxima to rearrange this into n*log(A/B) so that I can then perform a variable substitution and factor in terms of log(A/B) ?
I explicitly need it in the form log(A/B) and not log(A)-log(B)
A and B may be assumed positive.