Newtons method generally works but its also kind of boring. Since you are in a dynamics class you should be familiar with the concept of a fixed point. In this case we will $``$invent$"$ a sequence for which the solution of this equation is a fixed point.
Define $y(t) = 0.5e^t-0.5t-0.5$ and let $t_c$ be a number such that $y(t_c)=18$. Some simple estimations,
$$y(1) = 0.5 e^{1} -0.5(1)-0.5 \approx 0.5(3)-1 = 0.5 $$
$$ y(3)= 0.5e^3 -0.5(3)-0.5 \approx 0.5(27)-2=16.5 $$
So we expect the intersection to be just past $t=3$, this is what we will use as our seed value later. I used these values to make a very rough sketch of the graph which can be seen below.

Now we will make a sequence which converges to the solution. One way is to make the recurrence shown below where $a(t_c)=0$ when the solution is reached. Notice that it is important that a(t) be positive when $t<t_c$ and negative when $t>t_c$ otherwise the fixed point won't be an attractor.
$$t_{n+1} = t_n + a(t_n)$$
There are many choices for $a(t)$. A few options are listed below.
- $a(t)=18-y(t)$
- $a(t) = \tan^{-1}(18-y(t))$
- $a(t) = 1-y(t)/18$
Another possible sequence to try is one which multiplies the old values of $t$. Looking at the sequence below we can see that $b(t_c)=1$. It should be clear that for $t_c$ to be an attractor we must have that $b(t)$ is greater than 1 when $t$ is less than $t_c$, and less than $1$ when $t$ is greater than $t_c$.
$$ t_{n+1} = t_n b(t_n) $$
Some possible choices here are ,
- $b(t) = 18/y(t)$
- $b(t) = \frac{4}{\pi} \tan^{-1}(18/y(t))$
- $b(t) = \frac{1}{2-18/y(t)}$
Try playing around with these and see if you can invent your own.
Implementing the first example for $a(t)=18-y(t)$ one finds that with a seed value of $t=3$ the sequence quickly diverges. When you run into this you need to find some way of keeping $a(t)$ from being too large near the intersection. One way is to use the inverse tangent function. In this case it is as easy as dividing our choice by 18.
Using $t_0=3$ and $a(t)=1-y(t)/18$ I get,
$t_0=3 $
$t_1=3.553\dots$
$t_2=3.7095 \dots$
$t_3=3.70605\dots$
$\vdots$
$t_{10}=3.706384959$
Which is the limit of the precision of my calculator.