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 may need to be simplified further, e.g., by applying normal(x^m*y^n, expanded).

• 

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

f1sqrt2sqrt6+sqrt2sqrtx+1

f126+2x+1

(1)

combinef1&comma;radical

23+2x+2

(2)

f2sqrt4sqrt3sqrt4+sqrt3

f2434+3

(3)

combinef2&comma;radical

13

(4)

f3sqrtxsqrty+sqrt2sqrtx+13sqrty

f3xy+2x+132y

(5)

combinef3&comma;radical

xy+x+1y2x+2

(6)

combinef3&comma;radical&comma;symbolic

xy+x+12x+1y

(7)

assumex<0

combinef3&comma;radical

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

(8)

f4sqrt2131sqrt223+213+1

f42131223+213+1

(9)

combinef4&comma;radical

2131223+213+1

(10)

normal&comma;expanded

1

(11)

See Also

assume

normal/expanded

signum

simplify[radical]

sqrt