So here I wanted for fun to infer that: $$(\lvert a\rvert<\varepsilon) \rightarrow (a > -\varepsilon) \land (a < \varepsilon)$$
In other words, if it is true that the absolute value of $a$ is less than $\varepsilon$, then $a$ is in between $-\varepsilon$ and $\varepsilon$.
So I started by the definition of $\lvert a \rvert$. Which says that: $$if\; a > 0 \; then \; \lvert a\rvert=a$$ $$if\; a < 0 \; then \; \lvert a\rvert=-a$$
Which I know them to be true (by definition). So then I do the following logical steps: $$suppose\;\lvert a\rvert<\varepsilon$$ $$a>0 \rightarrow \;a<\varepsilon$$ $$a<0 \rightarrow \;-a<\varepsilon$$
from here I am literally stuck. I do not know how to infer/conclude that $a > -\varepsilon \land a < \varepsilon $.
Where I get confused is in here: If I suppose that $a$ is greater than $0$, then I get that $a<\varepsilon$. If I also suppose that $a$ is less than $0$, then I get $-a<\varepsilon$ or $a>-\varepsilon$.
But how can $a$ be both positive and negative? In other words how can this statement: $a>0\,\land\;a<0$ be true?
I want them to be both true so that through modus ponens I infer $a > -\varepsilon \land a < \varepsilon $.
So long story short, I'd like to see this proof done by only involving logical steps.