I'm running the following code in sage but the answer is not simplified all the way:
eq=e^(-a*log(x1)/(a+b)+a*log(x1)/(a+b)+a*log(x2)/(a+b)-a*log(x4)/(a+b))
eq
Out: [e^(a*log(x2)/(a + b) - a*log(x3)/(a + b))]
show(eq)
e(alog(x2)a+b−alog(x3)a+b)
what I wanted to get is along the lines of (x2x3)1a+b
I've tried using simplify_full()
with no success. any help is appreciated.