We consider the problem of recovering items matching a partially specified pattern in multidimensional trees (quadtrees and k-d trees).We assume the traditional model where the data consist of independent and uniform points in the unit square. For this model, in a structure on n points, it is known that the number of nodes Cn(ξ) to visit in order to report the items matching a random query ξ, independent and uniformly distributed on [0, 1], satisfies E[Cn(ξ)] ∼ κn β , where κ and β are explicit constants. We develop an approach based on the analysis of the cost Cn(s) of any fixed query s ∈ [0, 1], and give precise estimates for the variance and limit distribution of the cost Cn(x). Our results permit us to describe a limit process for the costs Cn(x) as x varies in [0, 1]; one of the consequences is that E[max x∈[0,1] Cn(x)] ∼ γn β ; this settles a question of Devroye [Pers.The first investigations about partial match queries by Rivest [34] were based on digital data structures (based on bit-comparisons). In a comparisonbased setting, where the data may be compared directly at unit cost, a few general purpose data structures generalizing binary search trees permit to answer partial match queries, namely the quadtree [15], the k-d tree [1] and the relaxed k-d tree [10]. Besides the interest that one might have in partial match for its own sake, there are various reasons that justify the precise quantification of the cost of such general search queries in comparison-based data structures. First, these multidimensional trees are data structures of choice for applications that range from collision detection in motion planning to mesh generation [22,41]. Furthermore, the cost of partial match queries also appears in (hence influences) the complexity of a number of other geometrical search questions such as range search [12] or rank selection [11]. For general references on multidimensional data structures and more details about their various applications, see the series of monographs by Samet [38][39][40].In this paper, we provide refined analyses of the costs of partial match queries in some of the most important two dimensional data structures. We mostly focus on quadtrees. We extend our results to the case of k-d trees in Section 7. Similar results also hold for relaxed k-d trees of Duch, Estivill-Castro, and Martínez [10]. However, even stating them carefully would require much space without shedding anymore light on the phenomena, and we leave the straightforward modifications to the interested reader.Quadtrees and multidimensional search. The quadtree [15] allows to manage multidimensional data by extending the divide-and-conquer approach of the binary search tree. Consider the point sequence p 1 , p 2 , . . . , p n ∈ [0, 1] 2 . As we build the tree, regions of the unit square are associated to the nodes where the points are stored. Initially, the root is associated with the region [0, 1] 2 , and the data structure is empty. The first point p 1 is stored at the root, and divides the unit square into four region...