Error when using NDSolve for $\epsilon y'' - y' + y^2 = 1$ with $0<x<1$ and $y(0) = \frac{1}{3}$, $y(1)=1$
My attempt:
Subscript[ϵ, 1] = 0.1;
Subscript[eqn, 1] =
NDSolve[{Subscript[ϵ, 1]*y''[x] - y'[x] + y[x]^2 == 1,
y[0] == 1/3, y[1] == 1}, y, {x, 0, 1}];
Error:
NDSolve::ndsz: At x == 0.9005611463004037`, step size is effectively zero; singularity or stiff system suspected.
However I see from this post https://math.stackexchange.com/a/3217456/697826 that it was numerically solved. What is wrong with my syntax?
Thank you to both of the submitted Answers. They are equally helpful!


