For scalars, the gtx.sqrt function does not return the same type as the one it is called with: ``` four = gtx.float32(4) type(gtx.sqrt(four)) => float type(four) => numpy.float32 ```