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

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

...⁢xmd⁢ynd⁢...→...⁢xm⁢yn1d⁢...

  

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

  

For example: 212⁢312→612 

• 

If the condition 0<m<d above is not satisfied, then let m=q⁢d+r where 0<r<d. Then expand xmd=xd⁢q+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: 232→2⋅212.

• 

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

  

For example: −212⋅312→I⋅212⋅312→I⋅612 

• 

The new radical xm⁢yn1d 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 x⁢y≠x⁢y 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 signum⁡x=1 and signum⁡y is unknown -- then combine will still combine the radicands x and y because x is known to be positive.

Examples

> 

f1≔sqrt⁡2⁢sqrt⁡6+sqrt⁡2⁢sqrt⁡x+1

f1≔2⁢6+2⁢x+1

(1)
> 

combine⁡f1&comma;radical

2⁢3+2⁢x+2

(2)
> 

f2≔sqrt⁡4−sqrt⁡3⁢sqrt⁡4+sqrt⁡3

f2≔4−3⁢4+3

(3)
> 

combine⁡f2&comma;radical

13

(4)
> 

f3≔sqrt⁡x⁢sqrt⁡y+sqrt⁡2⁢sqrt⁡x+13⁢sqrt⁡y

f3≔x⁢y+2⁢x+132⁢y

(5)
> 

combine⁡f3&comma;radical

x⁢y+x+1⁢y⁢2⁢x+2

(6)
> 

combine⁡f3&comma;radical&comma;symbolic

x⁢y+x+1⁢2⁢x+1⁢y

(7)
> 

assume⁡x<0

> 

combine⁡f3&comma;radical

I⁢−x~⁢y+x~+1⁢y⁢2⁢x~+2

(8)
> 

f4≔sqrt⁡213−1⁢sqrt⁡223+213+1

f4≔213−1⁢223+213+1

(9)
> 

combine⁡f4&comma;radical

213−1⁢223+213+1

(10)
> 

normal⁡&comma;expanded

1

(11)

See Also

assume

normal/expanded

signum

simplify[radical]

sqrt