sqrt function

Expr sqrt(
  1. Expr x
)

Get the algebraic square root of x.

This is equivalent to pow(x, 1 / 2).

Implementation

Expr sqrt(Expr x) => pow(x, ratFrom(1, 2));