+ 2
9**(1/2) How to take answer this numerical operation
8 Respostas
+ 3
Raising a value to the one-halfth power is the same a taking its square root, so
9**(1/2) == math.sqrt(9) == 3.0
+ 2
корен квадратен от 9 на степен първа =3.0
+ 1
No equal = 3
+ 1
Basically saying, 9 raise to the power 1/2 which is same as sqrt(9)
+ 1
9 to the power half(.5)
+ 1
is same as sqrt(9)=3
0
actualy when you write 9**1/2 then firstly python mul. 9 by 1 and then devide it so its ans will become 4.5,if u want to compute square root of 9 than you have to use this code 9**.5
0
9**(1/2) ?