This can be done using the following LaTeX code:
```
\begin{tikzpicture}
\draw[latex-, thick] (-4,0) -- (1,0); % draws 1-D coordinate system
\foreach \x in {-3,...,0} % this is a loop which will put a tick on each of the numbers from -3 to
Show more…