Calculating a square root using exponentiation (**)
Discuss Calculating a square root using exponentiation (**) in the Python Programming forum on Dev Shed. Calculating a square root using exponentiation (**) Python Programming forum discussing coding techniques, tips and tricks, and Zope related information. Python was designed from the ground up to be a completely object-oriented programming language.
Posts: 54
Time spent in forums: 11 h 3 m 21 sec
Reputation Power: 8
Calculating a square root using exponentiation (**)
This is really a math question rather than a Python question, and I feel very dense for not being able to figure it out. I'm reading a book on Python and it introduces the math library as a source of useful functions, like sqrt. Then it says, as an aside, "We could have taken the square root using exponentiation **. (Can you see how?)"
Unfortunately, I can't see how. Can anyone help me?