Daily Math Puzzle: 2026-07-24
Sharpen your mathematical thinking with fresh puzzles delivered daily.
🧩 New Puzzle Every Day — Free
2026-07-24
BendFlow Inc., a cutting-edge tech startup, is setting up a new server room. The room is a perfect 5x5x3 meter cube. The main network switch (M) is mounted on one wall, precisely 2 meters from the corner (along the base of that wall) and 1 meter up from the floor. A brand new server rack (S) is placed on the *adjacent* wall, 1 meter from the same corner (along the base of its wall), and also 1 meter up from the floor. To ensure minimal signal latency, a single, taut fiber optic cable must connect M and S. The cable can run on the floor, up walls, across the ceiling, or even *float directly through the air*. What is the shortest possible length of this fiber optic cable?
🔥 Build your streak — solve daily in the app
Solution
sqrt(5) meters — The key to this puzzle lies in the phrase "float directly through the air," which indicates that the cable doesn't have to follow the contours of the walls or floor; it can take the true Euclidean shortest path in 3D space.
Let's set up a 3D coordinate system. Let the corner where the two walls meet and the floor meet be the origin (0,0,0).
1. **Locate Point M (Network Switch):** It's on one wall, 2 meters from the corner along the base, and 1 meter up. So, M is at coordinates (0, 2, 1) if we assume the first wall is the YZ plane (x=0).
2. **Locate Point S (Server Rack):** It's on the *adjacent* wall, 1 meter from the same corner along its base, and 1 meter up. This means S is at coordinates (1, 0, 1) if the adjacent wall is the XZ plane (y=0).
Now, we use the 3D Euclidean distance formula to find the shortest distance between M(x1, y1, z1) = (0, 2, 1) and S(x2, y2, z2) = (1, 0, 1):
`d = sqrt((x2 - x1)^2 + (y2 - y1)^2 + (z2 - z1)^2)`
`d = sqrt((1 - 0)^2 + (0 - 2)^2 + (1 - 1)^2)`
`d = sqrt((1)^2 + (-2)^2 + (0)^2)`
`d = sqrt(1 + 4 + 0)`
`d = sqrt(5)` meters.
Many might be tempted to use the "unfolding" method, which finds the shortest path *along the surfaces* (walls). If you were to unfold the two walls into a single flat plane, the distance would be `sqrt((2+1)^2 + (1-1)^2) = sqrt(3^2) = 3` meters. However, that method only applies if the cable must adhere to the surfaces. Because the cable can "float directly through the air," the straight 3D line (Euclidean distance) is the true shortest path.
Never Miss a Daily Puzzle
Download TestPrepMagic and get push notifications for each day's puzzle. Build daily streaks and track your improvement.
Download Free AppRelated Puzzles
Math Puzzle: 2026-07-23
In a small, single-elimination sports tournament, there are four teams: Alpha, Beta, Gamma, and Delta. The tournament structure is as follows: Alpha plays Beta in the first semi-final, and Gamma plays Delta in the second semi-final. The winners of these matches proceed to the final.
Historically, Team Alpha has a 70% chance of winning any match it plays. Team Beta, being weaker, has only a 30% chance of winning any match it plays. Team Gamma and Team Delta are equally matched, meaning each has a 50% chance of winning against the other.
A curious phenomenon is observed: if Team Gamma manages to reach the final, they inexplicably gain a significant performance boost, giving them an 80% chance of winning the final, *regardless* of whether they play Alpha or Beta.
What is the probability that Team Gamma wins the entire tournament?
Math Puzzle: 2026-07-22
A new tech startup, 'BYTE POWER', claims their code is so efficient it can be represented by a cryptarithm multiplication. Each letter represents a unique digit from 0-9. The letters 'T' (for TECH) and 'P' (for POWER) cannot be zero. Solve the puzzle:
T E C H
x 2
---------
P O W E R
What is the sum of the digits that spell out 'POWER'?
Math Puzzle: 2026-07-21
A pastry chef is baking a large order of chocolate chip cookies. Her recipe calls for 0.5 cups of chocolate chips per batch. She started with a large bag containing 4.5 cups of chocolate chips. After making some cookies, she noticed she had used exactly two-thirds of the chocolate chips from the bag. Realizing the order was larger than she initially thought, she now needs to make twice the *total* number of batches she originally planned to make. How many *additional* cups of chocolate chips will she need to complete her expanded order?