We present an O(log 2 n) round deterministic distributed algorithm for the maximal independent set problem. By known reductions, this round complexity extends also to maximal matching, ∆ + 1 vertex coloring, and 2∆ − 1 edge coloring. These four problems are among the most central problems in distributed graph algorithms and have been studied extensively for the past four decades. This improved round complexity comes closer to the Ω(log n) lower bound of maximal independent set and maximal matching [Balliu et al. FOCS '19]. The previous best known deterministic complexity for all of these problems was Θ(log 3 n). Via the shattering technique, the improvement permeates also to the corresponding randomized complexities, e.g., the new randomized complexity of ∆ + 1 vertex coloring is now O(log 2 log n) rounds.Our approach is a novel combination of the previously known (and seemingly orthogonal) two methods for developing fast deterministic algorithms for these problems, namely global derandomization via network decomposition (see e.g., [Rozhon, Ghaffari STOC'20; Ghaffari, Grunau, Rozhon SODA'21; Ghaffari et al. SODA'23]) and local rounding of fractional solutions (see e.g., [Fischer DISC'17; Harris FOCS'19; Fischer, Ghaffari, Kuhn FOCS'17; Ghaffari, Kuhn FOCS'21; Faour et al. SODA'23]). We consider a relaxation of the classic network decomposition concept, where instead of requiring the clusters in the same block to be non-adjacent, we allow each node to have a small number of neighboring clusters. We also show a deterministic algorithm that computes this relaxed decomposition faster than standard decompositions. We then use this relaxed decomposition to significantly improve the integrality of certain fractional solutions, before handing them to the local rounding procedure that now has to do fewer rounding steps.Randomized algorithms, and the pursuit of deterministic algorithms. In the 1980s, Luby [Lub86] and Alon, Babai, and Itai [ABI86] presented a simple and elegant randomized distributed algorithm that computes an MIS in O(log n) rounds, with high probability 1 . Due to known reductions, this MIS algorithm led to O(log n) round randomized algorithms for many other key graph problems, including maximal matching, ∆ + 1 vertex coloring, and (2∆ − 1) edge coloring. These problems are often listed as the four fundamental symmetry-breaking problems in distributed graph algorithms and have a wide range of applications. The O(log n)-round randomized algorithm naturally led the researchers to seek a deterministic distributed algorithm with the same round complexity. In his celebrated work [Lin87, Lin92], Linial asked "can it [MIS] always be found in polylogarithmic time [deterministically]? " He even added that "getting a deterministic polylog-time algorithm for MIS seems hard." Since then, this became known as Linial's MIS question and turned into one of the research foci in distributed graph algorithms.The two approaches of deterministic algorithms. Linial's MIS problem remained open for nearly three decades. During...