SolveTools
Combine
perform various combining of the expressions
Calling Sequence
Parameters
Description
Examples
Combine(expr, options)
expr
-
expression
options
(optional) one or more of 'ln', 'exp', or 'power'
The Combine command combines expressions.
The Combine command performs the following transformations after calling SolveTools[CancelInverses] on the expr first.
If the option 'ln' is specified, the transformation is the following.
ajlnx+…+ailny→alnxjyi+…
If the option 'exp' is specified, the transformations are the following.
expxi…expyj→expix+jy…
expxb→expxb
If the option 'power' is specified, the transformations are the following.
xbi…xcj→xib+jc…
xyz→xyz
ab→expblna
The last transformation is only done if ⅇblna is already present.
In all of the previous transformations, i and j denote integers.
If no options are specified, all combinations are performed.
Note: Not all simplifications are valid everywhere. You should be aware of this when calling Combine.
withSolveTools:
Combine3xlny+4xlnz+expt5exps6
ⅇ5t+6s+xlny3z4
Combine3xlny+4xlnz+expt5exps6,ln
ⅇt5ⅇs6+xlny3z4
Combine3xlny+4xlnz+expt5exps6,exp
3xlny+4xlnz+ⅇ5t+6s
Combinexy5+xz6+5tlnz+6tlnx,power
x5y+x6z+5tlnz+6tlnx
Combinexy5+xz6+5tlnz+6tlnx,power,ln
x5y+x6z+tlnx6z5
Combineab+2expblna
3ⅇblna
See Also
exp
SolveTools[CancelInverses]
Download Help Document