I want to convert this equation exp(x - y)/(1 + exp(1)^(x - y))^2 into exp(1)^(x + y)/(exp(1)^x + exp(1)^y)^2 equation. And I want to see the steps to do that in maple. So far, I checked if both statements are equal using and it gave me a TRUE:
eq1 := exp(x - y)/(1 + exp(1)^(x - y))^2 = exp(1)^(x + y)/(exp(1)^x + exp(1)^y)^2;
is(eq1);
Amongst several other ways,
Or were you looking for a more step-by-step approach, say in which a factor of
exp(y)^2were programmatically determined and used to adjust both numerator and denominator?