+ 1
How 9**(1/2)=3.0
5 Respostas
+ 4
1/2 in python is 0.5
** is the exponential operator
So 9**(1/2) means 9 to the power 0.5 (half)
Which basically is square root of 9
And square root of 9 is 3
+ 2
Basically the symbol {**} will tell us to the power of
in this case
9**(1/2)
it means 9 to the power of (1/2)
9 is square of 3
so we can write like (3)2
So the complete expression will become
((3)2)(1/2)
(3)
Ans 3.0
0
This a maths operation and basic maths tells us any number raised to (1/2) is same as square root of the number.
0
A square root of 9 my friend