I want to plot the implicit function $y=\log_2(1+x\,y)$ as a function of $x$.
I tried with ContourPlot and NSolve, but I'm getting a lot of errors.
I want to plot the implicit function $y=\log_2(1+x\,y)$ as a function of $x$.
I tried with ContourPlot and NSolve, but I'm getting a lot of errors.
Something like this?
f[x_, y_] := y - Log2[1 + x*y];
ContourPlot[f[x, y] == 0, {x, 0, 5}, {y, 0, 5}, ColorFunction -> Hue]
Just to complete, solve the equation with respect to x, yeilding x=(2^y-1)/yand then use the parametric plot:
ParametricPlot[{(-1 + 2^y)/y, y}, {y, 0.1, 10}, AspectRatio -> 0.7]
Have fun!