An instance of a first-order formula φ is obtained by uniformly substituting terms for variables in φ. A ground instance uses only ground terms (terms with no variables), resulting in a formula with no free variables. Working with instances allows us to reduce first-order reasoning to propositional reasoning on specific instantiations.
From your work on clausal form and unification, you know that first-order formulas can be converted to clause sets and that unification finds the most general substitution making two terms syntactically identical. Ground terms are the other end of this spectrum: terms built entirely from constants and function symbols with no variables at all—fully specific, concrete objects like f(a, g(b, a)). A ground instance of a formula φ is obtained by replacing every free variable in φ with a ground term, producing a formula with no remaining variables that can be evaluated as true or false in a model without any variable assignment.
The key theorem connecting ground instances to first-order reasoning is Herbrand's theorem: a set of first-order clauses S is unsatisfiable if and only if some finite set of ground instances of clauses in S is propositionally unsatisfiable. This is remarkable—it says that to refute a set of first-order formulas, you never need to reason about models or quantifiers directly. Producing the right propositional instances and checking them with propositional logic tools (resolution, truth tables, DPLL) is sufficient. First-order unsatisfiability reduces entirely to propositional unsatisfiability on ground instances.
The Herbrand universe H(S) of a clause set S is the set of all ground terms constructible from the constants and function symbols in S (using a dummy constant a₀ if none appear). It is the smallest domain that makes any unsatisfiability manifest. Ground instances are produced by substituting elements of H(S) for variables. This connects directly to your prerequisite on unification: unification finds the most general unifier—the least commitment substitution that makes two terms match—while ground instantiation makes the maximal commitment, replacing all variables with specific terms. In automated theorem provers, the key efficiency insight is that you can use unification to find *which* ground instances to generate rather than enumerating all of H(S).
The practical workflow in resolution-based theorem proving is: (1) convert formulas to clausal form via the conversion you studied; (2) use unification to find pairs of literals that resolve to produce the empty clause (a contradiction); (3) ground instances are the implicit witnesses that the refutation is complete. Herbrand interpretations—interpretations whose domain is exactly H(S) and that interpret constants and functions in the canonical way—are the structures in which ground instance satisfiability is tested. If no Herbrand interpretation satisfies all ground instances, no interpretation of any kind does, making Herbrand models the canonical reference point for first-order satisfiability checking.