Combine - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Mozilla Firefox.

Online Help

All Products    Maple    MapleSim


SolveTools

  

Combine

  

perform various combining of the expressions

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

Combine(expr, options)

Parameters

expr

-

expression

options

-

(optional) one or more of 'ln', 'exp', or 'power'

Description

• 

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.

Examples

> 

with⁡SolveTools:

> 

Combine⁡3⁢x⁢ln⁡y+4⁢x⁢ln⁡z+exp⁡t5⁢exp⁡s6

ⅇ5⁢t+6⁢s+x⁢ln⁡y3⁢z4

(1)
> 

Combine⁡3⁢x⁢ln⁡y+4⁢x⁢ln⁡z+exp⁡t5⁢exp⁡s6,ln

ⅇt5⁢ⅇs6+x⁢ln⁡y3⁢z4

(2)
> 

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

(3)
> 

Combine⁡xy5+xz6+5⁢t⁢ln⁡z+6⁢t⁢ln⁡x,power

x5⁢y+x6⁢z+5⁢t⁢ln⁡z+6⁢t⁢ln⁡x

(4)
> 

Combine⁡xy5+xz6+5⁢t⁢ln⁡z+6⁢t⁢ln⁡x,power,ln

x5⁢y+x6⁢z+t⁢ln⁡x6⁢z5

(5)
> 

Combine⁡ab+2⁢exp⁡b⁢ln⁡a

3⁢ⅇb⁢ln⁡a

(6)

See Also

exp

SolveTools

SolveTools[CancelInverses]