In the implicit Euler method, we estimate the value of the function at a point using the slope at that point (x-value), which first seems absurd. As how can we know the slope at a point if we don't know the point itself?
But I came to realize that we solve the implicit equation of $y_{n+1}$ $$y_{n+1}=y_n + h*f(x_{n+1},y_{n+1})$$ let $f(x,y)= x+y$
then, finally solving the above equation for $y_{n+1}$ becomes $$y_{n+1}=\frac{y_n+x_{n+1}}{(1-h)}$$
But how will this work when the variables are not separable in the implicit equation? For example, I can think of maybe $f=xy^2$. Here again, how can we make $y_{n+1}$ the subject of the equation?
Does this become a limitation for the backward Euler method, when we can't separate out $y_{n+1}$? Also, explain the very first statement, which doesn't accord with me on an intuitive level.