psqrt
square root of a polynomial
proot
nth root of a polynomial
Calling Sequence
Parameters
Description
Examples
psqrt(p)
proot(p, n)
p
-
multivariate rational coefficients polynomial
n
integer
If p is a perfect square, psqrt returns a square root of p. Otherwise it returns the name _NOSQRT.
If p is an nth power, proot(p, n) returns a nth root of p. Otherwise proot returns the name _NOROOT.
psqrt⁡9
3
proot⁡9,2
proot⁡27,3
psqrt⁡x2+2⁢x⁢y+y2
x+y
psqrt⁡9⁢x2+12⁢x⁢y+4⁢y2
3⁢x+2⁢y
proot⁡x3+3⁢x2+3⁢x+1,3
x+1
psqrt⁡x2−y2
_NOSQRT
proot⁡81⁢x4+108⁢x3+54⁢x2+12⁢x+1,4
3⁢x+1
psqrt⁡x+y
proot⁡x+y,3
_NOROOT
proot⁡x3+y3,3
See Also
iroot
isqrt
sqrt
Download Help Document