
Bradford T. answered 09/28/23
Retired Engineer / Upper level math instructor
Usually to find f-1(x), you swap x and y and solve for y. However this can't be easily done for this equation.
So, we could try Newton's method
g(x) = ex-1+5ln(x)+3x-4
g'(x) = ex-1+5/x+3
Let x0 = 1
x1 = x0 - g(x)/g'(x) = x0 -(ex-1+5ln(x)+3x-4)/(ex-1+5/x+3)
= 1 -(1+0+3-4)/(1+5+3) = 1
No need to iterate further, the answer is x=1
So, f-1(4) = 1