print( 9 ** (1/3) ) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

print( 9 ** (1/3) )

i don't understand. someone explained me details

7th May 2021, 4:26 AM
Jakaria Ahmed
Jakaria Ahmed - avatar
11 Answers
+ 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 👍👍
9th May 2021, 4:03 AM
คгשเภ๔ кย๓คг
คгשเภ๔ кย๓คг - avatar
+ 2
** means exponential of any no Like as 9**2 =81 2**3=8
7th May 2021, 4:37 AM
Sâñtôsh
Sâñtôsh - avatar
+ 2
First solve 1/3 that's comes out 0.3333.. It output will be 2.08....
7th May 2021, 4:41 AM
Sâñtôsh
Sâñtôsh - avatar
+ 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/
7th May 2021, 4:44 AM
Sâñtôsh
Sâñtôsh - avatar
+ 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.
8th May 2021, 3:03 PM
ENIOLA OPEYEMI
ENIOLA OPEYEMI - avatar
+ 1
9*0.3333*.0333 like this
7th May 2021, 4:42 AM
Jakaria Ahmed
Jakaria Ahmed - avatar
+ 1
how is calculation cube root you know
7th May 2021, 4:43 AM
Jakaria Ahmed
Jakaria Ahmed - avatar
+ 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...
7th May 2021, 5:06 AM
TOLUENE
TOLUENE - avatar
+ 1
1/2= square root 1/3= cube root 1/4=???? and how i get the square root, cube root
7th May 2021, 5:11 AM
Jakaria Ahmed
Jakaria Ahmed - avatar
+ 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
8th May 2021, 6:08 PM
Saumitra
Saumitra - avatar
0
(1/3) can you explain this one
7th May 2021, 4:38 AM
Jakaria Ahmed
Jakaria Ahmed - avatar