
Nitin P. answered 06/02/20
Machine Learning Engineer - UC Berkeley CS+Math Grad
To find the inverse function of y = cbrt(2x + 1), we swap x and y, then solve for x. We have:
x = cbrt(2y + 1)
x3 = 2y + 1
2y = x3 - 1
y = 0.5(x3 - 1)
Therefore, we have f-1(x) = 0.5(x3 - 1). To prove that the inverse function is correct, we must show that f(f-1(x)) = x. We have:
f(f-1(x)) = cbrt(2(0.5(x3 - 1) + 1)) = cbrt(x3 - 1 + 1) = cbrt(x3) = x.
Therefore, our inverse function is correct.