The linear backward Euler's Method is given by
$$ y^{j+1}=y^j+ \tau k_1 $$ $$ (I- \tau J) k_1= f(y^j), J:= f'(y^j)$$
To show, is that $y^{j+1}$ is equal to $\tilde{y^{j+1}} $ the Output of the Backward Euler's Method, if you proccess one Newton-Step with
$$ g-(y^j+ \tau f(g))=0 $$ for $\tilde{y^{j+1}} =g $
( $ g^0= y^j$)
This is what I started with : $$ g^1= g^0 + \tau \frac{1}{I-\tau f'(g^0)}f(g^0) $$ $$ \iff y^{j+1} = y^j + \tau \frac{1}{I-\tau f'(y^j)}f(y^j) $$ $$ \iff y^{j+1}-y^j =\tau \frac{1}{I-\tau f'(y^j)}f(y^j) $$ $$ \iff \tau k_1 = \tau \frac{1}{I-\tau f'(y^j)}f(y^j) $$ $$ \iff k_1(I-\tau f'(y^j))= f(y^j) $$
Did I miss something or is there anything wrong? Any help is very appreciated