I'm wondering how to look at piecewise definitions from a logical point of view. For example, should $\vert a \vert =$ \begin{cases} a & \text{ If $a>0$} \\ 0 & \text{ If $a=0$} \\ -a & \text{ If $a<0$} \end{cases}
be viewed as a conjunction like$$\,$$ $$(a>0 \implies \vert a \vert = a)\,\land (a=0 \implies \vert a \vert = 0)\,\land(a<0 \implies \vert a \vert = -a)$$$$\,$$ or a disjunction like$$\,$$ $$(a>0 \implies \vert a \vert = a)\,\lor (a=0 \implies \vert a \vert = 0)\,\lor(a<0 \implies \vert a \vert = -a)$$$$\,$$
I'm not sure how to think about this in the context of definitions, or in general now for that matter. I appreciate any help. Thanks.
You have to view it as a conjunction, since all three claims ("the absolute value of a positive is itself", "the absolute value of 0 is 0", "the absolute value of a negative is its negation") are being forced to be true.
Using disjunctions would mean that either the absolute value of a positive is itself or the absolute value of 0 is 0 or the absolute value of a negative is its negation. This is kind of silly because it wouldn't actually define the function on any particular range. It would seem like $f(x)=x^3$ is a perfectly good absolute value function, just because it satisfies the $f(0)=0$ part.