+ 1
print( 9 ** (1/3) )
i don't understand. someone explained me details
11 Réponses
+ 6
Jakaria Ahmed well!!
Print(9**(1/3))
Just do the simple calculation, which you used to do in 7-8th standard in school...
Do things step by step -
Print(9**(1/3))
--print(9**(0.33)) which is similar to print(9^0.33) which is similar to print(9^1/3) and the value of print(9^1/3) will be 2.08..
*there is no such statements like print(9**(0.33)), print(9^0.33) or print(9^1/3) make sense in the programming, but just to give you a clear idea of how things work in mathematics I used it here..
Hope this attempt of mine will help you 👍👍
+ 2
** means exponential of any no
Like as 9**2 =81
2**3=8
+ 2
First solve 1/3 that's comes out 0.3333..
It output will be 2.08....
+ 2
Jakaria Ahmed No 9**2 means 9*9
9**3=9*9*9
9**4=9*9*9*9
You should learn this 👇👇
https://www.sololearn.com/learning/2273/
+ 2
9 ** (1/3)
(**) <=> Exponential.
So,
9 ** (1/3) means (9) raised to power (1/3) which is also the same thing as the cube root of (9)...
Therefore,
Print (9**(1/3)) will output [0.333...].
Hope this is helpful.
+ 1
9*0.3333*.0333 like this
+ 1
how is calculation cube root you know
+ 1
there is a math formula
nth root of 'm' is 'm' to the power (n^-1) .
n√m == m^(n^-1) == m^(1/n)
So 9**1/3 is 3rd root of 9 which is 2.08...
+ 1
1/2= square root
1/3= cube root
1/4=????
and how i get the square root, cube root
+ 1
bhai uska mtlb h cube root of 9....mtlb kis numner ko 3 baar multiply kro toh 9 aye?? 2.08 aaspaas aega answer
0
(1/3) can you explain this one