symbolic square root
b = Sqrt( a )
symbolic
Returns the square root b = sqrt(a) of a.
// some values ... x = Sym("169") y = Sym("-9") z = Sym("x*x+5") // ... and their square roots Sqrt(x) Sqrt(y) Sqrt(z)
SymEngine: C++ library for fast symbolic manipulation.