The key to min/max problems is to identifying the function you are minimizing, x + y3 , and any constraints on the variables: x,y > 0 and xy = 48 (I assume).
The constraint relation allows you to eliminate one of the variables in the function to be minimized:
y = 48/x and f(x) = x + (48/x)3
In order to find a critical point, we find when the 1st derivative (df/dx) is zero:
df/dx = 1 + 483(-3)/x4 = 0 for x = ((3)(483))1/4 which simplifies to ((34)(212))1/4 = 24
The second derivative will be > 0 as the first term drops out and the second term will be >0 --> a minimum ( positive curvature is a smiley face.)
You have to check the endpoints to ascertain whether you have found a global minimum (0 and infinity in this case, where the f(x) blows up positively) . They are not minima.
I'll leave it to you to find out what the value of the function is.