Is there a simplification way to turn log of a product into a sum of logs in Maxima CAS? I tried radcan(), but it does not change the expression. See the toy example: TryItOnline
f:log(product(exp(X[i]-mu),i,1,n));
print(f);
print(radcan(f));
both prints return:
n
/===\ X - mu
! ! i
log( ! ! %e )
! !
i = 1
n
/===\ X - mu
! ! i
log( ! ! %e )
! !
i = 1
Just found
logexpandvariable, which is opposite tologcontract:produces: