Given your background, I'll make some suggestions about how one might try to solve:
$$ \ln |y| + y^2 = \sin(x) + 1 $$
for $y$ when $x$ is known.
There are many root finding algorithms, and since calculus knowledge is assumed in any differential equations course, Newton's method is not excluded as a possibility. First year calculus courses often make mention of it in connection applications of the derivative or (later on) with power series, etc.
But there is an approach you can test out with a spreadsheet application: reframe the root-finding problem as a fixed-point problem.
Here we have a left hand side that depends only on $y$ and a right hand side that depends only on $x$. So once argument $x$ is chosen, finding $y$ becomes a matter of solving $f(y) = C$ where $C = \sin(x) + 1$ and:
$$ f(y) = \ln |y| + y^2 $$
A fixed-point iteration comes about if we can rewrite $f(y) = C$ in the form:
$$ y = g(y) $$
Then with a suitable "initial guess" $y_0$, one hopes that the sequence:
$$ y_{k+1} = g(y_k) $$
will converge. If it does, and function $g(y)$ is continuous, then the limit of that iteration will satisfy $y = g(y)$ and hence (if we did the algebra correctly) also satisfy $f(y) = C$ as originally desired.
There are many ways to do this, and indeed Newton's method falls into this pattern of "root finding" too. With a bit of experience one learns that the goal is to choose a rewritten $y = g(y)$ so that $g(y)$ varies slowly with $y$. Indeed one measure of this is that $|g'(y)| \lt 1$ in the region where we seek a solution, and sometimes this "contraction mapping property" will come up in a differential equations class in the treatment of solutions to nonlinear ODEs (which the currently initial value problem gives us an example of).
In any event I'd propose putting the rapidly changing part of $f(y)$, the $y^2$ term, on one side of the equation and the slowly changing part on the other side, lumped with the "constant" term $C = \sin(x) + 1$:
$$ y^2 = C - \ln |y| $$
Then take the square root of both sides:
$$ y = \sqrt{C - \ln |y|\,} $$
There are some details to think about here, and these are connected with the side question of whether the absolute values around $y$ are really necessary. As the Comments below the Question have already started to sketch out, because the initial value $y(0) = 1$ is positive, it is conceivable that $y(x)$ will stay positive. If it does the absolute value of $y$ is just $y$, and the "modulus operator" is indeed unnecessary. A more rigorous, but still elementary treatment can be built, but this would take us on a detour from the present narrative.
Suffice it to say that choosing the positive square root above for $y$ is the right choice, and that while we can allow $\ln y$ to become negative (so the term under the square root remains nonnegative), we should avoid steps in the iteration where $\ln y \gt 0$ is so large that the term under the square root becomes negative. This affects our choice of starting guesses $y_0$ in particular.
So it is left as an exercise for the Reader to carry out a few iterations of the function $g(y) = \sqrt{\sin(x) + 1 - \ln y \;}$ using $y_0 = 1$ and a sampling of arguments for $x$. Note that because the right hand side $\sin(x) + 1$ is periodic function of $x$, the solution $y(x)$ will also be periodic. So it is only necessary to experiment with values $x \in [0,2\pi]$, or more restricted to the half-period $x \in [-\pi/2,+\pi/2]$.
I've done such an experiment, and it seems that when $\sin(x) \ge 0$ the iterations converge reliably. However for $\sin(x)$ sufficiently negative the term under the square roots becomes negative after a few iterations, which of course makes the iterations undefined.
For example, with $x = -1$ (or any argument differing by an integer multiple of $2\pi$, the iteration breaks down after about half a dozen steps. With $x = -1.5$ the iteration breaks down more quickly, after a couple of steps. This problem is mitigated by using more "accurate" starting guesses than the simple $y_0 = 1$, but it seems that this simple method is not reliably converging when $C = \sin(x) + 1$ is close to zero.
After thinking more carefully about this equation, I see that in the region where $C = \sin(x) + 1$ is small (positive), the term $\ln y$ is changing more rapidly than the term $y^2$. Hence I'm going to try the iteration "the other way around":
$$ \ln y = C - y^2 $$
$$ y = e^{C - y^2} $$
In this approach an initial guess $y_0 = 1$ isn't appropriate when $C$ is small. In the extreme, when $C = 0$ we need $y^2 + \ln y = 0$, which occurs around $y \approx 0.65$. So I'll report my attempts with that $y_0$ as a starting value.
Using the alternative function iteration isn't particularly successful except very near $C=0$, although better starting guesses $y_0$ are an improvement when $0\le C \lt 0.7$ than the earlier $y_0 = 1$. The following graph (made with online graphing calculator Desmos) shows how the function $f(y) = \ln |y| + y^2$ behaves over the range $C\in [0,2]$:

With this insight I can see how the fixed point iteration can be improved, albeit the smoothness of this curve makes it clear to trained eyes that bisection, regula falsi, or even Newton's method would be well-behaved for the purpose of inverting this function.