A topic in the Open Knowledge Graph — a free, open map of 15,290 topics and the order to learn them in.

Ground Instances and Variable Instantiation

Graduate Depth 97 in the knowledge graph I know this Set as goal
1topic build on this
588prerequisites beneath it
See this on the map →
Conversion to Clausal FormMost General Unifier (MGU)+1 moreCounterexamples and Refutation
first-order-logic instances substitution

Core Idea

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.

Explainer

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.

Practice Questions 5 questions

Prerequisite Chain

Understanding ZeroThe Number ZeroCounting to FiveCounting to 10Counting to 20Counting a Set of Objects Up to 20Cardinality: The Last Number CountedMatching Numerals to QuantitiesSubitizing Small QuantitiesAddition Within 10Number Bonds to 10Addition Within 20Doubles and Near DoublesDoubles Facts Within 10Near Doubles Facts Within 20Mental Math Strategies for AdditionMental Math: Adding and Subtracting TensAddition Within 100Repeated Addition as MultiplicationMultiplication as Equal GroupsMultiplication: ArraysBasic Multiplication Facts (0s, 1s, 2s, 5s, 10s)Multiplication Facts Within 100Division as Equal SharingDivision as Grouping (Measurement Division)Division: Grouping (Repeated Subtraction) ModelDivision: Fair Sharing ModelDivision as Equal SharingDivision as GroupingBasic Division FactsDivision Facts Within 100Multiplication and Division Fact FamiliesRelationship Between Multiplication and DivisionDivision Facts as Inverse of MultiplicationRemainders and Quotients in DivisionDivision Word ProblemsMulti-Step Word ProblemsSolving Multi-Step Word ProblemsMultiplication Word ProblemsDivision Word ProblemsIntroduction to Long DivisionFactors and MultiplesPrime and Composite NumbersEquivalent FractionsRelating Fractions and DecimalsDecimal Place ValueIntegers and the Number LineComparing and Ordering IntegersAbsolute ValueAdding IntegersSubtracting IntegersMultiplying IntegersIntroduction to ExponentsOrder of OperationsInteger Order of OperationsVariable ExpressionsThe Distributive PropertyVariables and Expressions ReviewIntroduction to PolynomialsAdding and Subtracting PolynomialsMultiplying PolynomialsFactorialPermutationsCombinationsCounting Principles: Addition and Multiplication RulesIntroduction to Graph TheoryPropositional Logic FoundationsLogical EquivalencesBoolean AlgebraIntroduction to Propositional LogicIntroduction to Predicate Logic (First-Order Logic)First-Order Logic SyntaxTerms and Atomic Formulas in FOLVariable Binding and ScopeOpen and Closed Formulas in First-Order LogicVariable Substitution and Capture-Avoidance in First-Order LogicQuantifier Instantiation Rules in First-Order Proof SystemsUniversal Quantification: Meaning and ScopeFree Variables and Bound VariablesSubstitution and Instantiation in Predicate LogicTerms and Atomic FormulasFormulas and Well-Formed ExpressionsStructures and InterpretationsModel Interpretation and SatisfactionInterpretation, Truth, and Satisfaction of FormulasLogical Consequence and EntailmentSatisfiability and UnsatisfiabilityConsistency and Inconsistency of TheoriesConsistency and InconsistencyBasic Model TheoryCompactness Theorem in Model TheoryLöwenheim-Skolem Theorems: Overview and UnificationUpward Löwenheim-Skolem TheoremDownward Löwenheim-Skolem TheoremSkolem Functions and Witness FunctionsSkolemization and Witness FunctionsConversion to Clausal FormGround Instances and Variable Instantiation

Longest path: 98 steps · 588 total prerequisite topics

Prerequisites (3)

Leads To (1)