Disclaimer: I'm not a math student, I'm studying physics.
Sometimes when I see mathematical structures defined they are just introduced in words, but sometimes they are written as an "n-tuple" with axioms (slightly contrived name since I'm not sure what the correct word is), as in the case of a group, $$(G,\cdot)$$ plus the list of axioms. Or in the case of a vector space, $$(V,+,\cdot)$$ plus axioms. Is there a name for constructing objects explicitly like this? I find it really helpful and makes it clear how different objects are related.
Formally speaking, this is called a structure. A structure is a triple $(A, \sigma, I)$ consisting of a domain $A$, a signature $\sigma$, and an interpretation function $I$. A signature is a tuple $\sigma = (S_\text{fun}, S_\text{rel}, \text{ar})$ consisting of a set of function symbols $S_\text{fun}$, a set of relation symbols $S_\text{rel}$, and a function $\text{ar} : S_\text{fun} \cup S_\text{rel} \rightarrow \mathbb{N}$ that assigns an arity to each symbol. The interpretation function $I$ assigns a function to every function symbol and a relation to every relation symbol. That is,
$$I : \left(\prod_{s \in S_\text{fun}} A^{\text{ar}(s)} \rightarrow A \right) \times \left(\prod_{s \in S_\text{rel}} \mathcal{P}(A^{\text{ar}(s)})\right)$$
where $\mathcal{P}$ is the powerset.
For example, for a group we have $S_\text{fun} = \{\mathtt{1}, \mathtt{\times}, \mathtt{^{-1}}\}$ and $\text{ar} = \{(\mathtt{1}, 0), (\mathtt{^{-1}}, 1), (\mathtt{\times}, 2)\}$.