Use of divide and conquer: Problem-solving technique that can be broken down into three parts: Divide Halves the size of the problem with every iteration, Conquer Each subproblem is solved, often recursively, Merge Solutions to the subproblems are then recombined, Applied to problem-solving in quick sort, merge sort and binary search. Simplifies complex problems very quickly