Decision Intelligence Lab

Where Human Judgment Meets Machine Intelligence

AI Global Markets

Adoption of Gen AI in organizations, globally

65

AI Power-Seeking Issues Increase (est.)

8%

Global AI investment growth (YOY %)

26%

AI achieving most of their goals in orgs.

19%

The Problem

A data center operations lead has a rectangular server floor measuring 30 by 50 meters. She wants to divide it into equal square cooling zones using floor markings, and she wants each zone as large as possible.

What is the side length of the largest square zone that fits, and how many zones result? No floor space can be left uncovered, and the zones cannot overlap.

  • a) 30 and 50
  • b) 10 and 150
  • c) 10 and 15
  • d) 50 and 50
Data center floor divided into square zones 50 by 30 meters, 15 zones of 10 by 10 meters 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 50 m (5 zones) 30 m (3 zones) 10 m side
import math

def biggest_square_side(width, length):
    return math.gcd(width, length)

print("Let's split a floor into the largest equal square zones.")

width = int(input("Floor width in meters: "))
length = int(input("Floor length in meters: "))

side = biggest_square_side(width, length)
zones = (width // side) * (length // side)

print("Largest square zone side in meters:", side)
print("Number of square zones that fit:", zones)
Solve it!

Decision Intelligence Lab is a blog authored by C. L. Palacios

I am a market researcher who can use data science and AI to change business decisions. My differential is my scientific background. My experience has been developed with IDC (International Data Corporation), Lexia Insights (Mexico) and Hexis (Colombia) in projects for technology, FMCG, retail, hygiene, beauty, food, household appliances,technology, and health brands. Contact me on LinkedIn.

See my portafolio