Hi, I'm very new to Mathematica and I can't figure out how power simplifications are performed.
If I try with
N[Power[Quantity[4, ("Centimeters")^3]*3/4/Pi, 1/3], 3]
I get 0.985 cm which is what I expect.
But, if I try with something like
Clear[r1, r2, v1, v2];
r1 = Quantity[2 , "Centimeters"]
v1 = r1^3*3/4*Pi
v2 = v1*5
r2 = N[CubeRoot[v2*3/4/Pi], 2]
I get
Surd[Quantity[45/2, "Centimeters"^3], 3]
where I would expect CubeRoot["Centimeters"^3] to be simplified to "Centimeters".
What am I doing wrong?
Thank you for your help,
Luca-