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.
a⁢j⁢lnx+…+a⁢i⁢lny→a⁢lnxj⁢yi+…
If the option 'exp' is specified, the transformations are the following.
expxi⁢…⁢expyj→expi⁢x+j⁢y⁢…
expxb→expx⁢b
If the option 'power' is specified, the transformations are the following.
xbi⁢…⁢xcj→xi⁢b+j⁢c⁢…
xyz→xy⁢z
ab→expblna
The last transformation is only done if ⅇb⁢ln⁡a 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.
with⁡SolveTools:
Combine⁡3⁢x⁢ln⁡y+4⁢x⁢ln⁡z+exp⁡t5⁢exp⁡s6
ⅇ5⁢t+6⁢s+x⁢ln⁡y3⁢z4
Combine⁡3⁢x⁢ln⁡y+4⁢x⁢ln⁡z+exp⁡t5⁢exp⁡s6,ln
ⅇt5⁢ⅇs6+x⁢ln⁡y3⁢z4
Combine⁡3⁢x⁢ln⁡y+4⁢x⁢ln⁡z+exp⁡t5⁢exp⁡s6,exp
3⁢x⁢ln⁡y+4⁢x⁢ln⁡z+ⅇ5⁢t+6⁢s
Combine⁡xy5+xz6+5⁢t⁢ln⁡z+6⁢t⁢ln⁡x,power
x5⁢y+x6⁢z+5⁢t⁢ln⁡z+6⁢t⁢ln⁡x
Combine⁡xy5+xz6+5⁢t⁢ln⁡z+6⁢t⁢ln⁡x,power,ln
x5⁢y+x6⁢z+t⁢ln⁡x6⁢z5
Combine⁡ab+2⁢exp⁡b⁢ln⁡a
3⁢ⅇb⁢ln⁡a
See Also
exp
SolveTools[CancelInverses]
Download Help Document