Creates the square root of arg.
For example, to create the square root of x:
sqrt = new Root.sqrt(new Variable('x'));
Note: For better simplification and display, use the Sqrt class.
Source
Root.sqrt(arg): super._unary('sqrt', arg), n = 2;
Creates the square root of arg.
For example, to create the square root of x:
sqrt = new Root.sqrt(new Variable('x'));
Note: For better simplification and display, use the Sqrt class.
Root.sqrt(arg): super._unary('sqrt', arg), n = 2;