combine/radical
combine radicals in products
Calling Sequence
Parameters
Description
Examples
combine(expr, radical)
combine(expr, radical, symbolic)
expr
-
any expression
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: 212312→612
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: 232→2⋅212.
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: −212⋅312→I⋅212⋅312→I⋅612
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 xy≠xy 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.
f1≔sqrt2sqrt6+sqrt2sqrtx+1
f1≔26+2x+1
combinef1,radical
23+2x+2
f2≔sqrt4−sqrt3sqrt4+sqrt3
f2≔4−34+3
combinef2,radical
13
f3≔sqrtxsqrty+sqrt2sqrtx+13sqrty
f3≔xy+2x+132y
combinef3,radical
xy+x+1y2x+2
combinef3,radical,symbolic
xy+x+12x+1y
assumex<0
I−x~y+x~+1y2x~+2
f4≔sqrt213−1sqrt223+213+1
f4≔213−1223+213+1
combinef4,radical
213−1223+213+1
normal,expanded
1
See Also
assume
normal/expanded
signum
simplify[radical]
sqrt
Download Help Document