radical - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


combine/radical

combine radicals in products

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

combine(expr, radical)

combine(expr, radical, symbolic)

Parameters

expr

-

any expression

Description

• 

The combine/radical function is used to combine products of radicals of the same power that appear in an expression.

• 

The main transformation made by combine/radical is

...xmdynd......xmyn1d...

  

where x and y are both positive, (i.e. signumx=signumy =1) and 0<m,n<d where m,n,d are integers.

  

For example: 212312612 

• 

If the condition 0<m<d above is not satisfied, then let m=qd+r where 0<r<d. Then expand xmd=xqd+rd =xq+rd as xq xrd so that the condition is now satisfied.  If x is an integer, Maple applies this transformation automatically.  

  

For example: 2322212.

• 

Suppose the sign of x is known to be negative, i.e. signumx=−1. Then expand xmd as −1md xmd so that the positive part xmd can now be combined.  

  

For example: 212312I212312I612 

• 

The new radical xmyn1d needs to be simplified. The new radicand xmyn is simplified by applying normal(x^m*y^n, expanded). For example:10+210210+2102normal/expanded98 which after simplification yields 72

• 

If the sign of x and y is not known, then combine will not combine the radicals because that is not correct for all x and y in general. For example xyxy for negative x and y.  The user has two possibilities to force Maple to combine radicals of unknown sign. The first is to use assume to tell Maple the sign of the radicands. The second is to specify the optional argument symbolic which will assume all radicands of unknown sign are real and positive.

• 

If the sign of one radicand is unknown -- for example, suppose that signumx=1 and signumy is unknown -- then combine will still combine the radicands x and y because x is known to be positive.

Examples

f126&plus;2x&plus;1

f126+2x+1

(1)

combinef1&comma;radical

23+2x+2

(2)

f2434&plus;3

f2434+3

(3)

combinef2&comma;radical

434+3

(4)

normal&comma;expanded

13

(5)

f3xy&plus;2x&plus;13y

f3xy+2x+132y

(6)

combinef3&comma;radical

xy+x+1y2x+2

(7)

combinef3&comma;radical&comma;symbolic

xy+x+12x+1y

(8)

assumex<0

combinef3&comma;radical

Ix~y+x~+1y2x~+2

(9)

See Also

assume

normal/expanded

signum

simplify[radical]

sqrt