there are a lot of tools could be used to compute square roots.
for instance, with Python NumPy
np.sqrt(80)
outputs
8.94427190999916
is there a way (or a 3rd party package) to have
sqrt(80)
output
$4\sqrt{5}$
there are a lot of tools could be used to compute square roots.
for instance, with Python NumPy
np.sqrt(80)
outputs
8.94427190999916
is there a way (or a 3rd party package) to have
sqrt(80)
output
$4\sqrt{5}$
sympy could meet your need
outputs $4\sqrt{5}$