The document describes two methods for computing the minimal unsatisfiable core of a conjunctive formula:
1. Dropping one atom at a time and checking satisfiability, requiring up to n queries where there are n atoms.
2. Using a binary search approach by partitioning atoms into two sets and recursively minimizing, requiring only log(n) queries. This approach avoids modifying the underlying theory solver.